:root {
    --light-green-color: #32BCAD;
    --light-gray-color: #dddcdc;
    --bg-extra-light-gray: #FAFAFA;
}
.btn-menu-mb {
    display: none;
}
.worko-tabs {
    width: 100%;
}
.worko-tabs .state {
    position: absolute;
    left: -10000px;
}
.worko-tabs .flex-tabs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.worko-tabs .flex-tabs .tab {
    flex-grow: 1;
    max-height: 40px;
}
.worko-tabs .flex-tabs .panel {
    margin-top: 10px;
    display: none;
    width: 100%;
    flex-basis: auto;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
}
.worko-tabs .tab {
    display: inline-block;
    vertical-align: top;
    cursor: hand;
    cursor: pointer;
}
.worko-tabs .tab:hover {
    background-color: #fff;
}
#tab-one:checked ~ .tabs #tab-one-label,
#tab-two:checked ~ .tabs #tab-two-label {
    cursor: default;
    border-bottom: 2px solid var(--light-green-color);
    color: var(--light-green-color);
    font-weight: 600 !important;
}
#tab-one:checked ~ .tabs #tab-one-panel,
#tab-two:checked ~ .tabs #tab-two-panel {
    display: block;
}
.content-tab {
    width: 100%;
    display: flex;
    background: var(--bg-extra-light-gray);
    border: 1px solid var(--light-gray-color);
    height: 42px;
}
.content-tab #tab-one-label, .content-tab #tab-two-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}
.conteiner-asses {
    padding: 6px 10px;
    width: 100%;
}
.box--order_status {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-bottom: 1px solid var(--light-gray-color);
}
.box--order_status p {
    color: var(--light-green-color);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 0;
    margin-left: 10px;
    height: 16px;
}
.box--orders_asses {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--light-gray-color);
    padding: 15px 0;
}
.box--orders_asses .product--image_order {
    border: 1px solid var(--light-gray-color);
    border-radius: 4px;
    margin-right: 6px;
}
.box--orders_asses .product--image_order img {
    border-radius: 4px;
}
.top--info_products {
    border-top: 2px solid var(--light-gray-color);
    margin: 10px 0;
}
.flex-box {
    display: flex;
}
.column-box {
    flex-direction: column;
}

.justify--content_between {
    justify-content: space-between;
}

.justify--content_end {
    justify-content: end;
}
.align--items_center {
    align-items: center;
}
.baseboard-asses {
    width: 100%;
    background-color: #FFFEFB;
    margin-bottom: 0;
}
.stardust .stardust-btn {
    display: flex;
    border-radius: 4px;
    background-color: var(--light-green-color);
    border: none;
    padding: 6px 10px;
}
.stardust .stardust-btn span {
    font-size: 12px;
    font-weight: 500;
    color: white;
    margin-right: 6px;
}
.stardust .stardust-btn p {
    font-size: 12px;
    margin: 0;
    color: white;
}
.box--center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn--primary_asses {
    background-color: var(--light-green-color);
    outline: none;
    color: white;
    border-radius: 4px;
    padding: 6px;
    font-weight: 600;
    font-size: 12px;
}
.go--to_back .btn--primary_asses {
    padding: 6px 44px;
}
.conteiner--order_assessments {
    border: 1px solid var(--light-gray-color);
    background-color: var(--bg-extra-light-gray);
    margin-bottom: 10px;
}
.box--orders_asses .product--image_order {
    width: 80px;
}
.box--order_status {
    padding-bottom: 10px;
    padding-top: 4px;
}
.box--orders_asses .product--order_info h4 {
    font-weight: 600;
    font-size: 16px;
}
.box--orders_asses .product--order_info h5 {
    font-size: 14px;
    font-weight: 500;
    color: #9A9A9A;
    margin: 0;
}
.box--orders_asses .product--order_info h6 {
    font-size: 14px;
    margin-top: .75rem;
}
.content--order {
    display: flex;
}
.price--product {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}
.conteiner-asses .divisor {
    margin: 10px 0;
}
.content--info_product {
    padding: 12px 10px;
}
.content--info_product .remaining-days {
    font-size: 14px;
}
.stardust {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
}
.stardust h4 {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}
.stardust h4 span {
    font-size: 24px;
    height: 24px;
}
.modal-wrapper {
    width:100%;
    height:100%;
    position:fixed;
    top:0; left:0;
    background: rgba(0, 0, 0, 0.4);
    visibility:hidden;
    opacity:0;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.modal-wrapper.open {
    opacity:1;
    visibility:visible;
}
.modal-wrapper .modal {
    width: 730px;
    display:block;
    margin:50% 0 0 -400px;
    position:relative;
    top:50%; left:50%;
    background:#fff;
    opacity:0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    padding: 2.5rem 2rem;
}

.modal-wrapper.open .modal {
    margin-top:-300px;
    opacity:1;
}
.head {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.modal-wrapper .btn-close {
    width:32px;
    height:32px;
    display:block;
    float:left;
    opacity: 1;
}
.close--modal_asses {
    border: 0;
    background: none;
    padding: 0;
}
.head .titulo--modal {
    font-size: 16px;
    font-weight: 600;
    margin-left: 6px;
}
.coin--infobar {
    border: 1px solid var(--light-green-color);
    border-radius: 4px;
    background-color: rgba(50, 188, 173, 0.15);
    color: var(--light-green-color);
    font-size: 13px;
    padding: 10px;
    margin: 13px 0;
}
.coin--infobar img {
    margin-right: 8px;
}
.coin--infobar p {
    margin: 0;
    height: 16px;
}

.modal--content_order {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--light-gray-color);
}

.modal--content_order .modal-product--image_order img {
    width: 58px;
    border: 1px solid var(--light-gray-color);
    margin-right: 10px;
}

.modal--content_order .modal--order_info h4 {
    font-size: 14px;
    font-weight: 600;
}
.modal--content_order .modal--order_info h5 {
    font-size: 12px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.54);
    margin-bottom: 0;
}

.modal--order_info > * {
    margin-bottom: 10px;
}

.rating {
    unicode-bidi: bidi-override;
    direction: rtl;
    text-align: center;
    margin-right: 11px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}
.rating input {
    display: none;
}
.rating label {
    display: inline-block;
    font-size: 20px;
    color: #777;
    cursor: pointer;
    margin: 0;
    height: 26px;
}
.rating label:hover,
.rating label:hover ~ label,
.rating input:checked ~ label {
    color: #FFCA11;
}
.rating-text {
    font-size: 13px;
    color: #FFCA11;
    height: 16px;
    margin-left: 11px;
}
.rating_stars {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.rating_stars .text--product_quality {
    font-size: 13px;
    margin-right: 6px;
    height: 16px;
}
.modal .content-modal .divisor {
    margin-bottom: 12px;
    margin-top: 7px;
}
.quests_box {
    border: 1px solid var(--light-gray-color);
    background: var(--bg-extra-light-gray);
    width: 100%;
    padding-top: 24px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 11px;
    margin-top: 20px;
}
.quests_box .quest--area {
    border: 1px solid var(--light-gray-color);
    background-color: white;
    padding: 10px 8px;
    padding-bottom: 0;
    width: 100%;
}
.quests_box .quest--area .question {
    margin-bottom: 10px;
}
.quests_box .quest--area .question .ask, span.ask1.ask {
    font-size: 12px;
    font-weight: 600;
}
.quests_box .quest--area .first_question .ask1 {
    margin-bottom: 4px;
}
.quests_box .quest--area .first_question select, .modal--order_info select {
    border-radius: 6px;
    border: 1px solid #BEBEBE;
    background: #FFF;
    width: 67px;
    height: 24px;
    flex-shrink: 0;
    font-size: 12px;
    outline: none;
}
.share_more {
    height: 60px !important;
    width: 100%;
    outline: none;
    border: 1px solid var(--light-gray-color);
    padding: 10px;
    font-size: 12px;
}
.upload-area {
    margin-top: 10px;
}
.upload-area svg {
    margin-right: 6px;
}
.upload-area .file_img {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--light-green-color);
    color: var(--light-green-color);
    font-size: 12px;
    background: rgba(50, 188, 173, 0.15);
    width: 163px;
    height: 30px;
    flex-shrink: 0;
    margin-right: 10px;
}
.upload-area .file_img input {
    position: absolute;
    font-size: 50px;
    opacity: 0;
    right: 0;
    top: 0;
}
.upload-area .file_video {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--light-green-color);
    color: var(--light-green-color);
    font-size: 12px;
    background: rgba(50, 188, 173, 0.15);
    width: 163px;
    height: 30px;
    flex-shrink: 0;
    margin-right: 10px;
}
.upload-area .file_video input {
    position: absolute;
    font-size: 50px;
    opacity: 0;
    right: 0;
    top: 0;
}
.footer--modal_review {
    margin-top: 20px;
    justify-content: flex-end;
}
.footer--modal_review .btn--cancel {
    text-transform: uppercase;
    background: none;
    border: none;
    font-size: 14px;
    width: 140px;
    height: 35px;
}
.footer--modal_review .btn--send-review {
    background: var(--light-green-color);
    width: 140px;
    height: 35px;
    border-radius: 2px;
    font-size: 14px;
    border: none;
    color: white;
}
.text_evaluated {
    text-transform: uppercase;
}
.first_question input {
    border: none;
    outline: none;
}
#tab-one-label .contador-avaliacao-pendente {
    width: 18px;
    height: 18px;
    border-radius: 16px;
    font-size: 12px;
    background: var(--light-green-color);
    color: white;
    padding: 2px 4px;
    font-weight: 500;
    margin-left: 6px;
}
.galery-box .images {
    display: flex;
    position: relative;
    padding-bottom: 16px;
}
.galery-box .images img {
    border: 1px solid #E1E1E1;
    margin-right: 8px;
    width: 60px;
}
#myModal.fundo_modal--img {
    width: 100%;
    background: rgba(0, 0, 0, 0.40);
}
.fundo_modal--img .modal-content  {
    width: auto;
    margin: auto;
    position: relative;
}
.fundo_modal--img .modal-content .close {
    position: absolute;
    top: 10px;
    right: 20px;
}
.fundo_modal--img .modal-content .slide {
    display: flex;
    overflow: hidden;
    max-width: 730px;
}
.my-assessments .client-information .cliente-welcome, .my-assessments .client-information .titulo-panel {
    font-size: 24px;
}
.my-assessments .client-information .cliente-welcome .name-user, .my-assessments .client-information .titulo-panel {
    font-weight: 600;
}
.margin--top_2 {
    margin-top: 2rem;
}
.pendente-open {
    z-index: 999999999;
}

@media screen and (max-width: 991.98px) {
    .btn-menu-mb {
        display: none !important;
    }
    .my-assessments {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    #show-menu {
        display: none;
    }
    .hide-mobile {
        display: none;
    }
    .btn-menu-mb {
        display: block;
        margin-bottom: 2rem;
        width: 35px;
        height: 35px;
        padding: 0;
    }
    .btn-menu {
        width: 100%;
        border: 1px solid #C5C5C5;
        outline: none;
        border-radius: 4px;
    }
    h3.cliente-welcome {
        font-size: 24px;
        font-weight: 400;
    }
    .cliente-welcome .name-user {
        font-weight: 600;
    }
    .my-assessments .titulo-panel {
        font-size: 36px;
        font-weight: 700;
    }
    .my-assessments .left-menu-account {
        margin-bottom: 2rem;
    }
    .conteiner-asses {
        padding: 6px;
    }
    .content-tab #tab-one-label, .content-tab #tab-two-label {
        height: 48px;
    }
    .client-information {
        margin-bottom: 20px;
    }
    .box--orders_asses .product--image_order {
        width: 50px;
        height: 50px;
    }
    .box--orders_asses .product--order_info {
        max-width: 300px;
    }
    .box--orders_asses .product--order_info h4 {
        font-size: 12px;
    }
    .box--orders_asses .product--order_info h5 {
        font-size: 10px;
    }
    .box--order_status {
        padding-bottom: 4px;
    }
    .conteiner-asses .divisor {
        margin: 6px 0;
    }
    .baseboard-asses {
        margin-top: 6px;
    }
    .stardust .stardust-btn {
        height: 30px;
    }
    .content--info_product {
        padding: 10px 6px;
    }
    .content--info_product .remaining-days {
        font-size: 12px;
        font-weight: 500;
        font-style: normal;
    }
    .modal-wrapper.open .modal {
        margin-top: -350px;
    }
    .modal-wrapper .modal {
        width: 400px;
        margin: 50% 0 0 -200px;
    }
    .upload-area {
        justify-content: space-between;
    }
    .upload-area .file_img, .upload-area .file_video {
        width: 49%;
        margin: 0;
    }
    .modal--content_order .modal--order_info h4 {
        font-size: 13px;
    }
    .modal--content_order .modal--order_info h5, .rating_stars .text--product_quality span {
        font-size: 11px;
    }
    .rating_stars {
        height: 20px;
    }
    .rating .input-radio {
        height: 22px;
    }
    .rating label {
        font-size: 16px;
    }
    #tab-two-panel .stardust .stardust-btn span {
        font-size: 10px;
    }
    .share_more {
        padding: 4px 10px;
    }
}

@media screen and (max-width: 390px) {
    #tab-two-panel .content--info_product {
        flex-direction: column;
        margin-bottom: 8px;
    }
}