.language_selector {
    position: relative;
}

.language_selector span {
    color: white;
}

.language_selector:hover {
    cursor: pointer;
}

.language_selector:hover .language {
    display: block;
}

.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;
}

.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: 999;
}

.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;
}

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

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