body{
    background: var(--main-bg);
    height: 100%;
    overflow: hidden;
}


/*Tabs*/
section.build-sec .tab__title {
    margin: 25px 0 0;

    .tab__button:first-of-type {
        margin: 0;
    }
}

section.build-sec .tab__button {
    padding: 15px;
    color: var(--white-color);
    border: 1px solid #e5e5e54f;
    background: var(--main-bg);
    outline: none;
    margin: 0 -5px;
    cursor: pointer;
    width: 25%;
}

section.build-sec .tab_button-active {
    /* border-bottom: none; */
    background: #fafafa;
    color: var(--blue);
}

section.build-sec .tab__inside {

    visibility: hidden;
    opacity: 0;
    height: 0;
    transform: translateY(10px);
    transition: transform .3s ease-in;


}



section.build-sec .tab__inside-active {
    padding: 30px ;
    visibility: visible;
    opacity: 1;
    height: 100%;
    transform: translateY(0);
    transition: transform .3s ease-out 0.1s, opacity .3s ease-out 0.1s;
}


/* card section */

.tab-card .tab-star i{
    color: #ebc03e;
}
.user-img img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}

.tab-card {

    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-radius: 15px;
    border: 1px solid #a49898;
    padding: 12px;
}

.tab-card .tab-card-text p{
    text-align: left;
    opacity: 0.8;
    font-size: 14px;
    letter-spacing: 0;
}


.tab-card-user {
    display: flex;
    gap: 15px;
    align-items: center;

}

.tab-card-user .user-name h6{
    font-weight: 700;
    font-size: 15px;
}
.tab-card-user .user-name p{
    font-size:11px;
}
.tab-card-user .user-name span{
    font-size: 13px;
    color: #ffff;
    opacity: .72;
}



.tab-card-user h6{
    margin-bottom: 0;
}

.review-btn{
    position: fixed;
    top: 50%;
    right: -50px; 
    z-index: 99;
    transform: rotate(90deg);
}

.add-read-more.show-less-content .second-section,
.add-read-more.show-less-content .read-less {
   display: none;
}

.add-read-more.show-more-content .read-more {
   display: none;
}

.add-read-more .read-more,
.add-read-more .read-less {
   font-weight: bold;
   margin-left: 2px;
   color: #8776ff;
   cursor: pointer;
}

.add-read-more{
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

form#feedbackForm{
    padding: 1rem;
}
form#feedbackForm .form{
    width: 100%;
    border: none;
    border-bottom: 1px solid #000;
    padding: 8px;
}
form#feedbackForm button{
    border: none;
    background: var(--main-bg);
    color: var(--white-color);
    padding: 8px;
}
form#feedbackForm .dropzone{
    padding: 0 !important;
    border: 1px dashed #000;
    min-height: 50px !important;
}
form#feedbackForm .dropzone .dz-message{
    margin: 0;
}
@media (max-width: 980px){
    section.build-sec .tab__inside-active .col-3{
        width: 50%;
    }
}
@media (max-width: 540px){
    section.build-sec .tab__title{
        display: flex;
        flex-wrap: wrap;
    }
    section.build-sec .tab__button {
        width: 50%;
    }
    section.build-sec .tab__inside-active{
       padding: 0;
        padding-top: 30px;
    }
    section.build-sec .tab__inside-active .col-3{
        width: 100%;
    }
}    