/* cart page - start
================================================== */

.bg_default_gray {
    background-color: #f6f6f6;
}

.sec_ptb_120 {
    padding-top: 80px;
    padding-bottom: 100px;
}

.mt-1 {
    margin-top: 10px;
}
.mt-2 {
    margin-top: 20px;
}
.mt-3 {
    margin-top: 30px;
}
.mt-4 {
    margin-top: 40px;
}
.mt-5 {
    margin-top: 50px;
}

.mb-1 {
    margin-bottom: 10px;
}
.mb-2 {
    margin-bottom: 20px;
}
.mb-3 {
    margin-bottom: 30px;
}
.mb-4 {
    margin-bottom: 40px;
}
.mb-5 {
    margin-bottom: 50px;
}

.no-padd{
    padding: 0 !important;    
}
.no-border{
    border: none !important;
}
.font-weight-bold{
    font-weight: bold !important;
}

.quantity_input button {
    padding: 0px;
    border: none;
    outline: none;
    background: none;
    display: inline-block;
}

.carttable_product_item button {
    padding: 0px;
    border: none;
    outline: none;
    background: none;
    display: inline-block;
}

.carttable_product_item .item_title {
    margin: unset;
}

.ul_li_right {
    justify-content: flex-end;
}

.ul_li, .ul_li_right, .ul_li_center {
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.cart_table table {
    border: none;
    margin-bottom: 30px;
    color: #7c7770;
    vertical-align: middle;
}

.cart_table thead {
    font-size: 15px;
    font-weight: 700;
    border-bottom: none;
    color: #1B1B1B;
}

.cart_table thead tr {
    margin: 0px;
    background-color: transparent;
}

.cart_table th {
    padding: 0px 8px;
    border-bottom: none;
}

.cart_table tr {
    display: flex;
    margin-top: 30px;
    align-items: center;
    background-color: #ffffff;
}

.cart_table th, .cart_table td {
    border: none !important;
}

.cart_table th:nth-child(1), .cart_table td:nth-child(1) {
    width: 40%;
}

.cart_table th:nth-child(2), .cart_table th:nth-child(3), .cart_table th:nth-child(4), .cart_table td:nth-child(2), .cart_table td:nth-child(3), .cart_table td:nth-child(4) {
    width: 20%;
}

.cart_table .quantity_input input {
    width: 30px;
    border: none;
    text-align: center;
    display: inline-block;
    background-color: transparent;
}

.cart_table .quantity_input input:focus {
    outline: none;
}

.cart_table .price_text1, .cart_table .price_text2 {
    font-size: 15px;
    font-weight: 700;
    display: inline-block;
}

.cart_table .price_text1 {
    color: #c7a17a;
}

.cart_table .price_text2 {
    color: #1B1B1B;
}

.carttable_product_item {
    display: flex;
    align-items: center;
}

.carttable_product_item .item_image {
    width: 70px;
    height: 70px;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    background-color: #f6f6f6;
}

.carttable_product_item .item_image img {
    max-height: 50px;
}

.carttable_product_item .remove_btn {
    color: #ff5555;
    font-size: 20px;
    margin: 0px 30px;
}

.carttable_product_item .item_title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0px;
}

.carttable_footer {
    margin: -15px;
}

.carttable_footer li {
    padding: 15px;
}

.carttable_footer .btn {
    border-radius: 0px;
    padding: 23px 42px;
}

.carttable_footer .total_price {
    line-height: 1;
    font-size: 15px;
    font-weight: 700;
    min-width: 236px;
    align-items: center;
    padding: 22.5px 40px;
    display: inline-flex;
    color: #1B1B1B;
    background-color: #ffffff;
    justify-content: space-between;
}

/* cart item - start */

.cart_item {
    display: flex;
    position: relative;
    align-items: center;
    padding-right: 25px;
}

.cart_item:not(:last-child) {
    margin-bottom: 20px;
}

.cart_item .item_image {
    display: block;
    min-width: 70px;
    overflow: hidden;
    border-radius: 3px;
    position: relative;
    margin-right: 10px;
}

.cart_item .item_title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.cart_item .item_price {
    line-height: 1;
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #c7a17a;
}

.cart_item .remove_btn {
    top: 50%;
    right: 0px;
    color: red;
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 22px;
    text-align: center;
    position: absolute;
    border-radius: 100%;
    background-color: #ffffff;
    transform: translateY(-50%);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
}

.cart_item .remove_btn:hover {
    color: #ffffff;
    background-color: red;
}

/* cart item - end */

/* cart sidebar - start */

.sidebar-menu-wrapper {
    display: block;
}

.cart_sidebar {
    top: 0;
    width: 300px;
    right: -320px;
    height: 100vh;
    z-index: 9999;
    position: fixed;
    padding: 50px 20px;
    overflow-y: scroll;
    background-color: #ffffff;
    transition: 0.6s cubic-bezier(1, 0, 0, 1);
}

.cart_sidebar .mCustomScrollBox {
    overflow: visible !important;
}

.cart_sidebar.active {
    right: 0px;
}

.cart_sidebar .close_btn {
    top: 15px;
    right: 20px;
    line-height: 1;
    font-size: 24px;
    position: absolute;
}

.cart_sidebar .close_btn:hover {
    color: red;
}

.cart_sidebar .heading_title {
    line-height: 1;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f6f6f6;
}

.cart_sidebar .heading_title span {
    color: #c7a17a;
}

.cart_sidebar .total_price {
    display: flex;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    padding: 10px 0px;
    margin-bottom: 15px;
    align-items: center;
    color: #1B1B1B;
    border-top: 1px solid #f6f6f6;
    border-bottom: 1px solid #f6f6f6;
    justify-content: space-between;
}

.cart_sidebar .total_price span:first-child {
    font-family: "Oswald", sans-serif;
}

.cart_sidebar .total_price span:last-child {
    color: #c7a17a;
}

.cart_sidebar .btns_group {
    margin: -5px;
}

.cart_sidebar .btns_group li {
    width: 50%;
    padding: 5px;
}

.cart_sidebar .btn {
    display: block;
    font-size: 12px;
    padding: 17px 20px;
}

.cart_sidebar .btn.btn_border {
    padding: 15px 20px;
}

.cart_sidebar::-webkit-scrollbar {
    width: 0px;
}

.cart_sidebar_overlay {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.cart_sidebar_overlay.active {
    opacity: 1;
    display: block;
}

/* chip style - end
================================================== */

/* template form style - start
================================================== */

/* from global settings - start */

.form_item {
    position: relative;
    margin-bottom: 30px;
}

.form_item textarea, .form_item input {
    width: 100%;
    outline: none;
    display: block;
    box-shadow: none;
    border-radius: 5px;
    border: 1px solid #f5f5f5;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.form_item textarea:focus, .form_item input:focus {
    outline: none;
    box-shadow: none;
    border-color: #c7a17a;
}

.form_item input {
    height: 56px;
    padding: 0px 25px;
}

.form_item textarea {
    min-height: 160px;
    padding: 20px 25px;
}

.form_item .form_icon {
    top: 50%;
    right: 25px;
    margin: 0px;
    padding: 0px;
    position: absolute;
    transform: translateY(-50%);
}

.form_item .form_field_title {
    line-height: 1;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #1B1B1B;
    font-family: "Roboto", sans-serif;
}

.form_item .form_field_title sup {
    top: -2px;
}

:-moz-placeholder {
    color: #9d9a9a;
    text-transform: capitalize;
}

::-moz-placeholder {
    color: #9d9a9a;
    text-transform: capitalize;
}

:-ms-input-placeholder {
    color: #9d9a9a;
    text-transform: capitalize;
}

::-webkit-input-placeholder {
    color: #9d9a9a;
    text-transform: capitalize;
}

/* checkout section - start
================================================== */

.container_boxed {
    padding: 60px;
    max-width: 1290px;
    background-color: #ffffff;
}

.checkout_form .form_title {
    line-height: 1;
    font-size: 20px;
    margin-bottom: 35px;
}

.checkout_form .form_item input, .checkout_form .form_item textarea {
    border-radius: 0px;
    background-color: #f6f6f6;
}

.checkout_steps_nav {
    margin-bottom: 40px;
    padding-bottom: 35px;
    border-bottom: 2px solid #f8faff;
}

.checkout_steps_nav a {
    display: block;
    line-height: 1;
    font-size: 16px;
    font-weight: 500;
    padding-left: 30px;
    position: relative;
    color: #1B1B1B;
}

.checkout_steps_nav a:before {
    top: -2px;
    left: 0px;
    font-size: 18px;
    font-weight: 400;
    content: "ï„‘";
    position: absolute;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    font-family: "Font Awesome 5 Pro";
}

.checkout_steps_nav li:not(:last-child) {
    margin-right: 30px;
}

.checkout_steps_nav li:hover a:before, .checkout_steps_nav li.active a:before {
    content: "ï†’";
}

.checkout_form_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout_form_footer .total_price {
    font-size: 20px;
    font-weight: 500;
    margin-right: 50px;
    color: #c7a17a;
}

.checkout_form_footer .total_price strong {
    color: #1B1B1B;
}

@media only screen and (max-width: 600px) {
    .checkout_form_footer {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
}

.has-error .invalid-feedback{
    color: #a94442 !important;
}

.has-error input{
    border-color: #a94442 !important;
}