.language_selector {
    position: relative;
}

.language_selector span {
    color: white;
}

.language_selector:hover {
    cursor: pointer;
}

.language_selector:hover .language {
    display: block;
    z-index: 999;
}

.language_selector span,
.language__link {
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    display: block;
    padding: 5px 15px;
}

.language__link.active,
.language__item:hover .language__link,
.language__item .language__link:hover{
    color: #00c0ff;
}

.language_selector {
    position: relative;
}

.language_selector span {
    color: white;
}

.language_selector span:after {
    content: '▾';
    padding-left: 5px;
    display: inline;
}

.language {
    display: none;
    position: absolute;
    right: 0;
    background: #fff;
    box-shadow: 3px 2px 10px 0px rgb(51 51 51 / 26%);
    padding: 5px 10px 10px;
    text-align: right;
    border-radius: 0 0 16px 16px;
    transition: background 0.2s ease-in-out;
}

.token_selector {
    position: relative;
}

.token_selector::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    height: 10px;
}

.token_panel {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: #fff;
    padding: 0;
    min-width: 20rem;
    z-index: 999;

    border-radius: 8px;
    box-shadow: 3px 2px 10px 0 rgb(51 51 51 / 26%);
}

.token_selector:hover .token_panel,
.token_selector:focus-within .token_panel {
    display: block;
}

.token_panel__inner {
    padding: 14px 16px;
}

.token_panel__title {
    margin: 0 0 6px;
    color: var(--gray-1300, #1E1E1E);
    font-variant-numeric: lining-nums proportional-nums;
    font-feature-settings: 'ss02' on, 'ss03' on, 'ss04' on, 'ss05' on, 'ss06' on, 'ss08' on, 'ss09' on, 'ss11' on, 'liga' off;
    font-family: Raleway;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 23.4px */
}

.token_panel__text {
    margin: 0;
    color: var(--gray-1300, #1E1E1E);
    font-variant-numeric: lining-nums proportional-nums;
    font-feature-settings: 'ss02' on, 'ss03' on, 'ss04' on, 'ss05' on, 'ss06' on, 'ss08' on, 'ss09' on, 'ss11' on, 'liga' off;
    font-family: Raleway;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}

.token_panel::before {
    content: "";
    position: absolute;
    right: 20px;
    top: -10px;
    width: 0; height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    filter: drop-shadow(0 -2px 2px rgba(0,0,0,.08));
}

.token_panel a {
    color: var(--blue-700, #0C75F2);
    font-variant-numeric: lining-nums proportional-nums;
    font-feature-settings: 'ss02' on, 'ss03' on, 'ss04' on, 'ss05' on, 'ss06' on, 'ss08' on, 'ss09' on, 'ss11' on, 'liga' off;
    font-family: Raleway;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.token_panel a:hover {
    text-decoration: none;
}


.user_info li:hover{
    background: #9797a524;
}

/* Burger button container */
.mobile_burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 5;
}

.mobile_burger:focus {
    outline: none;
}

/* Burger lines */
.mobile_burger__line {
    width: 100%;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease-in-out;
}

/* State for when the burger button is active (X icon) */
.mobile_burger.active .mobile_burger__line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile_burger.active .mobile_burger__line:nth-child(2) {
    opacity: 0;
}

.mobile_burger.active .mobile_burger__line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.overflow--hidden {
    overflow: hidden;
}

.header {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}

.header.active {
    position: fixed;
}

.product-desc ul{
    padding-left: 25px;
}

.product-desc li{
    list-style: disc;
}

.button-full {
    display: block;
    width: 100%;
    font-family: Raleway, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    padding: 23px;
    border-radius: 5px;
    border-width: 1px;
    border-style: solid;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    cursor: pointer;
}

.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 14px 0 8px 0;
    border: 3px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

.hidden-checkbox {
    display: none;
}
.answer-label {
    cursor: pointer;
}
.answer-btn {
    display: inline-block;
    background: transparent;
    color: white;
    font-weight: normal;
    border: 1px solid white;
    transition: all 0.2s;
}
.answer-label input[type="checkbox"]:checked + .answer-btn,
.answer-btn.selected {
    background: #fff;
    color: #2563eb;
    font-weight: 600;
    border: 1px solid #fff;
}
.answer-btn:hover {
    background: #fff;
    color: #2563eb;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}
