
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');


*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    /*font-family: "League Spartan", sans-serif;*/
    font-family: "Bricolage Grotesque", sans-serif;
}

ion-icon {
    --ionicon-stroke-width: 35px;
}


button{
    flex-shrink: 0;
    border: none;
    outline: none;
    cursor: pointer;
    outline: none;
}

input,
textarea,
select{
    outline: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

input:hover,
textarea:hover,
select:hover{
    border-color: var(--primary);
}


p{
    line-height: 20px;
}

img{
    width: 100%;
}


html{
    --primary: #ff7701;
    --background: #fff;
    --heading: #07162c;
    --text: #041F47;
    --grey: #dddddd;
}



.flex-left{
    display: flex;
    align-items: center;
    justify-content: left;
}

.flex-right{
    display: flex;
    align-items: center;
    justify-content: right;
}

.flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-around{
    display: flex;
    align-items: center;
    justify-content: space-around;
}



.hidden{
    display: none;
}
.show-flex{
    display: flex;
}
.show-block{
    display: block;
}



.round{
    border-radius: 50%;
    aspect-ratio: 1/1;
    flex-shrink: 0;
}

.bg-image{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.horizontal-scroll{
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: left;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 10px 100px;
}


.wrapper{
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}



.label-up{
    border-color: var(--primary)!important;
}

.label-up p{
    font-size: 12px!important;
    top: 0px!important;
    color: var(--primary)!important;
    background-color: var(--background)!important;
}


.input-error{
    border-color: red!important;
}

.input-error p,
.input-error span{
    color: red!important;
}



.empty{
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    text-align: center;
    display: block;
    width: fit-content;
    margin: 50px auto;
}


.alert{
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
    width: fit-content;
    min-width: 250px;
    max-width: 95%;
    z-index: 9999;
    padding: 5px 10px;
    color: white;
    animation: slide-down 0.35s ease-out;
}

@keyframes slide-down {
    0%{
        top: -100px;
    }
    100%{
        top: 15px;
    }
}

.alert .icon{
    flex-shrink: 0;
    margin-right: 12px;
    width: 40px;
    font-size: 30px;
}

.alert p{
    font-size: 14px;
    font-weight: 500;
}

.alert button{
    flex-shrink: 0;
    margin-left: auto;
    width: 40px;
    aspect-ratio: 1/1;
    font-size: 18px;
    border-radius: 50%;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.5);
}

.success{
    background-color: #51d102;
}

.error{
    background-color: #eb1818;
}





.heading{
    width: 100%;
    margin: 10px auto;
}

.heading h1{
    font-size: 25px;
    font-weight: 700;
    color: var(--heading);
}



@media screen and (max-width: 800px) {
    

    .heading h1{
        font-size: 18px;
        font-weight: 600;
    }

}


.highlighted{
    background-color: rgb(255, 243, 231);
    border: 1px solid rgb(236, 224, 212);
    flex-shrink: 0;
}

.highlighted:hover{
    background-color: transparent;
    border-color: var(--primary);
}




.popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.popup .close-popup{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.popup .popup-content{
    background-color: var(--background);
    border-radius: 30px;
    width: 280px;
    text-align: center;
    padding: 30px 20px 35px 20px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.15);
    z-index: 2;
}

.show-flex .popup-content,
.show-flex .section{
    animation: popup 0.35s;
}

@keyframes popup{
    0%{
        scale: 0.5;
    }
    60%{
        scale: 1.2;
    }
    100%{
        scale: 1;
    }
}


.popup-content .illustration{
    width: 90px;
    margin: 0px auto;
    flex-shrink: 0;
}

.popup-content h1{
    font-size: 20px;
    font-weight: 700;
    margin: 20px auto 15px auto;
    color: var(--heading);
}

.popup-content p{
    font-size: 13px;
    font-weight: 400;
    color: var(--text);
}

.popup-content .action-btns{
    width: 100%;
    margin-top: 20px;
}

.popup-content button{
    width: 120px;
    flex-shrink: 0;
    height: 45px;
    font-size: 16px;
    border-radius: 50px;
}

.popup-content .yes-delete{
    background-color: #EC3543;
    color: white;
}

.popup-content .dont-delete{
    background-color: white;
    color: var(--heading);
    flex-shrink: unset;
}

