* { font-family: 'Lato', sans-serif;}

/*Chrome-bar*/
#chrome-bar {
    position: sticky;
    top: 0px;
    display: flex;
    flex-direction: column;
    width: 100%;
    border-bottom: 1px solid #b6b4b6;
    font-family: "Segoe UI", "Roboto", sans-serif;
    z-index: 996;
}

#chrome-bar.windowed {
    top: -9px;
}

#chrome-bar #tab-bar {
    display: flex;
    flex-direction: row;
    height: 34px;
    padding-left: 8px;
    background-color: #dee1e6;
}

#chrome-bar #tab-bar.windowed {
    height: 43px;
    padding-top: 9px;
}

#chrome-bar #tab-bar.windowed #window-buttons {
    top: -9px;
}

#chrome-bar #tab-bar #tabs {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#chrome-bar #tab-bar #tabs .tab-frame {
    flex-grow: 1;
    max-width: 256px;
    width: calc(calc(100% - 240px) / 3);
    margin-right: -17px;
}

#chrome-bar #tab-bar #tabs .tab-frame:before {
    position: absolute;
}

#chrome-bar #tab-bar #tabs .tab-frame .tab-container {
    position: relative;
    left: -8px;
    overflow: hidden;
}

#chrome-bar #tab-bar #tabs .tab-frame .tab-container .round {
    z-index: 1;
    position: absolute;
    bottom: 0px;
    width: 32px;
    height: 32px;
    border: 8px solid transparent;
    border-radius: 100%;
    transition: 0.25s;
}

#chrome-bar #tab-bar #tabs .tab-frame .tab-container .round.round-left {
    left: -16px;
    bottom: -8px;
    border-right-color: transparent;
    transform: rotate(45deg);
}

#chrome-bar #tab-bar #tabs .tab-frame .tab-container .round.round-right {
    right: -16px;
    bottom: -8px;
    transform: rotate(-45deg);
    border-left-color: transparent;
}

#chrome-bar #tab-bar #tabs .tab-frame .tab-container .tab {
    z-index: 2;
    position: relative;
    left: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: calc(100% - 16px);
    height: 34px;
    padding: 0px 8px 0px 12px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: 0.25s;
}

#chrome-bar #tab-bar #tabs .tab-frame .tab-container .tab .icon {
    width: 16px;
    height: 16px;
}

#chrome-bar #tab-bar #tabs .tab-frame .tab-container .tab .title {
    position: relative;
    top: -1px;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    margin-left: 8px;
    margin-right: 4px;
    color: #5f6368;
    font-size: 12px;
    pointer-events: none;
}

#chrome-bar #tab-bar #tabs .tab-frame .tab-container .tab .title:before {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    box-shadow: inset -18px 0 18px -18px #dee1e6,
    inset -18px 0 18px -18px #dee1e6,
    inset -18px 0 18px -18px #dee1e6;
    content: "";
    transition: 0.25s;
}

#chrome-bar #tab-bar #tabs .tab-frame .tab-container .tab .close {
    position: relative;
    min-width: 16px;
    height: 16px;
    border-radius: 100%;
}

#chrome-bar #tab-bar #tabs .tab-frame .tab-container .tab .close svg {
    position: absolute;
    top: 4px;
    left: 4px;
    pointer-events: none;
}

#chrome-bar #tab-bar #tabs .tab-frame .tab-container .tab .close svg path {
    fill: #5f6368;
}

#chrome-bar #tab-bar #tabs .tab-frame .tab-container .tab .close:active {
    background-color: #dadce0;
}

#chrome-bar #tab-bar #tabs .tab-frame .tab-container:after {
    position: absolute;
    top: 7px;
    right: 8px;
    transform: translateY(0.5px);
    width: 1px;
    height: 20px;
    background-color: rgba(45, 48, 50, 0.3359375);
    content: "";
}

#chrome-bar #tab-bar #tabs .tab-frame .tab-container.active {
    z-index: 5;
}

#chrome-bar #tab-bar #tabs .tab-frame .tab-container.active .round {
    transition: 0s;
}

#chrome-bar #tab-bar #tabs .tab-frame .tab-container.active .round.round-left {
    border-right-color: #ffffff;
}

#chrome-bar #tab-bar #tabs .tab-frame .tab-container.active .round.round-right {
    border-left-color: #ffffff;
}

#chrome-bar #tab-bar #tabs .tab-frame .tab-container.active .tab {
    transition: 0s;
    background-color: #ffffff;
}

#chrome-bar #tab-bar #tabs .tab-frame .tab-container.active .tab .title {
    color: #3c4043;
}

#chrome-bar #tab-bar #tabs .tab-frame .tab-container.active .tab .title:before {
    transition: 0s;
    box-shadow: inset -18px 0 18px -18px #ffffff,
    inset -18px 0 18px -18px #ffffff,
    inset -18px 0 18px -18px #ffffff;
}

#chrome-bar #tab-bar #tabs #new-tab {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    margin-left: 9px;
    border-radius: 100%;
    transition: 0.25s;
}

#chrome-bar #tab-bar #tabs #new-tab svg {
    width: 12px;
    height: 12px;
}

#chrome-bar #tab-bar #tabs #new-tab svg path {
    fill: #595c62;
}


#chrome-bar #tab-bar #tabs #new-tab:active {
    background-color: #bfc1c6;
}

#chrome-bar #tab-bar #gap {
    width: 64px;
}

#chrome-bar #tab-bar #window-buttons {
    position: relative;
    display: flex;
    flex-direction: row;
}

#chrome-bar #tab-bar #window-buttons > div {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 29px;
    margin-bottom: 5px;
    cursor: pointer;
}

#chrome-bar #tab-bar #window-buttons > div img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

#chrome-bar #tab-bar #window-buttons > div,
#chrome-bar #tab-bar #window-buttons > div * {
    transition: 0.25s;
}

#chrome-bar #tab-bar #window-buttons > div:not(.close):active {
    background-color: rgba(0, 0, 0, 0.1953125);
    transition: 0s;
}


#chrome-bar #tab-bar #window-buttons > div.close:active {
    background-color: #e36571;
    transition: 0s;
}

#chrome-bar #main-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 36px;
    padding: 0 6px;
    background-color: #ffffff;
}

#chrome-bar #main-bar .button {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin: 0 2px;
    border-radius: 100%;
    transition: 0.25s;
}

#chrome-bar #main-bar .button[disabled] svg path {
    fill: #babcbe;
}

#chrome-bar #main-bar .button:not([disabled]):active {
    transition: 0.05s;
    background-color: #e2e2e2;
}

#chrome-bar #main-bar .button:not([disabled]) svg path {
    fill: #5f6368;
}

#chrome-bar #main-bar .button svg {
    width: 14px;
    height: 14px;
}

#chrome-bar #main-bar .button.extension {
    position: relative;
}

#chrome-bar #main-bar .button.extension img {
    width: 16px;
}

#chrome-bar #main-bar .button.extension[data-disabled] {
    filter: grayscale(1) opacity(50%);
}

#chrome-bar #main-bar .button.extension[data-notifications]:before {
    position: absolute;
    bottom: 0px;
    right: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 12px;
    min-width: 12px;
    border-radius: 2px;
    box-shadow: 0 0 0 1px #ffffff;
    background-color: #555555;
    color: #ffffff;
    font-size: 6px;
    content: attr(data-notifications);
}

#chrome-bar #main-bar #address-bar {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
    height: 28px;
    margin: 0 8px 0 6px;
    border-radius: 20px;
    background-color: #f1f3f4;
    white-space: pre;
}

#chrome-bar #main-bar #address-bar.selected {
    box-shadow: 0 0 0 1px #b3cefb,
    inset 0 0 0 1px #b3cefb;
    background-color: #ffffff;
}

#chrome-bar #main-bar #address-bar .address-bar-button {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 24px;
    /* min-width: 32px; */
    padding: 0 10px;
    margin: 0 2px;
    border-radius: 20px;
    font-size: 14px;
    transition: background-color 0.25s;
}

#chrome-bar #main-bar #address-bar .address-bar-button.show-special {
    margin-right: 9px;
}

#chrome-bar #main-bar #address-bar .address-bar-button svg path {
    fill: #5f6368;
}

#chrome-bar #main-bar #address-bar .address-bar-button svg.favourite path {
    fill: #4285f4;
}

#chrome-bar #main-bar #address-bar .address-bar-button svg.https,
#chrome-bar #main-bar #address-bar .address-bar-button img.https,
#chrome-bar #main-bar #address-bar .address-bar-button .special.https {
    width: 12px;
    height: 12px;
}

#chrome-bar #main-bar #address-bar .address-bar-button svg.error,
#chrome-bar #main-bar #address-bar .address-bar-button img.error,
#chrome-bar #main-bar #address-bar .address-bar-button .special.error {
    width: 14px;
    height: 14px;
}

#chrome-bar #main-bar #address-bar .address-bar-button svg.favicon,
#chrome-bar #main-bar #address-bar .address-bar-button svg.not-favourite,
#chrome-bar #main-bar #address-bar .address-bar-button svg.favourite,
#chrome-bar #main-bar #address-bar .address-bar-button img.favicon,
#chrome-bar #main-bar #address-bar .address-bar-button img.not-favourite,
#chrome-bar #main-bar #address-bar .address-bar-button img.favourite,
#chrome-bar #main-bar #address-bar .address-bar-button .special.favicon,
#chrome-bar #main-bar #address-bar .address-bar-button .special.not-favourite,
#chrome-bar #main-bar #address-bar .address-bar-button .special.favourite {
    width: 16px;
    height: 16px;
}

#chrome-bar #main-bar #address-bar .address-bar-button svg.special,
#chrome-bar #main-bar #address-bar .address-bar-button img.special,
#chrome-bar #main-bar #address-bar .address-bar-button .special.special {
    position: relative;
    margin-left: 10px;
    color: #5f6368;
    white-space: pre;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#chrome-bar #main-bar #address-bar .address-bar-button svg.special:before,
#chrome-bar #main-bar #address-bar .address-bar-button img.special:before,
#chrome-bar #main-bar #address-bar .address-bar-button .special.special:before {
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: -10px;
    width: 1px;
    background-color: #9d9e9f;
    content: "";
    transition: 0.25s;
}

#chrome-bar #main-bar #address-bar .address-bar-button svg.hide,
#chrome-bar #main-bar #address-bar .address-bar-button img.hide,
#chrome-bar #main-bar #address-bar .address-bar-button .special.hide {
    display: none;
}

#chrome-bar #main-bar #address-bar .address-bar-button:not([disabled]):active {
    transition: 0.05s;
    background-color: #c9cbcd;
}

#chrome-bar #main-bar #address-bar #address {
    flex-grow: 1;
    font-size: 14px;
}

#chrome-bar #main-bar #address-bar #address .protocol {
    color: #5f6368;
}

#chrome-bar #main-bar #address-bar #address .domain {
    color: #202124;
}

#chrome-bar #main-bar #address-bar #address .extension {
    color: #80868b;
}

#chrome-bar #main-bar .seperator {
    width: 1px;
    height: 16px;
    margin: 0 6px 0 8px;
    background-color: #ced0d1;
}

/*Windows-taskbar*/
.taskbar {
    font-family: Arial, Helvetica, sans-serif;
    position: fixed;
    bottom: 0;
    height: 43px;
    width: 100%;
    background: #004172;
    z-index: 999;
    display: flex;
    justify-content: space-between;
}

.taskbar .icons-left {
    height: 43px;
    display: inline-block;
}

.taskbar .icons-left #start-menu,
.taskbar .icons-left #tabs-windows {
    height: 43px;
    width: 48px;
    position: relative;
}

.taskbar .icons-left #start-menu i,
.taskbar .icons-left #tabs-windows i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 21px;
    color: white;
}

.taskbar .icons-left #search {
    height: 43px;
    width: 49px;
    background-image: url("https://raw.githubusercontent.com/gcazin/pure-css-windows-10-desktop/master/icons/search.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px 22px;
}

.taskbar .icons-left #folder {
    height: 43px;
    width: 49px;
    background-image: url("http://www.iconarchive.com/download/i98291/dakirby309/simply-styled/File-Explorer.ico");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 21px;
}

.taskbar .icons-left #chrome {
    height: 43px;
    width: 49px;
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Google_Chrome_icon_%28September_2014%29.svg/2048px-Google_Chrome_icon_%28September_2014%29.svg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 26px 26px;
}

.taskbar .icons-left #tabs-windows {
    height: 43px;
    width: 49px;
    background-image: url("https://raw.githubusercontent.com/gcazin/pure-css-windows-10-desktop/master/icons/switch-window.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 25px 25px;
}

.taskbar .icons-left a {
    display: table-cell;
    border: 2px solid transparent;
}

.taskbar .icons-left a:not(:first-child) {
    margin-left: -4px;
}

.taskbar .icons-left a.border:focus {
    border-bottom: 2px solid rgba(245, 245, 245, 0.651) !important;
}

.taskbar .icons-left .px {
    width: 1px;
}

.taskbar .icons-left .px a {
    pointer-events: none;
}

.taskbar .icons-right {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#date,
#time {
    margin-top: 0;
}

.taskbar .icons-right #wifi {
    height: 43px;
    width: 49px;
    background-image: url("https://cdn.escape-room.app/overig/no-internet.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px 22px;
}

.taskbar .icons-right #wifi.connected {
    background-image: url("https://raw.githubusercontent.com/gcazin/pure-css-windows-10-desktop/master/icons/wifi.png");
}

.taskbar .icons-right #sound {
    height: 43px;
    width: 49px;
    background-image: url("https://raw.githubusercontent.com/gcazin/pure-css-windows-10-desktop/master/icons/volume.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px 22px;
}

.taskbar .icons-right #return {
    width: 4px;
    border-left: 1px solid grey;
}

.taskbar .icons-right #notifications,
.taskbar .icons-right #up {
    height: 43px;
    width: 42px;
    position: relative;
}

.taskbar .icons-right #notifications i,
.taskbar .icons-right #up i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 17px;
    color: white;
}

.taskbar .icons-right .clear {
    height: 43px;
    width: 7px;
    display: table-cell;
}

.taskbar .icons-right .disabled {
    pointer-events: none;
    cursor: default;
}

.taskbar .icons-right .datetime {
    display: table-cell;
    width: 70px !important;
    cursor: pointer;
    padding-top: 3px;
}

.taskbar .icons-right .datetime span {
    display: block;
    text-align: center;
    margin-top: 5px;
    font-size: 11.3px;
    color: white;
}

.taskbar .icons-right a {
    display: table-cell;
}

.taskbar .icons-right a#wifi:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.taskbar .icons-right a:not(:first-child) {
    margin-left: -4px;
}

.taskbar .icons-right .small-icons {
    width: 24px !important;
    padding: 0 20px;
}

/* Wifi */
#wifi-modal {
    background: #005a9e;
    position: fixed;
    right: 0;
    bottom: 43px;
    height: 600px;
    width: 380px;
    color: white;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    z-index: 998;
}

#wifi-modal.visible {
    visibility: visible !important;
    animation-name: open;
    animation-duration: 0.1s;
    transition: 0.1s;
}

@keyframes open {
    0% {
        height: 550px;
        opacity: 0.5;
    }

    100% {
        height: 600px;
        opacity: 1;
    }
}

#wifi-modal .list-networks .networks {
    padding: 20px;
    cursor: default;
}

#wifi-modal .list-networks .networks i {
    transform: rotate(45deg);
    font-size: 25px;
}

#wifi-modal .list-networks .networks:first-child {
    background: rgba(255, 255, 255, 0.1);
}

#wifi-modal .list-networks .networks:hover {
    background: rgba(255, 255, 255, 0.15);
}

#wifi-modal .list-networks .networks span.name-wifi {
    font-size: 18px;
}

#wifi-modal .list-networks .networks span.type-wifi {
    display: block;
    font-size: 15px;
    color: rgba(245, 245, 245, 0.644);
}

#wifi-modal .list-networks .networks .text-wifi {
    display: inline-block;
    position: relative;
    width: 80%;
}

#wifi-modal .list-networks .networks .icons-wifi {
    float: left;
    padding: 10px 10px 0px 0px;
    margin-right: 15px;
}

#wifi-modal .list-networks .networks .propriety {
    font-size: 15px;
    color: rgba(245, 245, 245, 0.6);
    display: block;
    margin-top: 10px;
    text-decoration: underline;
    cursor: pointer;
}

#wifi-modal .list-networks .networks .propriety:hover {
    color: rgba(245, 245, 245, 0.9);
}

#wifi-modal .list-networks .networks button {
    display: block;
    color: white;
    background: #338ed6;
    border: 2px solid transparent;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 15px;
    float: right;
    margin-top: 10px;
}

#wifi-modal .list-networks .networks button:hover {
    border: 2px solid rgba(255, 255, 255, 0.63);
}

#wifi-modal .list-networks .networks button:focus {
    background: #66aae0;
    outline: none;
    border: 2px solid transparent;
}

#wifi-modal .list-networks .options-wifi {
    position: absolute;
    bottom: 0;
}

#wifi-modal .list-networks .options-wifi .options-bloc {
    display: flex;
    flex-direction: row;
}

#wifi-modal .list-networks .options-wifi .options-bloc .bloc-options {
    height: 75px;
    width: 95px;
    background: rgba(255, 255, 255, 0.1);
    margin: 10px 0px 5px 6px;
    position: relative;
    border: 2px solid transparent;
    cursor: default;
}

#wifi-modal .list-networks .options-wifi .options-bloc .bloc-options i {
    position: absolute;
    top: 10px;
    left: 5px;
}

#wifi-modal .list-networks .options-wifi .options-bloc .bloc-options span {
    display: block;
    position: absolute;
    bottom: 3px;
    left: 5px;
    font-size: 14px;
}

#wifi-modal
.list-networks
.options-wifi
.options-bloc
.bloc-options:first-child {
    background: rgba(255, 255, 255, 0.3);
}
/* 
#wifi-modal .list-networks .options-wifi .options-bloc .bloc-options:hover {
    border: 2px solid rgba(255, 255, 255, 0.63);
} */

#wifi-modal .list-networks .options-wifi .options-wifi-text {
    margin-left: 6px;
}

#wifi-modal .list-networks .options-wifi .options-wifi-text span {
    display: block;
    font-size: 14px;
    color: rgba(245, 245, 245, 0.8);
}

#wifi-modal .list-networks .options-wifi .options-wifi-text span:first-child {
    text-decoration: underline;
    cursor: pointer;
}

#wifi-modal
.list-networks
.options-wifi
.options-wifi-text
span:not(:first-child) {
    font-size: 12px;
    cursor: default;
}

/*index*/
.hero {
    background: linear-gradient(90deg, #0e3ed980 30%, #fff0 74%),
    url("img/header-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    min-height: 80vh;
}

#chatbox.thinking + #chat-opties {
    pointer-events: none;
    opacity: .5;
}

@keyframes download {
    from {
        stroke-dashoffset: 100;
    }

    to {
        stroke-dashoffset: 0;
    }
}