.app_container{
    display: flex;
    margin: 2%;
    gap: 1%;
}
.applicationShortcut {
	z-index: 0;
	/* margin: 2%; */
	width: min(10%,55px);
	aspect-ratio: 1;
	/* position: fixed; */
	/* border-radius: 10px; */
	/* margin-right: 15px; */
	background-size: cover;
	background-position: center;
	/* background-color: rgba(171, 171, 171, 0.3); */
	background-image: url("../images/icons/fileDefault.png");
	/* border-bottom-style: solid; */
	/* border-color: black; */
	/* position: relative; */
	cursor: pointer;
}

/* WINDOW STYLING */
.window{
    overflow: hidden;
    z-index: 1;
    width: max(500px, 50%);
    height: 400px;
    border-radius: 5px;
    background-size: cover;
    background-position: top;
    position: absolute;
    background-image: url("../images/levelBackground/clouds.png");
    left: 130%;
}
.window .main_div[scroll]{
    top: 0;
    scrollbar-color: rgba(7, 60, 104, .6) rgba(0,0,0,.2);
    scrollbar-width: thin;
}
.window .main_div[scroll="XY"], .window .main_div[scroll="YX"] {
    overflow: auto;
}
.window .main_div[scroll="Y"]{
    overflow-y: scroll;
    overflow-x: hidden;
}
.window .main_div[scroll="X"]{
    overflow-x: scroll;
    overflow-y: hidden;
}
.window .main_div[scroll] :first-child{
    /* padding-top: calc(20px + 2%); */
}

.window .main_div{
    color: White;
    font-size: 18px;
    height: calc(100% - 30px);
    width: 100%;
    text-align: center;
}

.windowMaximize:hover, .windowMinimize:hover {
    background-color: rgba(0, 0, 0, 0.2);
}
#notepad:focus{
    outline: none;
}
#notepad {
    color: black;
    text-align: left;
    padding-left: 10px;
    white-space: pre-wrap;
}

.window .sizeChanger{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    z-index: 100;
}

.window .sizeChanger:hover{
    cursor: nwse-resize;
}

.windowHeader{
    position: relative;
    height: 20px;
    background-color: #074c68;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px;
    cursor: move;
    overflow: hidden;
    z-index: 5;
}
.windowHeader .windowTitle{
    margin-left: 5px;
    padding: .2em 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-right: 30%;
}

.windowHeader .windowMaximize{
    position: absolute;
    text-align: center;
    top: 0;
    right: 50px;
    height: 100%;
    width: 50px;
    cursor: pointer;
}
.windowHeader .windowMaximize p, .windowHeader .windowMinimize p, .windowHeader .windowClose p {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    line-height: 30px;
}

.windowHeader .windowMinimize{
    position: absolute;
    text-align: center;
    top: 0;
    right: 50px;
    height: 100%;
    width: 50px;
    cursor: pointer;
}

.windowHeader .windowClose{
    position: absolute;
    text-align: center;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    cursor: pointer;
}
.windowHeader .windowClose:hover{
    background-color: #ff0000;
}

#window1 .main_div{
    text-align: left;
}
/* #window2 .main_div{
    overflow: scroll;
} */

/* SETTINGS WINDOW */
.settings_main{
    display: flex;
    height: 100%;
    width: 100%;
}
.settings_nav{
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 30%;
    background-color: #1f1f1f;
    height: 100%;
    overflow: auto;
}
.settings_nav > li{
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 8px 2px;
    border: solid 1px transparent;
}
.settings_nav > li p{
    display: block;
    color: white;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}
.settings_nav > li.active {
    background-color: #074c68;
    color: white;
    border-top:  1px solid #555;
    border-bottom:  1px solid #555;
}
  
.settings_nav > li:not(.active):hover {
    background-color: #555;
    color: white;
}
.settings_ico{
    width: 25px;
    aspect-ratio: 1/1;
    margin-left: 5px;
}
 /* The switch - the box around the slider */
 .switch {
    position: relative;
    display: inline-block;
    width: calc(60px / 2);
    height: calc(34px / 2);
    /* top: 50px;
    left: 10px; */
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: calc(26px / 2);
    aspect-ratio: 1/1;
    left: calc(4px / 2);
    bottom: calc(4px / 2);
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #074c68;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #074c68;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(calc(26px / 2));
    -ms-transform: translateX(calc(26px / 2));
    transform: translateX(calc(26px / 2));
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  } 

.tab_container{
    position: absolute;
    left: 30%;
    width: 70%;
    height: 92.5%;
    padding: 10px;
    box-sizing: border-box;
    text-align: left;
}

/* .settings_nav{
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 5px;
    box-sizing: border-box;
}
.settings_nav > div{
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.2);
    margin-bottom: 5px;
}
.tab_general{
    position: absolute;
    left: 25%;
} */

/*---------System Permission popup----------*/
.spp_window{
    overflow: hidden;
    z-index: 1;
    width: max(500px, 50%);
    height: 400px;
    border-radius: 5px;
    background-size: cover;
    background-position: top;
    position: absolute;
    left: 130%;
}

.spp_window .spp_main_div{
    color: White;
    font-size: 18px;
    height: calc(100% - 30px);
    width: 100%;
    text-align: center;
}

.spp_windowHeader{
    position: relative;
    height: 20px;
    background-color: #074c68;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px;
    overflow: hidden;
    z-index: 5;
}
.spp_windowHeader .spp_windowTitle{
    margin-left: 5px;
    padding: .2em 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-right: 30%;
}

.spp_windowHeader .spp_windowClose{
    position: absolute;
    text-align: center;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    cursor: pointer;
}
.spp_windowHeader .spp_windowClose:hover{
    background-color: #ff0000;
}

.spp_windowHeader .spp_windowClose p {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    line-height: 30px;
}

.spp_blackOverlay{
    background: black;
    background: linear-gradient(180deg, rgba(95,133,116,1) 0%, rgba(17,39,29,1) 100%);
    background-blend-mode: multiply,multiply;
    filter: brightness(.5);
}
/* context menu */
.fileContextMenu{
    position: absolute;
    z-index: 1000;
    background-color: #1f1f1f; /*  pokud chcete bílé pozadí tak toto nastavte na white */
    border: 1px solid #555;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0 0 5px #000;
    color: white;
    min-width: 100px;
    outline: none;
}
.fileContextMenu > li{
    list-style-type: none;
    cursor: pointer;
    border-radius: 5px;
    padding: 5px;
}
.fileContextMenu > li:hover{
    background-color: #555;
    color: white;
}
.fileContextMenu:hover > li:not(:hover) {
    /* kdybychom chtěli stylovat itemy, které nejsou hoverované */
}