@font-face {
    font-family: poppins-semibold;
    src: url(../fonts/Poppins-SemiBold.ttf);
}

@font-face {
    font-family: poppins;
    src: url(../fonts/Poppins-Regular.ttf);
}

@font-face {
    font-family: poppins-medium;
    src: url(../fonts/Poppins-Medium.ttf);
}


body {
    font-family: poppins-medium;

}

a{
    color: #09A985;
    text-decoration: none;
}

a:hover{
    color: #07C4A0;
}

a:active, a:focus{
    color: #078C75;
}

.view-container{
    min-height: 100vh;
}

footer{
    background-color: #000;
    color: #fff;
}
.hidden {
    overflow-y: hidden;
    max-height: 0;

    transition: max-height 0.15s linear;
}

.row {
    width: 100%;
}

.navbar {
    margin-top: 0px;
    font-family: poppins-semibold;
    
    transition: margin 0.15s linear;
}

.above-top {
    font-size: smaller;
    font-family: poppins;
}

.top {
    background-color: #f4f5f7;
}

.bottom {
    background-color: #fcf8f3;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    img {
        max-width: 100%;
        max-height: 25px;
    }

}

.navbar-toggler {

    width: 20px;

    height: 20px;

    position: relative;

    transition: .5s ease-in-out;

}



.navbar-toggler,

.navbar-toggler:focus,

.navbar-toggler:active,

.navbar-toggler-icon:focus {

    outline: none;

    box-shadow: none;

    border: 0;

    position: relative;

}



.navbar-toggler span {

    margin: 0;

    padding: 0;

}



.toggler-icon {

    display: block;

    position: absolute;

    height: 2px;

    width: 100%;

    background: #09A985;

    border-radius: 1px;

    opacity: 1;

    left: 0;

    transform: rotate(0deg);

    transition: .25s ease-in-out;

}



.middle-bar {

    margin-top: 0px;

}




/* State when the navbar is collapsed */



.navbar-toggler.collapsed .top-bar {

    position: absolute;

    top: 0px;

    transform: rotate(0deg);

}



.navbar-toggler.collapsed .middle-bar {

    opacity: 1;

    position: absolute;

    top: 10px;

    filter: alpha(opacity=100);

}



.navbar-toggler.collapsed .bottom-bar {

    position: absolute;

    top: 20px;

    transform: rotate(0deg);

}



/* when navigation is clicked */



.navbar-toggler .top-bar {

    top: inherit;

    transform: rotate(135deg);

}



.navbar-toggler .middle-bar {

    opacity: 0;

    top: inherit;

    filter: alpha(opacity=0);

}



.navbar-toggler .bottom-bar {

    top: inherit;

    transform: rotate(-135deg);

}



/* Color of 3 lines */



.navbar-toggler.collapsed .toggler-icon {

    background: #09A985;
}

.image-preview {
    aspect-ratio: 1/1;
    object-fit: cover;
}


.bottom-container {
    position: fixed;
    bottom: 0;

    transition: transform 0.15s linear;
}

.inner-row {
    border-style: solid;
    border-color: black;
    border-radius: 15px;
}

.bottom-container.hide {
    transform: translateY(200%);

    transition: transform 0.15s linear;
}

.btn:active {
    border-color: transparent;
    box-shadow: none;
}

.bg-green {
    background: #09A985;
    color: white;

    transition: all 0.15s linear;
}

.bg-green a {
    color: white;
}

.bg-green a:hover {
    color: #ffeccb;
}

.bg-beige {
    background: #ffeccb;

    transition: all 0.15s linear;
}


.btn.bg-beige:hover {
    background: #fcf8f3;
}

.form-control.bg-beige::-webkit-file-upload-button,
.form-control.bg-beige::file-selector-button {
    background: #fcf8f3;
}

.form-control.bg-beige::-webkit-file-upload-button:hover,
.form-control.bg-beige::file-selector-button:hover,
.form-control.bg-beige:hover {
    background: #fcf8f3;

}

.form-control.bg-beige::-webkit-file-upload-button:hover,
.form-control.bg-beige::file-selector-button:hover,
.form-control.bg-beige:hover {
    background: #fcf8f3;
}

.btn.bg-beige:focus,
.btn.bg-beige:active,
.form-control.bg-beige:focus,
.form-control.bg-beige:active {
    border-color: #ffeccb;
    box-shadow: 2px 2px 2px 2px #ffeccb !important;
}

#loadingContainer img {
    
    height: 5vh;
}


#alertContainer {
    position: fixed;
    top: 0;
    z-index: 1000;
    
    width: 100vw;
    background-color: lightcoral;
    color: white;

    max-height: 100px;

    transition: max-height 0.3s linear;

    p {
        font-size: x-small;
        font-family: poppins;
    }
}

#alertContainer.hidden {
    overflow-y: hidden;
    max-height: 0;

    transition: max-height 0.15s linear;
}

/* 
Small devices (landscape phones, 576px and up)
*/
@media (min-width: 576px) {}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {}

/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {}

/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {}