@import url(variables.css);
@import url(navigation.css);
@import url(media-queries.css);
@import url(footer.css);
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html{
    scroll-behavior: smooth;
}
body{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-large);
    align-items: center;
    justify-content: center;
}

.loader {
    position: fixed;
    left: 0;
    top:0;
    width: 100%;
    height: 100vh;
    background-color: #2ecc703c;
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.loader.active{
    display: flex;
}



.loader span{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    animation: rotateLoader .5s infinite ease forwards;
}


@keyframes rotateLoader{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

#header{
    width: 100%;
    height: 300px;
}
.navigation button{
    max-width: 200px;
    width: 150px;
    border: none;
    text-align: center;
    font-family: var(--psuedo-normal-text-font);
    text-decoration: none;
    cursor: pointer;
    border-radius: var(--border-radius-small);
    padding: 10px;
    background-color: var(--psuedo-primary-color);
    color: white;
    position: relative;
    z-index: var(--zindex-overlay);
}
.header-bar{
    width: 100%;
    height: 100%;
    background: linear-gradient(0.25turn, var(--psuedo-primary-color), var(--psuedo-secondary-color));
    display: var(--main-display);
    align-items: flex-end;
    justify-content: center;
    padding: 20px 0;
    font-family: var(--psuedo-header-font);
    color: white;
}
main{
    width: 100%;
    height: auto;
    display: var(--main-display);
    flex-direction: column;
    gap: 100px;
    align-items: center;
    padding: 50px 0;
}
main h1, h2, h3, h4{
    font-family: var(--psuedo-header-font);
}
main p, ul, ol{
    font-family: var(--psuedo-normal-text-font);
    line-height: 20px;
}
main ol, ul{
    padding: var(--spacing-medium);
    line-height: 30px;
}
.mini-header{
    width: 100%;
}
.mini-header ul {
    width: 100%;
    display: var(--main-display);
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: var(--spacing-small);
}
.mini-header ul li{
    width: 120px;
    display: var(--main-display);
    font-size: 14px;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-small);
}
.mini-header ul li a{
    text-decoration: none;
    font-family: var(--psuedo-header-font);
    color: black;
    text-align: center;
    width: 100%;
    padding: 10px;
}
.mini-header .main-link{
    box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.2);
}
.main-content{
    width: 100%;
    height: auto;
    display: var(--main-display);
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.main-content .content{
    max-width: 100%;
    width: 500px;
    height: auto;
    display: var(--main-display);
    flex-direction: column;
    gap: var(--spacing-medium);
    padding: var(--spacing-medium);
}
.mission-vision{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-small);
    padding: 20px;
    align-items: center;
    justify-content: center;
    z-index: var(--zindex-modal);
}
.mission-vision div{
    width: 100%;
    display: var(--main-display);
    flex-direction: column;
    gap: var(--spacing-medium);
    box-shadow: var(--box-shadow-small);
    border-bottom: 10px solid var(--psuedo-primary-color);
    padding: var(--spacing-medium);
    border-radius: var(--border-radius-small);
}



.mission h3{
    align-items: flex-start;
}
.vision h3{
    text-align: right;
}
.mv-details{
    width: 100%;
    width: 100%;
    display: flex;
    align-items: flex-end;
}
.main-content-about img{
    max-width: 100%;
    width: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-small);
}
.main-content-about p a{
    text-decoration: none;
    color: var(--psuedo-primary-color);
}

.main-content #contact-form{
    max-width: 100%;
    width: 500px;
    height: auto;
    display: var(--main-display);
    flex-direction: column;
    gap: var(--spacing-medium);
    padding: var(--spacing-small);
    box-shadow: var(--box-shadow-small);
    font-family: var(--psuedo-normal-text-font);
    border-radius: var(--border-radius-small);

}


#contact-form input:required, #sign-up-form input:required, #seller-fields input[type="text"], #login-form input:required, #other-forms input:required{
    width: 95%;
    border: 0.1px solid rgba(128, 128, 128, 0.404);
    border-radius: var(--border-radius-small);
    padding: var(--spacing-small);
}
#contact-form input:required::-webkit-input-placeholder, textarea::-webkit-input-placeholder, #sign-up-form input:required::-webkit-input-placeholder, #seller-fields input:required::-webkit-input-placeholder, #login-form input:required::-webkit-input-placeholder, #other-forms input:required::-webkit-input-placeholder {
    -webkit-appearance: none;
    font-family:var(--psuedo-normal-text-font);
}
#contact-form input:required:focus, textarea:focus{
    outline: 0.1px solid var(--psuedo-primary-color);
    border: none;
}
#contact-form textarea, #sign-up-form textarea{
    width: 95%;
    padding: var(--spacing-small);
    border: 0.1px solid rgba(128, 128, 128, 0.404);
    height: 200px;
    border-radius: var(--border-radius-small);
}
#contact-form input[type="submit"], #sign-up-form input[type="submit"], #login-form input[type="submit"], #other-forms input[type="submit"]{
    width: 200px;
    padding: 13px;
    background-color: var(--psuedo-primary-color);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: var(--border-radius-small);
    font-family: var(--psuedo-normal-text-font);
}

#sign-up-form{
    width: 80%;
    height: auto;
    display: var(--main-display);
    gap: 50px;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 50px 10px;
    font-family: var(--psuedo-normal-text-font);
    box-shadow: var(--box-shadow-small);
    border-radius: var(--border-radius-small);
}

#sign-up-form h2{
    text-align: left;
}

.fields{
    width: 100%;
    height: auto;
    display: var(--main-display);
    gap: var(--spacing-small);
    flex-wrap: wrap;
    align-items: center;
}


.fields .info{
    max-width: 95%;
    width: 300px;
    height: 300px;
    max-height: 350px;
    padding: var(--spacing-small);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin: var(--spacing-small);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-small);
}

#sign-up-form select{
    width: 95%;
    border: 0.1px solid rgba(128, 128, 128, 0.404);
    border-radius: var(--border-radius-small);
    padding: var(--spacing-small);
    cursor: pointer;
}


.info:nth-child(5){
    height: 500px;
}
#file-selector1, #file-selector2{
    width: 150px;
    text-align: center;
    padding: var(--spacing-small);
    border-radius: var(--border-radius-small);
    cursor: pointer;
    border: 1px solid rgba(86, 86, 86, 0.423);
}
#profile-picture, #cover_image{
    display: none;
}
#seller-fields{
    width: 90%;
    height: auto;
    display: var(--main-display);
    flex-wrap: wrap;
    gap: var(--spacing-medium);   
}

#terms-agr{
    width: 80%;
    padding: var(--spacing-small);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--spacing-small);
}
#sign-up-form input:disabled, #sign-up-form textarea:disabled{
    cursor: not-allowed;
}


.show-pass{
    cursor: pointer;
}
#login-form, #other-forms{
    width: 80%;
    height: auto;
    display: var(--main-display);
    gap: 20px;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 50px 30px;
    font-family: var(--psuedo-normal-text-font);
    box-shadow: var(--box-shadow-small);
    border-radius: var(--border-radius-small);
    position: relative;
    z-index: var(--zindex-modal);
}
#login-form span, #other-forms span{
    width: 95%;
}
#login-form span input:required, #other-forms span input:required{
    width: 90%;
}
.neg-responses{
    position: fixed;
    left: 2%;
    top: 20%;
    max-width: 100%;
    width: 250px;
    padding: var(--spacing-small);
    background-color: rgba(255, 0, 0, 0.32);
    border:  1px solid red;
    border-radius: var(--border-radius-small);
    display: var(--main-display);
    align-items: center;
    justify-content: center;
    z-index: var(--zindex-overlay);
}
.pos-responses{
    position: fixed;
    left: 2%;
    top: 15%;
    max-width: 100%;
    width: 250px;
    padding: var(--spacing-small);
    background-color: rgba(0, 220, 88, 0.498);
    border:  1px solid green;
    border-radius: var(--border-radius-small);
    display: var(--main-display);
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-small);
    z-index: var(--zindex-overlay);
}
.neg-responses2{
    position: fixed;
    left: 2%;
    top: 25%;
    max-width: 100%;
    width: 250px;
    padding: var(--spacing-small);
    background-color: rgba(255, 0, 0, 0.32);
    border:  1px solid red;
    border-radius: var(--border-radius-small);
    display: var(--main-display);
    align-items: center;
    justify-content: center;
    z-index: var(--zindex-overlay);
}




/*HOW IT WORKS PAGE STYLINGS*/

.instructions{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: var(--spacing-medium);
    flex-wrap: wrap;
    padding: var(--spacing-small);
}

.instructions div{
    max-width: 100%;
    width: 500px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-large);
}

.instructions img{
    max-width: 100%;
    width: 400px;
    height: 400px;
    object-fit: contain;
}

.main-content h2{
    width: 100%;
    text-align: center;
    margin: 30px auto;
}


.animate{
    opacity: 0;
    transition: all 1s ease-in-out;
    transform: translateY(150px);
}

.animate.active{
    opacity: 1;
    transform: translateY(0px);
}


/*ONBOARDINMG PAGE*/

.cta-links{
    max-width: 200px;
    width: 150px;
    text-align: center;
    font-family: var(--psuedo-normal-text-font);
    text-decoration: none;
    border-radius: var(--border-radius-small);
    padding: 13px;
    background-color: var(--psuedo-primary-color);
    color: white;
    position: relative;
    z-index: var(--zindex-overlay);
    margin: 10px 20px;
}

.welcome-message{
    width: 95%;
    height: auto;
    display: var(--main-display);
    flex-direction: column;
    gap: 20px;
    padding: var(--spacing-medium);
    box-shadow: 2px 2px 25px 10px rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-big);
}

.welcome-message p, .welcome-message h4{
    color: #34495e;
    margin: 10px 20px;
}
.welcoming-banner{
    width: 100%;
    height: 600px;
    border-radius: var(--border-radius-big);
    overflow: hidden;
    display: var(--main-display);
    align-items: center;
    justify-content: center;
    position: relative;
}
.welcoming-banner img{
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: var(--zindex-deep);
}
.welcoming-banner .overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: var(--zindex-modal);
}
.welcome-message h1{
    z-index: var(--zindex-overlay);
    color: white;
}


.onb-lists, .onb-lists-seller{
    list-style: none;
}

.onb-lists li, .onb-lists-seller li{
    position: relative;
    margin: 10px 0;
    padding-left: 30px;
    font-size: 1em;
    color: #34495e;
}
.onb-lists li::before{
    content: "❤️";
    position: absolute;
    left: 0;
    font-size: 1.2em;
    color: #e74c3c;
}

.onb-lists-seller li::before{
    content: "✔️";
    position: absolute;
    left: 0;
    font-size: 1.2em;
    color: #e74c3c;
}

.failure-link{
    width: 200px;
    padding: 13px;
    text-decoration: none;
    color: #fff;
    background-color: var(--psuedo-primary-color);
    border-radius: 3px;
}


/*LOADERS AND RESPONSES*/


/*LOADING ANIMATIONS*/


.loader{
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.509);
    backdrop-filter: blur(15px);
    z-index: 11;
    position: fixed;
    left: 0;
    top: 0;
    display: none;
}

.loader.active{
    display:flex;
}


.loader-box, .loader-box div{
    width: 150px;
    height: 150px;
    display: flex;
    gap: var(--spacing-small);
    border-top: 1px solid rgba(13, 162, 255, 0.5);
    border-radius: 50%;
    position: relative;
}


.loader-box::before{
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--psuedo-primary-color);
}

.loader-box div::before{
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--psuedo-primary-color);
}

.loader-box{
    animation: clockWise 3s infinite ease-in-out forwards;
}

@keyframes clockWise{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

.loader-box div{
    animation: aclockWise 5s infinite ease-in-out forwards;
}

@keyframes aclockWise{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(-360deg);
    }
}

/*RESPONSES AFTER FORM SUBMITIONS OR NOTIFICATIONS*/


.responses{
    position: fixed;
    left: 0%;
    top: 0%;
    background-color: #daecff84;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(4px);
    display: none;
    gap: var(--spacing-medium);
    align-items: center;
    justify-content: center;
    z-index: 15;
    border-radius: 10px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: var(--psuedo-normal-text-font);
    
}
.responses.active{
    display: flex;
}

.responses div{
    max-width: 95%;
    width: 500px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-medium);
    border-radius: 5px;
    background-color: #fff;
    padding: var(--spacing-small);
}

.responses div button{
    width: 150px;
    padding: 13px;
    background-color: var(--psuedo-primary-color);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    color: #fff;
}


/*Portfolio Section in profile pages*/

.portfolio-section{
    padding: 40px var(--spacing-small);
    align-items: center;
}

.portfolio-section h3{
    margin: 40px 0;
    text-align: center;
}


.portfolio-section .alternate-messages{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-medium);
    align-items: center;
    justify-content: center;
    text-align: center;
}

.portfolio-section .alternate-messages i{
    font-size: 50px;
    color: var(--psuedo-primary-color);
}

.portfolio-section .projects{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: var(--spacing-small);
}

.portfolio-section .projects .portfolio-project{
    max-width: 95%;
    width: 300px;
    height: 300px;
    display: var(--main-display);
    flex-direction: column;
    gap: var(--spacing-small);
    cursor: pointer;
    border-radius: 3px;
    overflow: hidden;
    background-color: #DAECFF;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}

.portfolio-section .portfolio-project .hidden{
    display: none;
}

.portfolio-section .projects .portfolio-project .top{
    width: 100%;
    height: auto;
}

.portfolio-section .projects .portfolio-project .top img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: 50% 25%;
}

.portfolio-section .projects .portfolio-project .bottom{
    width: 100%;
    height: auto;
    display: var(--main-display);
    flex-direction: column;
    gap: var(--spacing-medium);
    padding: var(--spacing-small);
}



.portfolio-section .projects .portfolio-project .bottom h4{
    font-size: 14px;
    white-space: nowrap;         /* Preventing text from wrapping to the next line */
    overflow: hidden;            /* Hiding overflowed text */
    text-overflow: ellipsis;

}

.portfolio-section .projects .portfolio-project .bottom span{
    padding: 3px;
    border-bottom: 1px solid var(--psuedo-primary-color);
    cursor: pointer;
    width: max-content;
    color: #2890ff;
    font-family: var(--psuedo-normal-text-font);
}

.portfolio-section button{
    width: 200px;
    padding: 13px;
    cursor: pointer;
    border: none;
    border-radius: 3px;
    background-color: var(--psuedo-primary-color);
    color: #fff;
    transition: all .3s ease;
    font-family: var(--psuedo-normal-text-font);
}

.portfolio-section button:hover{
    background-color: var(--psuedo-secondary-color);
}


/*PROJECTS FULL VIEW*/

.project-view{
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    padding: var(--spacing-small);
    justify-content: center;
    z-index: 8;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
}

.project-view.active{
    opacity: 1;
    visibility: visible;
}



.project-view .project-details::-webkit-scrollbar{
    -webkit-appearance: none;
    appearance: none;
    width: 3px;
    background-color: #DAECFF;
}

.project-view .project-details::-webkit-scrollbar-thumb{
    appearance: none;
    background-color: var(--psuedo-primary-color);
    border-radius: 10px;
}

.project-view .project-details{
    max-width: 95%;
    width: 900px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-medium);
    overflow: hidden;
    overflow-y: scroll;
    border-radius: 10px;
    background-color: #DAECFF;
    position: relative;
}


/*PROJECT VIEW CONTENT LOADER*/

.project-view .content-loader{
    width: 100%;
    height: 250%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    padding-top: var(--spacing-large);
    justify-content: center;
    background-color: #fff;
    z-index: 10;
}

.project-view .content-loader.inactive{
    display: none;
}

.project-view .content-loader span{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border-top: 1px solid var(--psuedo-primary-color);
    animation: loaderSpin .5s infinite ease-in-out forwards;
}


@keyframes loaderSpin {
    from{
        transform: rotate(0deg);
    }

    to{
        transform: rotate(360deg);
    }
}

.project-view .project-details .project-header{
    width: 100%;
    padding: var(--spacing-small);
    background-color: var(--psuedo-primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-view .project-details .project-header .close-btn{
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 20px;
    cursor: pointer;
}

.project-view .project-details .project-body{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-small);
    padding: var(--spacing-medium) var(--spacing-small);
    margin: 20px 0;
}

.project-view .project-details .project-body p{
    margin:40px 0px;
}

.project-view .project-details .project-body .project-thumbnail{
    max-width: 95%;
    width: 900px;
    height: 400px;
    object-fit: cover;
    object-position: 50% 25%;
    border-radius: 10px;
}

#project-link{
    font-family: var(--psuedo-normal-text-font);
    font-size: 16px;
}

#project-link a{
    text-decoration: none;
    color: #2890ff;
    
}

.project-view .project-details .project-body .media{
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--spacing-medium);
    flex-wrap: wrap;
    margin: 30px 0;
}

.project-view .project-details .project-body .media img, .project-view .project-details .project-body .media video{
    max-width: 45%;
    width: 300px;
    height: 200px;
    object-fit: cover;
    object-position: 50% 25%;
    cursor: pointer;
    border-radius: 5px;
}

.project-view .project-details .project-footer{
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px var(--spacing-medium);
    justify-content: space-between;
    background-color: #F8F8F8;
}

.project-view .project-details .project-footer button{
    max-width: 45%;
    width: 200px;
    padding: 13px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: #fff;
    transition: all .2s ease;
    font-family: var(--psuedo-normal-text-font);
}

.project-view .project-details .project-footer button:nth-child(1){
    background-color: var(--psuedo-primary-color);
}

.project-view .project-details .project-footer button:nth-child(1):hover{
    background-color: var(--psuedo-secondary-color);
}

.project-view .project-details .project-footer button:nth-child(2){
    background-color: var(--psuedo-secondary-color);
    width: 150px;
}

.project-view .project-details .project-footer button:nth-child(2):hover{
    background-color: var(--psuedo-primary-color);
}



/*SERVICE LISTINGS*/

.service-offerings-section{
    width: 95%;
    height: auto;
    border-radius: var(--border-radius-small);
    position: relative;
    overflow: hidden;
    background-color: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    display: var(--main-display);
    gap: 20px;
    padding: 100px var(--spacing-medium);
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services-offered .listing{
    max-width: 90%;
    width: 300px;
    height: 350px;
    display: var(--main-display);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-medium);
    border-radius: var(--border-radius-small);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    text-decoration: none;
    color: black;
    transition: all .3s ease;
    flex-wrap: wrap;
    position: relative;
}

/*SERVICE LISTINGS*/

.services-offered a{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-small);
    text-decoration: none;
    color: #000;
    padding: var(--spacing-small);
    margin: 20px 0;
}

.services-offered a h5{
    font-family: var(--psuedo-normal-text-font);
}


.services-offered a p{
    margin-top: var(--spacing-medium);
    font-size: 12px;
    color: #252525;
}

.services-offered i{
    position: absolute;
    right: 2%;
    top: 2%;
    font-size: 20px;
    cursor: pointer;
}

.services-offered .options{
    position: absolute;
    right: 2%;
    top: 7%;
    background-color: #fff;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    max-width: 80%;
    width: 150px;
    height: auto;
    
    flex-direction: column;
    gap: var(--spacing-medium);
    padding: var(--spacing-small);
    font-family: var(--psuedo-normal-text-font);
    display: none;
}

.services-offered .options.active{
    display: flex;
}

.services-offered .options span{
    cursor: pointer;
}

/*SELLER PROFILE PAGE*/

.services-offered{
    width: 100%;
    display: var(--main-display);
    align-items: center;
    gap: var(--spacing-medium);
    flex-wrap: wrap;
}

.services-offered a img{
    width: 90%;
    height: 200px;
    object-fit: cover;
    object-position: 50% 25%;
}






/*MEDIA FULL VIEW POPUP*/

.media-full-view{
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    background-color: #000000d3;
    backdrop-filter: blur(4px);
    display: var(--main-display);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow-y: scroll;
    color: #fff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease;
}

.media-full-view.active{
    opacity: 1;
    visibility: visible;
}

.media-full-view::-webkit-scrollbar{
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    width: 5px;
}


.media-full-view::-webkit-scrollbar-thumb{
    appearance: none;
    background-color: var(--psuedo-primary-color);
    border-radius: 10px;
}

.media-full-view img, .media-full-view video{
    width: 90%;
    height: 70%;
    object-fit: contain;
}

.media-full-view .fa-circle-xmark{
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    right: 5%;
    top: 5%;
}


/*FORM ERRROS*/

form .error{
    color: rgb(255, 0, 0);
    font-size: 12px;
}


/*REVIEWS STARS*/

.review-stars{
    max-width: 100%;
    width: 100px;
}

.review-stars i{
    font-size: 11px;
}
.review-stars i.no-glow{
    color: rgb(185, 185, 185);
}

.review-stars i.glow{
    color: var(--psuedo-tertiary-color3);
}

@media screen and (max-width:800px) {
    #sign-up-form{
        width: 95%;
    }
    .socials span{
        flex-direction: column;
        gap: var(--spacing-small);
    }
}