@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Philosopher:wght@400;700&display=swap");
:root {
    --font_54: 54px;
    --font_44: 44px;
    --font_42: 42px;
    --font_38: 38px;
    --font_22: 22px;
    --font_20: 20px;
    --font_18: 18px;
    --font_17: 17px;
    --font_16: 16px;
    --font_14: 14px;
    --font_12: 12px;
    --white_color: #ffffff;
    --green_color: #a2ca28;
    --red_color: #fd634e;
    --black_color: #656e74;
}

body[cz-shortcut-listen="true"] .cart-page {
    padding-bottom: 70px;
}

* {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

a,
button:focus,
input:focus,
button {
    text-decoration: none;
    outline: none;
    line-height: normal;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
ul li a,
input,
select,
button {
    font-family: "Jost", sans-serif;
}

.card-header,
.site_heading {
    font-family: "Philosopher", sans-serif;
}

body {
    background-color: #f1f2f5;
}

.green_color {
    background-color: var(--green_color) !important;
}

.red_color {
    background-color: var(--red_color) !important;
}

.container.container_full,
.container_full {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 100px;
}


/* Home page header css */

header.site_header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 10px 0;
}

.site__nav ul.navbar-nav {
    width: 100%;
    justify-content: flex-end;
}

.site__nav ul li a {
    text-transform: capitalize;
    font-size: 13px;
    color: var(--white);
    padding: 6px 15px !important;
    border-radius: 50px;
    border: 1px solid transparent;
    display: inline-block;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease-out;
}

.site__nav ul li a:hover {
    color: var(--red_color);
}

.site__nav ul li.login_btn {
    margin-left: 10px;
}

.site__nav ul li.login_btn a {
    background-color: #fff;
    color: #000 !important;
}

header.site_header .row {
    align-items: center;
}


/* Page header Design css  */

header.site_header.sub_header {
    position: relative;
    background-color: #fff;
    margin-bottom: 45px;
    box-shadow: 0px -3px 11px 1px #ccc;
    z-index: 999;
}

.sub_header .site__nav {
    margin-top: 0;
}

.sub_header nav.navbar.navbar-expand-lg {
    padding: 0;
}

.sub_header .site__nav ul li a {
    color: #000;
}

.sub_header .site__nav ul .login_btn a {
    background-color: var(--red_color);
    color: #fff !important;
}

.sub_header .site__nav ul .register_btn a {
    border-color: var(--red_color);
    color: var(--red_color) !important;
}


/* Banner design css  */

.banner_section {
    height: 95vh;
    overflow: hidden;
}

.banner_section img {
    width: 100%;
}


/* Home page design css */

.feature_sec {
    padding-bottom: 100px;
    margin-top: -100px;
}

.feature_item {
    color: #fff;
    background: #fd634e;
    padding: 40px;
    height: 100%;
    position: relative;
}

.feature_item>img {
    height: 40px;
}

.feature_item h2 {
    text-transform: capitalize;
    font-size: 20px;
    margin: 10px 0;
}

.feature_item p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 40px;
}

.feature_item a {
    color: #fff;
    font-size: 14px;
    text-transform: capitalize;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.feature_item a:hover {
    color: #000;
}

.hover_wrap {
    perspective: 1250px;
}

.hover {
    box-shadow: 0px 40px 35px -30px rgb(183 50 32 / 35%);
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transition: all 0.35s linear;
    -moz-transition: all 0.35s linear;
    -ms-transition: all 0.35s linear;
    -o-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.hover:hover {
    -webkit-transform: rotateX(10deg);
    -moz-transform: rotateX(10deg);
    -ms-transform: rotateX(10deg);
    -o-transform: rotateX(10deg);
    transform: rotateX(10deg);
    box-shadow: 0px 35px 15px -15px rgb(183 50 32 / 30%);
}

.grid_img {
    height: 100%;
}

.grid_img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.grid_content {
    background-color: #fff;
    height: 100%;
}

.grid_text {
    height: 100%;
    padding: 40px;
}

.grid_text span {
    color: #fd634e;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: "Jost", sans-serif;
}

.grid_text h2 {
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.grid_text .location_icon {
    display: none;
}

.grid_text p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #929292;
    margin-bottom: 0;
}

.grid_text a {
    display: inline-block;
    font-size: 14px;
    color: #a2ca28;
    text-transform: capitalize;
    text-decoration: none;
    margin-top: 20px;
}

.grid_content.green_color .grid_text p,
.grid_content.green_color .grid_text h2,
.grid_content.green_color .grid_text span {
    color: #fff;
}

.grid_content.red_color .grid_text p,
.grid_content.red_color .grid_text h2,
.grid_content.red_color .grid_text span {
    color: #fff;
}

.grid_row_6 .row {
    height: 50%;
}

.grid_img_6 {
    height: 50%;
}

.grid_content_6 {
    height: 50%;
}

.read_more {
    color: #a2ca28;
    text-transform: capitalize;
    font-size: 14px;
    text-decoration: underline;
}

.feature_item a img {
    margin-left: 5px;
}


/* filter css end here */

.location_icon {
    display: inline-block;
    margin: 0 0 12px;
}

.feature_item a:hover {
    color: #fff;
    text-decoration: none;
}

.exl_info {
    max-width: 470px;
    margin: 0;
}

.exl_info h2 {
    color: #fd634e;
    text-transform: capitalize;
    font-size: 34px;
    margin-bottom: 24px;
}

.exl_info p {
    margin-bottom: 0;
    font-size: 14px;
    color: #a2c93a;
    line-height: 24px;
    text-align: center;
}

div.container {
    max-width: 1920px;
    padding: 0 100px;
}

.exl_experience {
    background-image: url(../images/art_banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    padding: 50px 0 0;
    margin-top: 0px;
}

footer.site_footer {
    background-color: #0d1119;
    padding: 30px 0 20px;
    bottom: 0;
    width: 100%;
}

.footer_item h3 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 15px;
}

.footer_form {
    padding-left: 15px;
}

.footer_item p {
    color: #8297a7;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0;
}

.footer_item ul li {
    display: inline-block;
    margin-right: 8px;
}

.footer_item ul li a {
    display: inline-block;
    height: 35px;
    color: #fff;
    width: 35px;
    border-radius: 50px;
    text-align: center;
    line-height: 35px;
}

.footer_form .row>div {
    padding: 0 3px;
}

.join_btn button {
    background-color: #a2ca28;
    color: #fff;
}

.footer_form .form-control {
    height: 40px;
    text-transform: capitalize;
    border: none;
    width: 100%;
    font-size: 14px;
}

.fb_icon a {
    background-color: #2e3192;
}

.twitter_icon a {
    background-color: #00aeef;
}

.youtube_icon a {
    background-color: #ed3123;
}

.linkedin_icon a {
    background-color: #171a8f;
}

.left_art_pic {
    width: 85px;
}

.left_art_pic img {
    width: 83px;
    height: 83px;
    object-fit: contain;
}

.mid_art,
.mid_art img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.abt_feature_item {
    text-align: left;
    padding: 0;
    border-radius: 30px;
    margin: 31px 0;
}

.left_feature h2.site_heading {
    text-align: left;
}

.left_feature h2.site_heading::before {
    right: auto;
}

.left_feature {
    padding-left: 15%;
}

.feature_icon {
    width: 35px;
    margin-bottom: 10px;
}

.right_feature_image {
    margin-right: -30px;
}

.about_our_feature .row>div {
    margin: auto;
}

.abt_feature_item p {
    font-size: 14px;
    color: #656e74;
    line-height: 30px;
    letter-spacing: 0.8px;
}

.btn-primary:focus,
.btn-primary.focus {
    color: #fff;
    background-color: #a2ca28;
    border-color: #a2ca28;
    box-shadow: 0 0 0 0.2rem #a2ca2870;
}

.inner_page_wrap {
    display: inline-block;
    width: 100%;
    position: relative;
}

.our_story_us {
    background-color: #fff;
    box-shadow: 0 10px 18px -3px #e9e9e9;
    border: 1px solid #ededed;
    padding: 40px 50px;
    margin-top: -90px;
}

.inner_page_wrap p {
    font-size: 14px;
    color: #656e74;
    line-height: normal;
}

.feature_heading {
    background-size: cover;
    padding: 125px 0;
    position: relative;
    background-image: url(../images/sub_banner.jpg);
}

section.custompage_wrap {
    margin-top: -44px;
}

.feature_heading::before {
    content: "";
    position: absolute;
    background-color: #0000008c;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.feature_heading h2.site_heading {
    color: #fff;
}

.contact_item {
    text-align: center;
    height: 100%;
}

.about_mission {
    padding-top: 50px;
}

.inner_page_wrap {
    margin: 60px 0 0;
}

.contact_item a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    padding: 30px 40px 40px;
    border: 1px solid #f1f1f1;
    height: 100%;
    background-color: #fff;
    box-shadow: 0px 8px 15px -7px #ccc;
    border-radius: 15px;
    font-size: 18px;
    text-transform: capitalize;
    color: #6f6f6f !important;
    letter-spacing: 0.5px;
}

.contact_map {
    margin-right: -15px;
    height: 100%;
}

.contact_form {
    padding: 90px 17%;
}

.contact_form_row {
    background-color: #fff;
    padding: 0 15px;
    margin: 90px 0 0;
    float: left;
    width: 100%;
}

.contact_form .form-control {
    height: 38px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    background-color: #ffffff;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 300;
    padding: 0 15px;
}

.faq_item h5 {
    font-size: 16px;
    line-height: normal;
    font-weight: 600;
}

.faq_item h5 i {
    position: absolute;
    left: -15px;
    font-size: 18px;
    background-color: var(--red_color);
    border-radius: 100px;
    height: 30px;
    width: 30px;
    color: #fff;
    box-shadow: 0px 0px 7px -2px #ccc;
    line-height: 30px;
    text-align: center;
}

.faq_section {
    margin-bottom: 70px;
}

.contact_form textarea.form-control {
    height: 90px;
    padding-top: 10px;
}

.contact_form .form-control::placeholder {
    color: #ccc;
}

.contact_form form {
    padding: 20px 50px 0;
}

.contact_form h3,
.contact_form p {
    text-align: center;
}

.contact_info_row .row {
    margin-top: 0px;
    float: left;
    width: 100%;
}

.contact_form input[type="submit"] {
    background-color: var(--red_color);
    color: #fff;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 55px;
    border-radius: 50px;
    padding: 0 70px;
    margin: 40px auto 0;
    display: table;
}

.contact_map iframe {
    width: 100%;
    height: 100%;
}

.contact_item label {
    margin: 0 0 10px;
    text-transform: capitalize;
    font-size: 22px;
    display: block;
    font-weight: normal;
}

.contact_item a i {
    width: 80px;
    height: 80px;
    margin-left: auto;
    line-height: 80px;
    font-size: 42px;
    color: var(--red_color);
    border-radius: 50px;
    margin-right: auto;
    margin-bottom: 23px;
}

.contact_item span {
    height: 90px;
    font-weight: 300;
}


/* new design changes on site start here */

.page_deisgn .container {
    max-width: 100%;
    padding-right: 100px;
    padding-left: 100px;
}

.page_deisgn .left_feature {
    padding-left: 0px;
}

.page_deisgn .left_feature h2.site_heading::before {
    display: none;
}

.page_deisgn .abt_feature_item {
    margin: 0px;
    padding: 20px;
    background: #fff;
    border-radius: 0px;
}

.page_deisgn .inner_page_wrap p {
    letter-spacing: 0px;
    font-size: 14px;
    line-height: normal;
    color: #808080;
    margin: 0;
}

.page_deisgn .about_our_feature .col-md-3 {
    perspective: 1250px;
}

.page_deisgn .about_our_feature .border {
    border: none !important;
    padding: 2px;
    background: linear-gradient(0deg, #a2c93a, transparent);
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    box-shadow: 0px 40px 35px -30px rgb(111 136 44 / 30%);
    -webkit-transition: all 0.35s linear;
    -moz-transition: all 0.35s linear;
    -ms-transition: all 0.35s linear;
    -o-transition: all 0.35s linear;
    transition: all 0.35s linear;
}

.page_deisgn .about_our_feature .border:hover {
    -webkit-transform: rotateX(10deg);
    -moz-transform: rotateX(10deg);
    -ms-transform: rotateX(10deg);
    -o-transform: rotateX(10deg);
    transform: rotateX(10deg);
    box-shadow: 0px 35px 15px -15px rgb(111 136 44 / 30%);
}

.page_deisgn .feature_heading h2.site_heading {
    font-size: 42px;
    padding-bottom: 0px;
}

.page_deisgn .feature_heading h2.site_heading::before {
    display: none;
}

.page_deisgn .our_story_us,
.page_deisgn .mission_info {
    z-index: 9;
    position: relative;
    padding: 25px;
    margin: 0% -15px;
}

.page_deisgn .right_feature_image {
    margin: 0px;
}

.page_deisgn .our_story_us {
    margin-right: -125px;
    box-shadow: none;
    margin-left: 0px;
}

.page_deisgn .mission_image {
    margin: 0px;
}

.page_deisgn .mission_info {
    height: auto;
    margin-left: -125px;
    margin-right: 0px;
}

.page_deisgn .mission_info .mission_in {
    padding: 0px;
    text-align: left;
}

.page_deisgn .mission_info p {
    color: #fff;
}

.page_deisgn .about_mission .row {
    margin-bottom: 50px;
}

.page_deisgn .about_mission .row .col-md-5 {
    display: flex;
    align-items: center;
}

.artist_section .about_artist {
    height: 50%;
}

.artist_height .artist_post_img {
    height: 50%;
}

.about_artist span,
.artist_post_img span {
    font-weight: 500;
    text-transform: capitalize;
}

.about_artist h2 {
    color: #000;
}

.about_artist h2,
.artist_post_img h2 {
    text-transform: capitalize;
    font-weight: 600;
}

.about_artist .read_more,
.artist_post_img .read_more {
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
}

.about_artist .location_icon {
    display: none;
}

.about_artist p {
    font-weight: 400;
    line-height: 24px;
    color: #929292;
}

.about_artist .inner_text {
    height: 100%;
}

.new_design .exl_experience {
    height: 600px;
}

.new_design .exl_info {
    margin-top: 50px;
}

.new_design .exl_info h2 {
    color: #000;
}

.new_design .exl_info p {
    text-align: left;
    color: #929292;
}

.new_design .exl_info a {
    text-decoration: none;
    margin-top: 30px;
    display: inline-block;
    border-bottom: 2px solid;
}

.seller_desc {
    margin: 30px 0;
    background-color: #fff;
    padding: 25px;
}

.become_note .site_btn {
    margin-top: 20px;
    cursor: pointer;
}

.become_note {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 25px;
    margin-bottom: 45px;
}

.faq_item {
    background-color: #fff;
    box-shadow: 0px 0px 7px -2px #ccc;
    padding: 20px 20px 20px 30px;
    margin: 0 0 20px;
    border-radius: 0;
    position: relative;
}

.faq_content p {
    margin: 0;
    line-height: normal;
}

.site_btn:active {
    border-color: transparent !important;
}


/******services_page*******/

.why_choose_list h4 {
    color: #000;
    text-transform: capitalize;
    font-size: 20px;
}

.services_item {
    border: 1px solid #e8e8e8;
    display: flex;
    padding: 50px 30px;
    margin-bottom: 50px;
    position: relative;
    flex-wrap: wrap;
}

.service_icon {
    flex: 0 0 35px;
    max-width: 35px;
    margin-right: 15px;
}

.services_item h3 {
    margin: 0;
    font-weight: normal;
    font-size: 22px !important;
    line-height: normal;
    flex: 1;
}

.service_icon img {
    width: 100%;
}

.services_item.first_service {
    background-color: #f9634e;
}

.services_item.second_service {
    background-color: #e8e6e6;
    border-color: transparent;
}

.services_item.fifth_service {
    background-color: #a2ca27;
}

.services_item.last_service {
    background-color: #585050;
}

.services_item.last_service h3,
.services_item.first_service h3,
.services_item.fifth_service h3 {
    color: #fff;
}

.services_item.last_service img,
.services_item.first_service img,
.services_item.fifth_service img {
    filter: invert(1);
}

.read_learn {
    flex: 0 0 100%;
    position: absolute;
    bottom: -10px;
    left: 30px;
}

.read_learn a {
    background-color: #ffffff;
    color: #000;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    border: 1px solid #ccc;
}

.why_choose_us ul li {
    color: #808080;
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgb(235, 235, 235);
    padding-bottom: 15px;
}

.why_choose_us ul li:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.why_choose_us ul li i {
    color: #a2ca27;
    font-size: 20px;
    vertical-align: middle;
    position: absolute;
    left: 3px;
    top: 2px;
}

.why_choose_us {
    margin: 20px 0 60px;
}

.why_choose_us h2.site_heading {
    margin-bottom: 10px;
}

.contact_form .form-group:last-child {
    text-align: center;
}

.error_field {
    color: red;
    font-weight: 600;
    background-color: #ff000014;
    padding: 10px 0;
    font-size: 13px;
    letter-spacing: 0.3px;
    margin: -15px 0 15px;
}

.error_field:empty {
    display: none;
}

.why_choose_list {
    margin-top: 30px;
}


/* medium css */

.medium-column {
    display: flex;
    box-shadow: 0 0 25px 0px #dad9d9;
    margin: 0 0 30px;
    border-radius: 15px;
}

.medium-column .medium-image {
    width: 50%;
    height: 100%;
    display: flex;
}

.medium-column .medium-image img {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    min-height: 300px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.medium-column .medium-step-inner {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    height: 300px;
    background: #fff;
    padding: 30px;
    width: 50%;
}

.inner_page_wrap .medium-step h3 {
    font-size: 20px;
}

footer .footer_item {
    margin: 0 0 20px;
}

.choose-getart-sec {
    padding: 60px 0 70px;
}

.choose-getart-sec .choose-getart-text {
    padding: 0 170px 0 0;
}

.choose-getart-img img {
    height: 450px;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.medium-top-text {
    text-align: center;
    margin: 0 0 40px;
    float: left;
    width: 100%;
    padding: 0 120px 0;
}

@media only screen and (max-width: 980px) {
    .medium-top-text {
        padding: 0px;
    }
}

.inner_page_wrap .medium-top-text p {
    float: left;
    width: 100%;
    margin: 0 0 13px;
    font-size: 17px;
}

.medium-top-text h2 {
    margin: 0 0 15px;
    float: left;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .medium-top-text h2 {
        font-size: 1.4rem;
    }
}

.medium-top-text h2 span {
    float: left;
    width: 100%;
    color: #fd634e;
    font-size: 15px;
    line-height: 25px;
}

.contact-toady-heading {
    float: left;
    width: 100%;
    margin: 0 0 20px;
}

.inner_page_wrap .contact_form h3 {
    font-size: 25px;
}

.inner_page_wrap .contact-toady-heading h3 {
    text-transform: uppercase;
    text-align: center;
}

.page_deisgn .our_story_us {
    background: #fd634e;
    border: none;
}

.page_deisgn .our_story_us h3,
.page_deisgn .our_story_us p {
    color: #fff;
}

.choose-getart-sec .choose-getart-text {
    padding: 40px 150px 40px 40px;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    background: #fd634e;
    max-width: 750px;
    box-shadow: 0 0 25px 0px #c1bfbf;
    border-radius: 5px;
    width: 750px;
}

.choose-getart-sec .row {
    align-items: center;
    position: relative;
    flex-direction: row-reverse;
}

.page_deisgn .inner_page_wrap .choose-getart-text h2 {
    margin: 0 0 13px;
    font-size: 20px;
    color: #fff;
}

.page_deisgn .inner_page_wrap .choose-getart-text p {
    margin: 0 0 12px;
    color: #fff;
}

.shop_banner .shop_banner_text p {
    color: #fff;
    font-size: 15px;
}

.project_timeline {
    float: left;
    width: 100%;
    margin: 10px 0 0;
}

.project_budget {
    margin-left: 0 !important;
}

.faq_section .row {
    margin-bottom: 30px;
}

.faq_section .faq_item,
.page_deisgn .abt_feature_item,
.page_deisgn .about_our_feature .border {
    height: 100%;
}

.about_our_feature .row>div {
    margin: initial;
}

.top-section {
    width: 100%;
}

.detail_page {
    width: 100%;
}

.body_content.with_footer {
    min-height: 100vh;
    position: relative;
}

.sub_header .site__logo img {
    width: 60px;
}

.supp_mat {
    width: 100%;
    height: 280px;
    display: inline-block;
    max-width: 280px;
    position: relative;
}

.supp_mat img {
    width: 100% !important;
    height: 100% !important;
    /* object-fit: cover !important; */
}

.supp_mat .download_attachment {
    position: absolute;
    right: 10px;
    top: 10px;
    height: 32px;
    width: 32px;
    text-align: center;
    line-height: 33px;
    color: #5f5f5f;
    border: 1px solid #5f5f5f;
    border-radius: 50px;
    background-color: #ffffff70;
    font-size: 16px;
}

button {
    position: relative;
}

@media only screen and (max-width: 767px) {
    .faq_section .faq_item {
        height: auto;
    }
    .faq_section .row {
        margin-bottom: 0px;
    }
}

.site__logo img {
    width: 100px;
}

.terms-condition h2 {
    text-align: left !important;
    font-family: "Philosopher", sans-serif;
    font-size: 26px;
}

.terms-condition {
    margin-bottom: 40px;
}

.terms-condition a {
    color: #fd634e;
}

.terms-condition ul li {
    list-style: initial;
    margin-top: 10px;
}

.terms-condition ul {
    padding-left: 18px;
    margin-bottom: 20px;
}

.order-received-page .shipping_info {
    margin-top: 30px;
    border-top: 1px solid #e4e4e4;
    padding-top: 22px;
}

.order-received-page .shipping_info h5 {
    text-transform: capitalize;
    font-size: 20px;
}

.profile_image_upload {
    height: 130px;
    width: 130px;
    margin: auto;
    border: 1px dashed #ccc;
    padding: 4px;
    border-radius: 50%;
    position: relative;
}

.profile_image_upload label {
    height: 100%;
    width: 100%;
}

.profile_image_upload label picture {
    display: inline-block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 100%;
}

.profile_image_upload input {
    display: none;
}

.payment_details .custom_check .stipe_img {
    max-width: 230px;
    margin: 0;
}

.payment_details .custom_check label {
    margin: 0;
    flex: 1;
    text-align: left;
}

.payment_details .custom_check {
    background-color: #f1f1f1;
    padding: 15px;
}

.bidding_fields.pay_auction .input_field {
    padding: 12px 15px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
    box-shadow: 0px 3px 8px -3px #928d8d;
}

.bidding_fields.pay_auction .input_field label {
    margin-bottom: 0;
}

.become_note a {
    color: #a2ca27;
    font-weight: bold;
    margin-bottom: 2px;
}


/************404 page css start**************/

.not_found_wrap {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.not_found_wrap .not_found_inner {
    position: relative;
    z-index: 9;
}

.not_found_inner h3 {
    text-transform: uppercase;
    font-size: 16px;
    color: #5d322f;
}

.not_found_inner h1 {
    font-size: 94px;
    color: #f96359;
    font-weight: 900;
}

.not_found_inner .goback {
    margin-top: 30px;
}

.not_found_wrap {
    background-image: url(../images/404_bg.jpg);
    background-size: cover;
}

button.mark_as_button {
    height: 38px;
    border: 1px solid #a2ca28;
    color: #a2ca28;
    border-radius: 3px;
    background-color: #fff;
    padding: 0 10px;
    vertical-align: middle;
}


/*****************chat section start****************/

ul.chat li .chat-body {
    width: auto;
    display: inline-flex;
}

ul.chat li.right .chat-body {
    float: right;
}

ul.chat li .chat-body {
    flex-wrap: wrap;
}

ul.chat li {
    border-radius: 6px;
    padding: 0;
    margin-bottom: 6px;
}

ul.chat li:hover {
    background-color: transparent;
}

ul.chat li .chat-body .right_chat {
    line-height: normal;
}

ul.chat li .chat-body .right_chat pre {
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 6px 10px;
    display: inline-block;
    margin-bottom: 0;
}

ul.chat li.right .chat-body .right_chat pre {
    background-color: #e2e2e2;
    border-radius: 5px;
    padding: 6px 10px;
}

ul.chat li.right .chat-body span.chater_img {
    display: none;
}

ul.chat li.right .chat-body .header {
    display: none;
}

ul.chat li .chat_time {
    flex: 0 0 100%;
    max-width: 100%;
    bottom: 0;
    font-size: 11px;
    display: inline-block;
}

ul.chat li.right_user_chat {
    display: flex;
    justify-content: end;
    text-align: right;
}

.right_user_chat .chat_time td {
    display: block;
    text-align: right;
}

.right_user_chat span.chater_img {
    display: none;
}

ul.chat li.left .chat-body .chat_time {
    padding-left: 44px;
}

ul.chat li.right .chat_time {
    text-align: right;
}

ul.chat li.right .chat_time td {
    display: block;
}

.uploaded_img_nmr {
    position: absolute;
    width: calc(100% - 70px);
    left: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    top: 8px;
}

.checkout-process .custom_artwork .image-bottom div span {
    display: none;
}


/*****************chat section end****************/


/************404 page css end**************/

.membership_btn.site_btn {
    max-width: 220px;
    margin: auto;
}

.payment_method_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 5px;
    padding: 8px 15px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

.payment_method_item span {
    flex: 1;
    font-weight: 600;
}

.payment_method_item img {
    width: 100px;
    object-fit: cover;
}

.custom_account .input_field .multiselect__tags {
    min-height: 40px;
    display: block;
    padding: 3.5px 40px 0 13px;
    border-radius: 3px;
    border: 1px solid #e8e8e8;
    background: #fff;
    font-size: 14px;
}

.order_details_wrap .border {
    background-color: #fff;
    height: 100%;
}

.product_description pre,
.product_candidate_requirement pre,
.product_other_requirements pre {
    overflow: visible;
    white-space: break-spaces;
    font-size: 14px;
    margin-bottom: 0;
    color: #808080;
    font-family: "Jost", sans-serif;
    word-break: break-all;
}

.member_ship_plan p span {
    margin-right: 15px;
}

.table_pdf_file {
    display: inline-block;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.right_dashboard {
    height: 100%;
    position: relative;
    padding-bottom: 70px;
}

.new_design .right_dashboard ul.pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    text-align: center;
}

.right_user_chat .chat-body {
    flex: 1;
}


/* .checkout-process form .row {
    margin-left: 0;
    margin-right: 0;
} */

.order_details_wrap table {
    border-radius: 5px;
    background-color: #fff;
    overflow: hidden;
    border: 1px solid #ccc;
}

.order_details_wrap table thead th {
    border-top: 0;
    border-bottom: 1px solid #ccc !important;
}

.order_details_wrap table tbody th,
.order_details_wrap table tbody td {
    border: none;
}

.right_dashboard>.container {
    padding: 0;
}

.cancelled_reason {
    margin-top: 15px;
}

.cancel_reason_wrap button.site_btn {
    pointer-events: none;
    background-color: red;
    border-radius: 0;
    height: auto;
    line-height: normal;
    padding: 3px 0;
    text-transform: capitalize;
    font-weight: 500;
}

.cancelled_reason pre {
    color: #808080;
}

.seller_store_popup .store_item label {
    display: block;
    font-weight: bold;
    margin-bottom: 0;
}

.left_store,
.right_store {
    background-color: #ffffff;
    height: 100%;
    padding: 0 20px;
    border: 1px solid #e1e1e1;
    border-left: 4px solid #e9e9e9;
}

.store_item {
    margin: 20px 0;
    font-size: 14px;
}

.seller_store_popup {
    padding: 10px;
}

@media only screen and (max-width: 767px) {
    .not_found_wrap {
        background-position: center;
    }
    .not_found_inner h1 {
        font-size: 54px;
        color: #f96359;
        font-weight: 900;
    }
}

.inner_priofile_detail ul li {
    display: inline-block;
    margin: 0 5px;
}

.inner_priofile_detail ul li a {
    background-color: transparent;
    color: #f16351;
    height: 40px;
    width: 40px;
    display: inline-block;
    border: 1px solid;
    border-radius: 50px;
    line-height: 39px;
}

.inner_priofile_detail ul {
    margin-top: 20px;
}

.abt_feature_item figure {
    display: inline-block;
    margin-bottom: 0;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
}

.abt_feature_item figure img {
    height: 100% !important;
    width: 100% !important;
}

.page_deisgn iframe {
    margin-top: 15px;
}