.top {
    width: 100%;
    height: 80px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    padding: 0 40px;
    position: fixed;
    border-bottom: 2px solid #ccc;
    background-color: white;
    z-index: 1;
}

.mobile-view {
    position: fixed;
    top: 25px;
    right: 20px;
    cursor: pointer;
    color: rgb(110, 110, 179);
    display: none;
}

.hover-users{
    display: none;
    position: absolute;
    background-color: white;
    padding: 20px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    z-index: 999;
    width: 200px;
}

.mobile-view.active {
    display: block;
}

.mobile-view:hover i {
    color: rgb(137, 161, 240);
}

.mobile-view i {
    font-size: 25px;
}

.logo {
    display: flex;
    gap: 10px;
    align-items: center;
}

.logo img {
    margin-top: -13px;
    width: 40px;
    height: 40x;
    margin-right: -10px;
}

.app-name {
    font-size: 20px;
}

.app-name.top-b {
    color: rgb(13, 13, 204);
}

.toggle {
    position: fixed;
    display: flex;
    gap: 20px;
    top: 25px;
    right: 40px;
}

.toggle li {
    list-style: none;
    cursor: pointer;
}

.toggle li:hover a,
ul li:hover i {
    color: rgb(61, 61, 121);
    transition: all ease-in-out 0.5s;
}

.toggle li.active a,
ul li.active i {
    color: rgb(0, 38, 165);
}

.toggle li i {
    margin-right: 5px;
    color: rgb(110, 110, 179);
}

.toggle li a {
    text-decoration: none;
    color: rgb(110, 110, 179);
}

/**/
.home {
    height: 100vh;
    z-index: 0;
    padding-top: 80px;
}

.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.slide {
    position: absolute;
    top: 40px;
    left: 100%;
    width: 100%;
    height: 100%;
    transition: left 2s ease-in-out;
}

.slide img {
    height: 100%;
    object-fit: cover;
}

.slide.active {
    left: 0;
}


.bottom-copyright-items {
    padding: 20px 40px;
    display: flex;
    gap: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
    border-top: #ccc solid 2px;
    background-color: rgb(23, 21, 134);
    color: white;
}

.picture {
    width: 100%;
    display: flex;
    gap: 10px;
    padding: 10px 10px;
}

.picture .img-1 {
    width: 240px;
    height: 240px;
    padding: 5px;
    overflow: hidden;
}

.picture .img-1 img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.slider {
    background-color: #ccc;
}

.animate-on-scroll{
    opacity: 0;
    transform: translateY(200px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    border: none;
    border-radius: 20px;
}

.btn-select-container{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}

.btn-select{
    padding: 20px 30px;
    background-color: rgb(108, 108, 207);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: all ease-in-out 0.5s;
}

.btn-select:hover{
    color: white;
    background-color: rgb(19, 19, 141);
}

.animate-on-scroll.show{
    opacity: 1;
    transform: translateX(0);
    cursor: pointer;
}

.animate-on-scroll.show:hover{
    transform: scale(1.1);
}

.home-things{
    transition: all ease-in-out 1s;
    animation: homethings 2s forwards;
}

@keyframes homethings {
    from{
        opacity: 0;
        transform: translateY(-80px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

#conf-snp{
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 9999;
    transition: ease 1s;
    transform: translate(-100%,-100%);
}

.container.overlay-1{
    position: absolute;
    top: 56%;
    right: -100%;
    width: 60%;
    transform: translate(-50%,-50%);
    box-shadow: 0 40px 40px rgba(0, 0, 0, 0.7);
}

#conf-snp.active{
    transform: translate(0%,0%);
}

.top-cancel{
    display: none;
    padding: 5px 10px;
    transition:  all ease-in 0.5s;
    border-radius: 3px;
    width: fit-content;
    color: rgb(168, 79, 79);
    cursor: pointer;
}

.top-cancel:hover{
    background-color: rgb(146, 189, 146);
}

#btn-hide-prices{
    font-size: 20px;
    color: rgb(136, 78, 78);
    cursor: pointer;
    transition: all ease-in 0.5s;
    position: absolute;
    right: 20px;
}

#btn-hide-prices:hover{
    color: red;
}

#prices-cont{
    height: 40px;
    overflow: hidden;
}

#prices-cont.active{
    height: fit-content;
    overflow: none;
}

/**/

@media (max-width: 960px) {
    .mobile-view {
        display: block;
    }

    .btn-select{
        padding: 5px 0;
    }

    .toggle {
        display: block;
        height: 100%;
        max-height: 100%;
        overflow-y: auto;
        width: 80%;
        top: 0;
        position: fixed;
        right: -130%;
        background-color: rgb(16, 5, 119);
        color: white;
        padding: 20px 20px;
        z-index: 1000;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
        transition: all ease-in-out 0.5s;
    }

    .top-cancel{
        display: block;
    }

    #conf-snp{
        position: fixed;
        transform: translate(0%,0%);
        min-height: 100%;
        overflow: auto;
        display: none;
    }

    .container.overlay-1{
        right: 0%;
    }

    #confirm-footer{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    #conf-snp.active{
        display: block;
    }

    .toggle.active {
        right: 0%;
    }

    .fas.fa-times {
        color: red;
        transition: all ease-in-out 0.5s;
    }

    .fas.fa-bars {
        transition: all ease-in-out 0.5s;
        color: blue;
    }

    .container.overlay-1{
        width: 90%;
    }

    .overlay.active {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 2;
    }

    .top {
        z-index: 3;
    }

    .fas.fa-times:hover {
        color: rgb(204, 13, 13);
    }

    .toggle.active li {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
        color: white;
    }

    .toggle.active li a:hover {
        color: rgb(207, 190, 190);
        transition: all ease-in-out 0.5s;
    }

    .toggle.active li i {
        color: white;
    }

    .toggle.active li a {
        color: white;
    }


    .home-btns {
        display: grid;
    }

    .picture {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .picture .img-1 {
        width: 100%;
    }

    .form-section-login {
        width: 100%;
    }

    .home-title {
        padding: 40px 20px;
    }

    .logo {
        margin-left: -40px;
        margin-top: 8px;
    }

    .slide {
        width: 100%;
    }

    .slide img {
        width: 100%;
    }

    .slides:nth-child(2).active {
        left: -20%;
    }

    .bottom-copyright-items {
        font-size: 12px;
    }

    .app-name {
        font-size: 15px;
    }

    .hover-users{
        position: relative;
        background-color: transparent;
        display: block;
        padding: 0 0;
        box-shadow: none;

    }

    #toggle-option-users{
        display: none;
    }

    .hover-users hr{
        display: none;
    }

}