
.Frame_PopUp_Frame {
    position: absolute;
    bottom: calc(var(--bottom_frame_height) + 4px);
    right: 20px;
    height: auto;
    width: auto;
    display: flex;
    background: linear-gradient(to bottom, #060709 50%, #1c1d1f 50%);
    flex-direction: column;
    box-sizing: border-box;
    justify-content: flex-start;
    z-index: 3;
    opacity: 0;
    transform: scale3d(0,0);
    transform-origin: bottom right;
    pointer-events: none;
    padding-top: 10px;
    padding-bottom: 20px;
    transition-property: opacity;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
}

.Frame_PopUp_Frame.show {
    opacity: 1;
    transform: scale3d(1,1);
    pointer-events: auto;
}

.Frame_PopUp_Frame button {
    position: relative;
    height: 40px;
    width: auto;
    font-size: 20px;
    display: none;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 1s ease-in-out;
    background-color: #1c1d1f;
    align-items: center;
    padding: 5px 20px;
    color: var(--text_color);
}

.main_option {
    justify-content: right;
}

.option {
    justify-content: right;
}

.Frame_PopUp_Frame button.show 
{
    display: flex;
    opacity: 1;
}

.Frame_PopUp_Frame button:hover 
{
    background-color: #060709;
}

button.choosen {
    background-color: #060709;
}


.Frame_PopUp_Frame button .text {
    font-weight: 300;
    font-family: 'RobotoLight', sans-serif;
}


.Frame_PopUp_Frame button .text_left {
    font-weight: 500;
    font-family: 'RobotoMedium', sans-serif;
    position: absolute;
    left: 20px;
}

.back {
    position: relative !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
}

.Frame_PopUp_Frame button .text_right {
    position: relative;
    margin-left: 150px;
    font-weight: 300;
    font-family: 'RobotoLight', sans-serif;
}


.img_left {
    display: none;
    font-size: 20px;
    position: absolute;
    left: 20px;
}
.img_left.show {
    display: flex;
}

.text_right {
    display: none;
}

.text_right.show {
    display: flex;
}



@media only screen and (max-width: 380px) {
    .Icon_Button_Quality {
        font-size: calc(30px * var(--window_scale)) !important;
    }

    .Icon_Button_Toggle_Size {
        font-size: calc(30px * var(--window_scale)) !important;
    }

    .small_icon.small_icon {
        font-size: calc(26px * var(--window_scale)) !important;
    }
}

@media only screen and (min-width: 381px) and (max-width: 600px) {
    .Icon_Button_Quality {
        font-size: calc(36px * var(--window_scale)) !important;
    }

    .Icon_Button_Toggle_Size {
        font-size: calc(36px * var(--window_scale)) !important;
    }

    .small_icon.small_icon {
        font-size: calc(32px * var(--window_scale)) !important;
    }
}

@media only screen and (min-width: 601px) {
    .Icon_Button_Quality {
        font-size: calc(26px * var(--window_scale)) !important;
    }

    .Icon_Button_Toggle_Size {
        font-size: calc(26px * var(--window_scale)) !important;
    }

    .small_icon.small_icon {
        font-size: calc(22px * var(--window_scale)) !important;
    }
}




