#overlay {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
}

#overlay-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
}

.lds-spinner,
.lds-spinner div,
.lds-spinner div:after {
    box-sizing: border-box;
}

.lds-spinner {
    color: white;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3.2px;
    left: 36.8px;
    width: 6.4px;
    height: 17.6px;
    border-radius: 20%;
    background: currentColor;
}

.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


.hide {
display: none !important;
}



@font-face {
    font-family: source-sans3;
    font-weight: 400;
    src: url(/v3/static/fonts/source-sans3/sourcesans3-regular.woff2) format("woff2")
}

@font-face {
    font-family: source-sans3;
    font-weight: 500;
    src: url(/v3/static/fonts/source-sans3/sourcesans3-medium.woff2) format("woff2")
}

@font-face {
    font-family: source-sans3;
    font-weight: 600;
    src: url(/v3/static/fonts/source-sans3/sourcesans3-semibold.woff2) format("woff2")
}

@font-face {
    font-family: source-sans3;
    font-weight: 700;
    src: url(/v3/static/fonts/source-sans3/sourcesans3-bold.woff2) format("woff2")
}




.vue-modal-top,
.vue-modal-bottom,
.vue-modal-left,
.vue-modal-right,
.vue-modal-topRight,
.vue-modal-topLeft,
.vue-modal-bottomLeft,
.vue-modal-bottomRight {
    display: block;
    overflow: hidden;
    position: absolute;
    background: transparent;
    z-index: 9999999;
}

.vue-modal-topRight,
.vue-modal-topLeft,
.vue-modal-bottomLeft,
.vue-modal-bottomRight {
    width: 12px;
    height: 12px;
}

.vue-modal-top {
    right: 12;
    top: 0;
    width: 100%;
    height: 12px;
    cursor: n-resize;
}

.vue-modal-bottom {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 12px;
    cursor: s-resize;
}

.vue-modal-left {
    left: 0;
    top: 0;
    width: 12px;
    height: 100%;
    cursor: w-resize;
}

.vue-modal-right {
    right: 0;
    top: 0;
    width: 12px;
    height: 100%;
    cursor: e-resize;
}

.vue-modal-topRight {
    right: 0;
    top: 0;
    background: transparent;
    cursor: ne-resize;
}

.vue-modal-topLeft {
    left: 0;
    top: 0;
    cursor: nw-resize;
}

.vue-modal-bottomLeft {
    left: 0;
    bottom: 0;
    cursor: sw-resize;
}

.vue-modal-bottomRight {
    right: 0;
    bottom: 0;
    cursor: se-resize;
}

#vue-modal-triangle::after {
    display: block;
    position: absolute;
    content: '';
    background: transparent;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-bottom: 10px solid #ddd;
    border-left: 10px solid transparent;
}

#vue-modal-triangle.clicked::after {
    border-bottom: 10px solid #369be9;
}


.vm--block-scroll {
    overflow: hidden;
    width: 100vw;
}

.vm--container {
    position: fixed;
    box-sizing: border-box;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
}

.vm--overlay {
    position: fixed;
    box-sizing: border-box;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    /* z-index: 999; */
    opacity: 1;
}

.vm--container.scrollable {
    height: 100%;
    min-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.vm--modal {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;

    background-color: white;
    border-radius: 3px;
    box-shadow: 0 20px 60px -2px rgba(27, 33, 58, 0.4);
}

.vm--container.scrollable .vm--modal {
    margin-bottom: 2px;
}

.vm--top-right-slot {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

.vm-transition--overlay-enter-active,
.vm-transition--overlay-leave-active {
    transition: all 50ms;
}

.vm-transition--overlay-enter,
.vm-transition--overlay-leave-active {
    opacity: 0;
}

.vm-transition--modal-enter-active,
.vm-transition--modal-leave-active {
    transition: all 400ms;
}

.vm-transition--modal-enter,
.vm-transition--modal-leave-active {
    opacity: 0;
    transform: translateY(-20px);
}

.vm-transition--default-enter-active,
.vm-transition--default-leave-active {
    transition: all 2ms;
}

.vm-transition--default-enter,
.vm-transition--default-leave-active {
    opacity: 0;
}


.vue-dialog {
    font-size: 14px;
}

.vue-dialog div {
    box-sizing: border-box;
}

.vue-dialog-content {
    flex: 1 0 auto;
    width: 100%;
    padding: 14px;
}

.vue-dialog-content-title {
    font-weight: 600;
    padding-bottom: 14px;
}

.vue-dialog-buttons {
    display: flex;
    flex: 0 1 auto;
    width: 100%;
    border-top: 1px solid #eee;
}

.vue-dialog-buttons-none {
    width: 100%;
    padding-bottom: 14px;
}

.vue-dialog-button {
    font-size: inherit;
    background: transparent;
    padding: 0;
    margin: 0;
    border: 0;
    cursor: pointer;
    box-sizing: border-box;
    line-height: 40px;
    height: 40px;
    color: inherit;
    font: inherit;
    outline: none;
}

.vue-dialog-button:hover {
    background: #f9f9f9;
}

.vue-dialog-button:active {
    background: #f3f3f3;
}

.vue-dialog-button:not(:first-of-type) {
    border-left: 1px solid #eee;
}

/* Responsive styles for mobile */
@media screen and (max-width: 768px) {
    /* Hide QR code section on mobile */
    ._1b67c121 {
        display: none !important;
    }
    
    /* Hide menu items in header (the ul with navigation items) */
    .a3107c1e {
        display: none !important;
    }
    
    /* Hide the div containing menu items */
    .d576b507 > div[style*="margin-right: auto"] {
        display: none !important;
    }
    
    /* Hide Sign Up and Log In buttons */
    .b6d9e754 {
        display: none !important;
    }
    
    /* Hide other header icons (sun, notification, support, download) but keep language selector */
    .c9759bc4,
    .dd8dbce9,
    .a9d0f06a,
    .bd06ef98 {
        display: none !important;
    }
    
    /* Hide the div containing Sign Up/Log In buttons */
    .d576b507 > div:nth-child(3) {
        display: none !important;
    }
    
    /* Show only language selector button in the icons div - hide all siblings */
    .d576b507 > div:nth-child(4) .c9759bc4,
    .d576b507 > div:nth-child(4) .dd8dbce9,
    .d576b507 > div:nth-child(4) .a9d0f06a,
    .d576b507 > div:nth-child(4) .bd06ef98 {
        display: none !important;
    }
    
    /* Ensure language selector button is visible */
    .d576b507 > div:nth-child(4) .eb58c575 {
        display: block !important;
    }
    
    /* Ensure header layout works on mobile - keep logo and language selector */
    .d576b507 {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 15px !important;
    }
    
    /* Make sure logo is visible */
    .c0f4158f {
        display: block !important;
    }
    
    /* Make language selector visible */
    .eb58c575 {
        display: block !important;
    }
    
    /* Hide the empty div at the end */
    .d576b507 > div:last-child:empty {
        display: none !important;
    }
    
    /* Adjust spacing for login section on mobile - keep it below header */
    .wc-login {
        margin-top: 80px !important;
        padding-top: 20px !important;
    }
    
    .wc-login > div {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    ._5daeb64e {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    ._02d2e3ed {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}