@import url("./fonts.css");

*, a::before, *::after {
    margin: 0;
    padding: 0;
    font-family: mtn_brighter_sans, "Courier New", Courier, monospace !important;
    color: black
}

.navbar {
    padding: 20px 20px;
    background-color: #ffcc00;
    display: flex;
    justify-content: space-between
}

    .navbar .logo {
        width: 60px;
    }

.nav-right img {
    height: 20px;
    width: 20px;
}

.nav-right {
    font-size: 12px;
    color: black;
    gap: 12px;
    display: flex;
    cursor: pointer;
}

    .nav-right > div {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

.nav-back-btn {
    font-size: 13px;
    background-color: white;
    height: 30px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: black;
}

.custom-select {
    position: relative;
    margin-bottom: 10px
}

    .custom-select select {
        display: none;
    }


.select-selected:after {
    position: absolute;
    content: "";
    top: 18px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #565656 transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #565656 transparent;
    top: 12px;
}

.select-selected {
    background-color: #f2f2f2;
    border-radius: 10px;
    border: 1px solid #565656;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 15px;
}

.select-items div, .select-selected {
    color: black;
    padding-top: 8px;
    padding-bottom: 8px;
    cursor: pointer;
    user-select: none;
}

    .select-items div.separated {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

.select-items {
    position: absolute;
    background-color: #f2f2f2;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border-radius: 10px;
    transform: translateY(4px);
    padding-left: 20px;
    padding-right: 20px;
}

.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    /*background-color: rgba(0, 0, 0, 0.1);*/
}

.image-file-label {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #565656;
    overflow: hidden;
    height: 42px;
    background-color: white;
    color: rgba(0,0,0,0.5);
    border-radius: 80px;
    width: 100%;
    box-sizing: border-box;
    grid-gap: 8px;
    font-size: 15px;
}

    .image-file-label input[type="file"] {
        display: none;
        text-transform: none;
        box-sizing: border-box;
    }


    .image-file-label:focus {
        outline: 2px solid #00678f;
    }

.upload-image-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 16px;
    box-sizing: border-box;
}

.form-control.images {
    padding-top: 10px;
}

.upload-image-flex label {
    margin: 0;
    text-transform: none
}

.upload-image-flex .upload {
    flex: 1;
    box-sizing: border-box;
}

.capture-image {
    border-radius: 50%;
    border: 1px solid black;
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}






/******************** Footer ***************/


.footer-lists ul li {
    display: inline;
    color: white;
    font-size: 10px;
}

.social-icons {
    text-align: center;
    padding-top: 10px;
    margin-bottom: 10px;
}



.footer-lists p {
    color: #7C7777;
    margin-bottom: 0;
    font-size: 12px;
}

.footer-lists ul, .footer-bottom {
    text-align: center;
    color: white;
}


.footer-main {
    width: 100%;
    background-color: black;
    border-bottom: 15px solid black;
    /*  position: absolute;*/
    position: relative;
    bottom: -6rem;
    margin-top: 3rem;
    /*bottom: 0;*/
}



/******************** Footer media queries ***************/
@media screen and (min-width: 280px) and (max-width: 600px) {
    .footer-lists ul li {
        width: 100%;
        font-size: 12px;
    }

    .social-icons img, .footer-lists ul li {
        margin-right: 5px;
    }
}

@media screen and (max-width: 430px) {
    .footer-main {
        border-bottom: 25px solid black;
    }
}
