body > .container > .header {
    height: 118px;
    border-bottom: 3px solid var(--primary);
}

/* Side Bar */
.main_content {
    padding: 50px 0;
}

.main_content > .container {
    display: flex;
    width: 1192px;
    max-width: 98%;
    margin: 0 auto;
}

.side_bar {
    width: 25.9%;
    position: relative;
}

/* sticky sidebar only on tablet and pc */
@media (min-width: 768px) {
    .side_bar > .container {
        position: absolute;
        transition: transform 300ms 300ms;
    }
}

/* infoBox */
.personal_info {
    border-radius: 10px;
    background: #f2f2f2;
    overflow: hidden;
}

.personal_info .pic img {
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.personal_info .info {
    padding: 20px;
}

.personal_info .info .name {
    font-size: 19px;
    margin-bottom: 6px;
    font-weight: 900;
    color: #000 !important;
}

.personal_info .info .job {
    display: block;
    font-size: 15px;
    color: #858585;
    font-weight: 600;
}

.personal_info .info .profile_code {
    display: flex;
    align-items: center;
    margin-top: 8px;
    font-size: 16px;
}

.personal_info .info .profile_code img {
    margin-left: 10px;
}

.personal_info .info .profile_code strong {
    font-weight: 700;
    color: var(--blck);
    margin-left: 6px;
}
.personal_info .info .descript {
    margin-top: 4px;
    font-size: 13px;
}
/* contactBox */
.contact_box > .container {
    padding: 20px;
}

.contact_box > .container > a > div,
.contact_box > .container > div {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
}
.contact_box > .container > .offed {
    display: flex;
    flex-direction: column;
}
.contact_box > .container .call_info {
    color: var(--secondary);
}

.contact_box > .container .chat_info {
    color: var(--primary);
}

.contact_box > .container .guide {
    color: var(--blck);
}
.contact_box >.container .product_price .price {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
}
.contact_box >.container .product_price span {
    font-size: 14px;
    font-weight: 600;
}
.contact_box >.container .product_price .old-price {
    display: none;
    position: relative;
    font-weight: 500;
    color: #7c7e7e;
	margin-bottom: -14px;
    margin-top: -14px;
}
.contact_box >.container .product_price.offed .old-price {
    display: inline;
}
.contact_box >.container .product_price .old-price::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #5e6060;
    bottom: 50%;
    transform: translateY(50%);
    opacity: .7;
}
.contact_box > .container .button {
    padding: 8px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    gap: 10px;
    margin: 8px 0 19px;
    line-height: 2.2;
    border: initial;
}

.contact_box > .container .chat-btn {
    background: var(--primary);
}
.contact_box > .container .add-to-card {background: var(--primary);}

/* Side Bar // */


/* Content Side */
.content {
    width: 74.1%;
}

.content > .container {
    padding: 0px 30px;
}

/* About */
.heading_title {
    font-size: 20px;
    font-weight: 900;
    color: var(--blck);
    margin: 0 !important;
}

.heading_title i {
    color: var(--primary);
    font-weight: inherit;
}

.about {
    margin-bottom: 60px;
}

.about > h2 {
    margin-bottom: 10px !important;
}

.about .bio,
.about .cv li {
    color: var(--blck);
}

.about .cv {
    margin-right: 20px;
}

/* Response Hours */

.response_hours > .header {
    display: flex;
    align-items: center;
    gap: 22px;
}

.response_hours > .header .status {
    padding: 4px;
    border-radius: 4px;
    color: var(--blck);
}

.response_hours > .header .status.offline {
    background: rgb(239, 239, 239);
}

.response_hours > .header .status.online {
    background: rgb(238, 249, 242);
    color: rgb(34, 169, 88);
    font-size: 16px;
}

.response_hours > .header .status .status_dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 7px;
}

.response_hours > .header .status.offline .status_dot {
    background: rgb(163, 163, 163);
}

.response_hours > .header .status.online .status_dot {
    background: rgb(34, 169, 88);
}

.response_hours .times {
    margin: 0 0 40px 0;
}

.response_hours .times li {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
    padding: 10px;
    list-style-type: none;
    background: #F2F2F2;
    color: var(--blck);
}
.response_hours .times li span {font-size: 16px !important;}
.response_hours .times li:first-child {
    margin-top: 17px;
}

/* Rates & Comments */
.rates_comments > .header {
    margin-bottom: 24px;
}

.rates_comments .total_rate {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rates_comments .total_rate .total {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
}

.rates_comments .total_rate .total > span {
    color: var(--blck);
    font-weight: 600;
}

.rates_comments .total_rate .rate_count {
    font-weight: 600;
    color: var(--blck);
    line-height: 1;
    font-size: 16px;
}

/* Comments */
.comments {
    padding: 0;
}

.comment {
    display: flex;
    flex-direction: column;
}

.comment > .container,
.comment > .replay {
    position: relative;
    padding: 30px;
    border-radius: 4px;
    border: 1px solid rgba(167, 167, 167, .3);
    margin-bottom: 20px;
}

.comment > .replay {
    margin-right: 30px;
}

.cmnt-img {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    overflow: hidden;
    top: 25px;
    right: -20px;
}

.cmnt-img img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.cmnt-header {
    display: flex;
    align-items: center;
    margin: 0 20px 12px 0;
}

.cmnt-header .name {
    font-size: 12px;
    font-weight: 700;
    color: var(--blck);
}

.cmnt-header .date {
    font-size: 10px;
    color: var(--blck);
    padding: 0 10px;
    margin: 0 5px 0 auto;
    background: rgba(167, 167, 167, .15);
}

.cmnt-header .rate {
    display: flex;
    list-style: none;
    align-items: center;
}

.cmnt-text p {
    color: var(--blck);
    margin-bottom: 1rem;
}

/* Rates & Comments // */

/* Comment Form */

.comment_form .header {
    margin-bottom: 10px;
}

.form .your_rate {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--blck);
}

.form .rate_stars {
    display: flex;
    list-style: none;
    margin-bottom: 30px;
}

.form .rate_stars li {
    display: flex;
    cursor: pointer;
    padding-left: .3rem;
}

#required-rate-error {
    position: relative;
    display: inline;
    font-size: 14px;
    border-radius: 3px;
    padding: 4px 8px;
    margin-right: 6px;
    color: red;
    background: rgb(255, 232, 232);
    opacity: 0;
    transition: 300ms;
}

#required-rate-error::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left: 8px solid rgb(255, 232, 232);
}

.form .form_inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 1.6rem;
}

.form .form_inputs label {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form_inputs input,
.form_inputs textarea {
    border: none;
    padding: 12px;
    border-radius: 8px;
    outline: 2px solid rgba(0, 0, 0, 0.2);
    color: #444;
    line-height: 2;
}

.textarea_label, .submit_button {
    grid-column: span 2;
}

textarea {
    resize: none;
}

.form_inputs input:focus,
.form_inputs textarea:focus {
    outline: 2px solid var(--primary);
}

.submit_button {
    grid-column: span 2;
    font-size: 15px;
    font-weight: 700;
    padding: 6px 0;
    background: none;
    outline: none;
    border: 3px solid var(--primary);
    border-radius: 8px;
    color: var(--primary);
    cursor: pointer;
    margin-top: 26px;
}

/* Content Side // */

/* guide popup */
#guide-popup {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
}

#guide-popup.active {
    display: flex;
}

#guide-popup .container {
    position: relative;
    width: 98%;
    max-width: 640px;
    padding: 30px;
    background: #fff;
    border-radius: 4px;
    animation: transform 300ms;
}

#guide-popup .container .header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 20px 10px 0;
}

#guide-popup .container .header span {
    color: var(--blck);
    font-weight: 900;
    font-size: 20px;
}

#guide-popup .container .header span i {
    font-style: normal;
    color: var(--primary);
    font-weight: inherit;
}

#guide-popup .guide_list {
    list-style: none;
}

#guide-popup .guide_list {
    margin-bottom: 16px;
}

#guide-popup .guide_list li {
    display: flex;
    gap: 15px;
    align-items: center;
    color: var(--blck);
    font-weight: 600;
    font-size: 14px;
}

#guide-popup .guide_list.big li:first-child {
    margin-bottom: 1.2rem;
}

#guide-popup .container svg {
    position: absolute;
    top: 30px;
    left: 30px;
}

#show-giude {
    cursor: pointer;
}

.mobile {
    display: none;
}
/* Extra */
.woocommerce .star-rating span::before {content: '' !important;}
.comment-form-author, .comment-form-email {width: 50% !important;}
.comment-form-email input {width: 100% !important;}
.comment-form-author input {width: 95% !important;}
#submit {width: 100% !important;}
.woocommerce .star-rating::before {
    color: var(--primary) !important;
}
/* Extra - */
/* responsive */

@media (max-width: 1024px) {
    .side_bar {
        width: 40%;
    }

    .content {
        width: 60%;
    }

    .comments {
        padding: 0 20px;
    }
}

@media (max-width: 767px) {
    .content > .container {
        padding: 30px 0;
    }
    .side_bar {
        width: 100%;
    }

    .content {
        width: 100%;
    }

    .main_content {
        padding: initial;
    }

    .main_content > .container {
        flex-direction: column;
        max-width: 100%;
    }

    .response_hours > .header {
        flex-wrap: wrap;
        gap: 6px;
    }

    .comments {
        padding: 0;
    }

    .personal_info .pic img {
        max-width: 500px;
        margin: 0 auto;
    }

    .personal_info {
        border-radius: 0 0 10px 10px;
    }

    .form .form_inputs label {
        grid-column: span 2;
    }

    #guide-popup .container {
        width: 94%;
        height: 75%;
        overflow-Y: scroll;
        padding: 24px 16px;
    }

    #guide-popup .container .header span {
        font-size: 17px;
    }

    #guide-popup .container svg {
        top: 20px;
        left: 15px;
    }

    .sticky_button {
        display: block;
        position: fixed;
        bottom: 0;
        right: 0;
        width: 100%;
        z-index: 10;
        transform: scale(0);
        transition: transform 300ms;
    }

    .sticky_button.active {
        transform: scale(1);
    }

    .sticky_button a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background: var(--primary);
        border-radius: 8px;
        color: #fff;
        font-weight: 500;
        font-size: 16px;
        padding: 8px 0;
        margin: 10px;
        transition: transform 200ms;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    }
    .sticky_button a img {height: 35px !important;}
    .sticky_button a:active {
        transform: scale(.95);
    }

    .form .form_inputs {
        margin-bottom: 50px;
    }
}

/* Animation */

@keyframes transform {
    from {
        transform: translateY(-200px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.page_content {
    margin: 0px 0px !important;
}