html, body{
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    user-select: none;
}

.btnBar{
    position: absolute;
    top: 76px;
    left: 0;
    z-index: 1;
    background-color: #ffffff;
    width: 330px;
    height: calc(100vh - 76px);
    padding: 0 30px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.btnMain{
    position: relative;
}

.btnBox{
    display: flex;
    align-items: center;
    margin: 100px 0px;
    cursor: pointer;
    transition: 0.3s;
}

.scrollBtn{
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 2px solid #0383a2;
    background-color: white;
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 15pt;
    line-height: 45px;
    margin-left: 12.5px;
    transition: 0.3s;
    opacity: 0.5;
    font-weight: 900;
}

.scrollText{
    margin-left: 15px;
    font-size: 18pt;
    color: rgb(145, 145, 145);
    transition: 0.3s;
    font-weight: 900;
}

.scrollBtn.active, .btnBox:hover .scrollBtn{
    width: 75px;
    height: 75px;
    border: 2px solid #0383a2;
    background-color: #0383a2;
    color: white;
    font-size: 35pt;
    line-height: 70px;
    margin-left: 0px;
    opacity: 1;
}

.scrollText.active, .btnBox:hover .scrollText{
    font-size: 20pt;
    color: #0383a2;
    border-bottom: 3px solid #0383a2;
}

.disabled{
    opacity: 0.3;
    pointer-events: none;
    cursor: default;
}

.main{
    width: 100vw;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    position: relative;
}

.selection{
    width: calc(100% - 330px);
    height: calc(100% - 76px);
    margin-left: 330px;
    margin-top: 76px;
    padding: 0px 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.options {
    width: 100%;
    height: calc(33.33% - 40px);
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}

.false {
    display: none;
}

.options:hover, .options.active {
    background: linear-gradient(90deg, rgba(3, 131, 162, 1) 35%, rgba(0, 27, 79, 1) 100%);
    color: white;
}

.more .options {
    width: calc(50% - 40px);
}

.more .options .options_img{
    width: 40%;
}
    
.more .options .options_text{
    width: 60%;
}

.more2 .options {
    width: calc(33% - 20px);
}

.more2 .options .options_img, .more2 .options .options_text{
    width: 50%;
}

.more2 .options .options_text h1{
    font-size: 20pt;
    font-weight: 600;
}

.more2 .options .options_text h3, .more2 .options .options_text p{
    font-size: 13pt;
    font-weight: 500;
}

.options_img{
    width: 30%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.options_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.options_text{
    width: 70%;
    height: auto;
    margin: 0 5%;
    font-weight: 900;
}

.options_text h1{
    font-size: 23pt;
    font-weight: 600;
}

.options_text h3{
    font-size: 18pt;
    font-weight: 500;
}

.options_text p{
    font-size: 16pt;
    font-weight: 500;
    margin-bottom: 0;
}

#conformBtn{
    position: fixed;
    right: 5%;
    bottom: -50%;
    text-align: center;
    font-size: 20pt;
    cursor: pointer;
    transition: 0.5s;
    padding-top: 110px;
}

.iconBtn{
    position: absolute;
    top: 0;
    left: 25px;
    border-radius: 50px;
    width: 100px;
    height: 100px;
    background-color: #0383a2;
    border: 5px solid #ffffff;
    color: #ffffff;
    display: flex;
    align-items: center;
    font-size: 50pt;
    transition: 0.3s;
    animation-name: btnColor;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
}

.iconText{
    font-weight: 900;
    color: #ffb300;
}

@keyframes btnColor {
    0% {
        background-color: #0383a2;
    }
    50% {
        background-color: #162244;
    }
    100% {
        background-color: #0383a2;
    }
}

.fa-arrow-right{
    margin: 0px auto;
}

#conformBtn:hover .iconBtn{
    background-color: #162244;
}

#deluxeOP{
    display: none;
}

.icon-right{
    display: none;
}

@media screen and (max-width: 1600px) {
    .btnBar{
        top: 76px;
        width: 280px;
    }
    
    .btnBox{
        margin: 75px 0px;
    }

    .scrollBtn{
        width: 40px;
        height: 40px;
        font-size: 13pt;
        line-height: 35px;
        margin-left: 10px;
    }
    
    .scrollText{
        margin-left: 10px;
        font-size: 13pt;
    }
    
    .scrollBtn.active, .btnBox:hover .scrollBtn{
        width: 60px;
        height: 60px;
        font-size: 25pt;
        line-height: 55px;
    }
    
    .scrollText.active, .btnBox:hover .scrollText{
        font-size: 18pt;
    }

    .main{
        width: 100vw;
        height: 100vh;
        background-color: rgb(255, 255, 255);
        display: flex;
        align-items: center;
        position: relative;
    }
    
    .selection{
        width: calc(100% - 280px);
        margin-left: 280px;
        padding: 0px 50px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .options {
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    }

    .options_text h1{
        font-size: 20pt;
    }

    .options_text h3{
        font-size: 15pt;
    }
    
    .options_text p{
        font-size: 13pt;
    }
}

@media screen and (max-width: 1200px) {
    .btnBar{
        top: 76px;
        width: 100%;
        height: 136px;
        padding: 0% 0%;
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
    }

    .btnMain{
        width: 80%;
        height: fit-content;
        display: flex;
        margin: 0px auto;
    }

    .btnBox{
        display: block; 
        align-items: center;
        width: 25%;
        position: relative;
        margin: 15px 0px 10px 0px;
    }
    
    .scrollBtn{
        margin: 0px auto;
        margin-top: 45px;
    }

    .scrollText{
        margin-left: 0px;
        text-align: center;
    }

    .scrollBtn.active, .btnBox:hover .scrollBtn{
        margin: 0px auto;
        margin-top: 40px;
    }

    .scrollText.active, .btnBox:hover .scrollText{
        border-bottom: none;
        position: absolute;
        top: 0;
        width: 100%;
        text-align: center;
    }
    
    .selection{
        width: 100%;
        height: calc(100% - 76px - 136px);
        margin-left: 0;
        margin-top: calc(76px + 136px);
        padding: 50px 25px;
        overflow-y: overlay;
        scrollbar-width: thin;
        scrollbar-color: #0383a2;
    }
    
    .options_img{
        width: 40%;
    }
    
    .options_text{
        width: 60%;
    }

    .more .options {
        width: calc(50% - 10px);
    }

    .more .options .options_img{
        width: 50%;
    }
    
    .more .options .options_text{
        width: 50%;
    }

    .options_text h1{
        font-size: 20pt;
        font-weight: 900;
    }
    .options_text h3{
        font-size: 15pt;
        font-weight: 900;
    }
    
    .options_text p{
        font-size: 12pt;
        font-weight: 500;
    }
}

@media screen and (max-width: 550px) {
    .btnBar{
        top: 60px;
        height: 80px;
    }


    .btnMain{
        width: 100%;
        height: fit-content;
        display: flex;
        margin: 0px auto;
    }

    .btnBox{
        display: block; 
        align-items: center;
        width: 25%;
        position: relative;
        margin: 5px 0px;
    }
    
    .scrollBtn{
        width: 30px;
        height: 30px;
        line-height: 25px;
        margin: 0px auto;
        margin-top: 20px;
    }

    .scrollText{
        margin-left: 0px;
        text-align: center;
        font-size: 9pt;
    }

    .scrollBtn.active, .btnBox:hover .scrollBtn{
        margin: 0px auto;
        margin-top: 25px;
        width: 40px;
        height: 40px;
        font-size: 20pt;
        line-height: 35px;
    }

    .scrollText.active, .btnBox:hover .scrollText{
        border-bottom: none;
        position: absolute;
        top: 0;
        width: 100%;
        text-align: center;
        font-size: 11pt;
    }

    
    .selection{
        width: 100%;
        height: calc(100% - 60px - 80px);
        margin-left: 0;
        margin-top: calc(60px + 80px);
        padding: 20px 25px 50px 25px;
        overflow-y: overlay;
        scrollbar-width: thin;
        scrollbar-color: #0383a2;
    }

    /* Webkit (Chrome, Safari, Opera) */
    .selection::-webkit-scrollbar {
        width: 15px;
    }
    .selection::-webkit-scrollbar-thumb {
        background-color: #0383a2;
    }
    /* Firefox */
    .selection {
        scrollbar-color: #0383a2 #f1f1f1;
    }
    
    
    .options_img{
        width: 45%;
    }
    
    .options_text{
        width: 55%;
        margin: 1% 1.5%;
        font-weight: 900;
    }

    .options_text h1{
        font-size: 11pt;
        font-weight: 900;
    }
    .options_text h3{
        font-size: 10pt;
        font-weight: 900;
    }
    
    .options_text p{
        font-size: 8pt;
        font-weight: 500;
        margin-top: -5px;
    }

    #conformBtn{
        right: 12.5%;
        bottom: -50%;
        display: flex;
        align-items: center;
        background-color: #0383a2;
        width: 75%;
        color: white;
        padding: 5px 35px 5px 30px;
        border-radius: 50px;
        box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.5);
        animation-name: btnColor;
        animation-duration: 0.8s;
        animation-iteration-count: infinite;
        text-align: center;
    }
    
    .iconBtn{
        position: relative;
        border-radius: 50px;
        width: 20px;
        height: 20px;
        background-color: #0383a2;
        color: #ffffff;
        display: flex;
        align-items: center;
        font-size:15pt;
        transition: 0.3s;
        display: none;
    }

    .iconText{
        font-weight: 900;
        color: #ffffff;
    }
    
    .fa-arrow-right{
        margin: 0px auto;
    }
    
    #conformBtn:hover{
        background-color: #162244;
    }

    .iconText{
        display: flex;
        align-items: center;
        margin: 0px auto;
    }

    .icon-right{
        color: #ffffff;
        display: block;
        font-size:15pt;
        margin-left: 10px;
    }
}