/*reset page*/
*{
    Padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* this is the class style that handles the navbar open and close */
.toggle-navbar{
    position: absolute;
    top: 9%;
    left: 0;
    padding-left: 20px;
    width: 100%;
    display: block;
    background-color: white;
    height: 200px;
}

.menu-toggler{
    display: none !important;
    font-size: 30px;
    color: dodgerblue;
    cursor: pointer;
}

img{
    height: 8.5vh;
    padding: 0px 0px 5px 0px;
}
header{
    width: 100%;
    height: 10vh;
    padding: 5px 20px;
    background-color: white;
}
nav{
    height: 10vh;
    margin: auto;
    padding: 20px;
    background-color: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-items a{
    text-decoration: none;
    text-transform: uppercase;
    margin: 0 7px;
    font-size: 20px;
    font-weight: 700;
    color: dodgerblue;
}
.nav-items{
    margin-top: 5px;
}
.nav-items a i{
    margin-right:5px;
}

.btn{
    background-color: dodgerblue;
    color: white;
    padding: 6px 10px;
    border: none;
    outline: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: all .25s;
    text-transform: capitalize;
}

.btn:hover{
    transition: all .25s;
    opacity: 0.7;
    /* background: white;
    color: dodgerblue; */
}

.btn-danger{
    background: red;
    color: white;
}

.btn-white{
    background: white;
    color: dodgerblue;
}

.btn-danger:hover{
    background-color: red;
    color: white;
}

#error_message{
    height: 10px;
    width: 20px;
    padding: 20px;
}

#error_text{
    background-color: #ccc;
    color: red;
    text-transform: capitalize;
    padding: 3px 15px;
    border-radius: 5px;
}


footer{
    height: 10vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

/*  sweet alert text */
.swal-text{
    color: dodgerblue;
}


/*  WARNING STYLES */
.warning-text{
    text-align: center;
    /* height: 0vh; */
}

.success-text{
    color: white !important;
    text-align: center;
    line-height: 2.3;
}




/* BASIC PAGE STYLING */

.custom-container{
    padding: 40px;
}


@media(min-width: 900px){
    .success-text{
        font-size: 20px;
    }
    
}










@media (max-width: 900px) {
    .custom-container{
        padding: 20px;
    }
    .menu-toggler{
        display: block !important;
    }
    nav{
        padding: 0px;
    }
    img{
        height: 6.5vh;
    }
    .nav-items a{
        color: dodgerblue;
        display: block;
        margin-top: 30px;
    }
}

