a {
    color: var(--text_color)
}
a:hover {
    color: #a0b93c;
}

.default-btn {
    display: inline-block;
    border: 1px solid var(--text_color);
    padding: 10px 30px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-transform: uppercase;
    background-color: var(--text_color);
    font-size: 14px;
    font-weight: 600;
}

.default-btn:hover {
    background-color: transparent;
    color: var(--text_color);
    border-color: var(--text_color);
    text-decoration: none;
}

.optional-btn {
    display: inline-block;
    border: 1px solid var(--text_color);
    padding: 10px 30px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-transform: uppercase;
    background-color: transparent;
    color: var(--text_color);
    font-size: 14px;
    font-weight: 600;
}

.optional-btn:hover {
    background-color: var(--text_color);
    color: #ffffff;
    border-color: var(--text_color);
    text-decoration: none;
}

.form-control {
    background-color: #fff;
    height: 48px;
    border-radius: 0;
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
    padding: 0 0 0 15px;
    border: 1px solid #27482b;
    color: #27482b;
    font-size: 15px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.form-control::placeholder{color: #27482b;}
.form-control::-moz-placeholder{color: #27482b;}
.form-control::-ms-input-placeholder {color: #27482b;}
.form-control::-ms-input-placeholder{color: #27482b;}
/*::placeholder{color: #27482b;}*/
/*================================================
Cart CSS
=================================================*/
.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.cart-table table {
    margin-bottom: 0;
}

.cart-table table thead tr th {
    border-bottom-width: 0px;
    vertical-align: middle;
    padding: 0 0 15px;
    text-transform: uppercase;
    border: none;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 600;
    text-align: inherit;
}

.cart-table table tbody tr td {
    vertical-align: top;
    color: #777777;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-color: #eaedff;
    border-left: none;
    border-right: none;
    white-space: normal;
}


.cart-table table tbody tr td.product-thumbnail a {
    display: inline-block;
}

.cart-table table tbody tr td.product-thumbnail a img {
    width: 100px;
}
.cart-table table tbody tr td.product-thumbnail .promo-sticker img {
    width: 50px;
}

.cart-table table tbody tr td.product-name a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
}

.cart-table table tbody tr td.product-name ul {
    padding-left: 0;
    list-style-type: none;
    margin-top: 10px;
    margin-bottom: 0;
}

.cart-table table tbody tr td.product-name ul li {
    margin-bottom: 6px;
    font-size: 13.5px;
}

.cart-table table tbody tr td.product-name ul li span {
    display: inline;
    color: var(--text_color);
}

.cart-table table tbody tr td.product-name ul li:last-child {
    margin-bottom: 0;
}

.cart-table table tbody tr td.product-subtotal {
    overflow: hidden;
    font-size: 16px;
}

.cart-table table tbody tr td.product-subtotal .subtotal-amount {
    color: #002753;
    font-weight: 600;
}

.cart-table table tbody tr td.product-subtotal .remove {
    color: red;
    float: right;
    display: block;
    position: relative;
    top: -1px;
    font-size: 18px;
}

.cart-table table tbody tr td.product-quantity .input-counter {
    max-width: 130px;
    min-width: 130px;
    text-align: center;
    display: inline-block;
    position: relative;
}

.cart-table table tbody tr td.product-quantity .input-counter span {
    position: absolute;
    top: 0;
    background-color: transparent;
    cursor: pointer;
    color: #d0d0d0;
    width: 40px;
    height: 100%;
    line-height: 50px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 22px;
}

.cart-table table tbody tr td.product-quantity .input-counter span.minus-btn {
    left: 0;
}

.cart-table table tbody tr td.product-quantity .input-counter span.plus-btn {
    right: 0;
}

.cart-table table tbody tr td.product-quantity .input-counter span:hover {
    color: #fdb913;
}

.cart-table table tbody tr td.product-quantity .input-counter input {
    height: 45px;
    color: #002753;
    outline: 0;
    display: block;
    border: none;
    background-color: #f8f8f8;
    text-align: center;
    width: 100%;
    font-size: 17px;
    font-weight: 600;
}
.cart-table table tbody tr td.product-price {
    font-size: 16px;
}
.cart-table table tbody tr td.product-quantity .input-counter input::-webkit-input-placeholder {
    color: #002753;
}

.cart-table table tbody tr td.product-quantity .input-counter input:-ms-input-placeholder {
    color: #002753;
}

.cart-table table tbody tr td.product-quantity .input-counter input::-ms-input-placeholder {
    color: #002753;
}

.cart-table table tbody tr td.product-quantity .input-counter input::placeholder {
    color: #002753;
}
.cart-table .delete-product {cursor: pointer;}

.cart-table table tbody tr td .unit-amount {
    color: #002753;
    font-weight: 600;
}
.cart-table .product-name { max-width: 300px;}

.cart-buttons {
    margin-top: 30px;
}
.cart-blocks {display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start;}
.cart-totals {
    background: #ffffff;
    padding: 40px;
    max-width: 500px;
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    margin-left: auto;
    margin-top: 50px;
    /*margin-right: auto;*/
}

.cart-totals h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
}

.cart-totals ul {
    padding-left: 0;
    margin: 0 0 25px;
    list-style-type: none;
}
.cart-totals ul li:first-child {
    border-top: none;
}
.cart-totals ul li:last-child {
    border-bottom: none;
}

.cart-totals ul li {
    border-bottom: 1px solid #eaedff;
    padding: 10px 0;
    color: #002753;
    overflow: hidden;
    font-weight: 600;
}

.cart-totals ul li.cart-total-price {
    font-size: 20px;
    border-top: none;
}

.cart-totals ul li.cart-total-price span {
    color: #002753;
}

.cart-totals ul li span {
    float: right;
    font-weight: normal;
}
.cart-totals ul li .price {
    float: right;
    font-weight: 600;
}

.cart-totals ul li .cart-subtitle {
    float: left;
    font-weight: normal;
}

.login-content h2 {
    margin-bottom: 25px;
    font-size: 25px;
    font-weight: 700;
}

.login-content .login-form {
    padding-right: 15px;
}

.login-content .login-form .form-group {
    margin-bottom: 20px;
}

.login-content .login-form .form-group .form-control {
    height: 50px;
}

.login-content .login-form .default-btn {
    display: block;
    width: 100%;
    padding: 14px 25px;
}

.login-content .login-form .forgot-password {
    display: inline-block;
    margin-top: 15px;
    position: relative;
    font-weight: 600;
}

.login-content .login-form .forgot-password::before {
    width: 100%;
    height: 1.5px;
    background: #777777;
    bottom: 0;
    left: 0;
    position: absolute;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: '';
}

.login-content .login-form .forgot-password:hover::before {
    width: 0;
}

.new-customer-content {
    padding-left: 15px;
}

.new-customer-content h2 {
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: 700;
}

.new-customer-content span {
    display: block;
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 600;
}

.new-customer-content .optional-btn {
    margin-top: 5px;
}

/*================================================
Signup CSS
=================================================*/
.signup-content {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.signup-content h2 {
    margin-bottom: 25px;
    text-align: center;
    font-size: 25px;
    font-weight: 700;
}

.signup-content .signup-form .form-group {
    margin-bottom: 20px;
}

.signup-content .signup-form .form-group label {
    display: block;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

.signup-content .signup-form .form-group .form-control {
    height: 50px;
}

.signup-content .signup-form .default-btn {
    display: block;
    width: 100%;
    padding: 14px 25px;
}

.signup-content .signup-form .return-store {
    display: inline-block;
    margin-top: 15px;
    color: #777777;
    position: relative;
    font-size: 15px;
}

.signup-content .signup-form .return-store::before {
    width: 100%;
    height: 1.5px;
    background: #777777;
    bottom: 0;
    left: 0;
    position: absolute;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: '';
}

.signup-content .signup-form .return-store:hover {
    color: #002753;
}

.signup-content .signup-form .return-store:hover::before {
    width: 0;
}

/*================================================
My account CSS
=================================================*/

.user-info label {
    font-weight: bold;
}
.invoice-checkbox {
    padding-left: 10px;
}
.account {
    font-size: 16px;
    padding-bottom: 103px;
}
.user-info .btn { font-size: 16px; font-weight: bold;}
.account p {
    font-size: 16px;
}
.account-button {
    width: 100%;
    height: 50px;
    cursor: pointer;
}

.account-button i {
    font-size: 25px;
    width: 20%;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

.account-button .name {
    width: 80%;
    height: 50px;
    line-height: 50px;
    user-select: none;
}

.account-button .name,
.account-button i {
    float: left;
}

.account-button.active {
    background-color: #002753;
}

.account-button.active .name,
.account-button.active i {
    color: #ffffff;
}
.select2-dropdown--open .select2-dropdown{
    top: 200px;
    background-color: #fff;
}
.select2-container--bootstrap5 .select2-dropdown {
    background-color: #fff;
}
.select2-container--bootstrap5 .select2-dropdown .select2-search .select2-search__field {
    background-color: #f5f5f5;
    border: 1px solid #f5f5f5;
}
.discount-text{display:inline-block; font-size: 14px; float: left !important; min-width: 250px;}
/*.checkout-area .title { background-color: #27482b; color: #fff;}*/
.billing-details .shipping-data { height: 50px; }
.billing-details .shipping-data label { margin-right: 10px; }
.billing-details .shipping-data .form-checkbox { transform: scale(1.4); }
.order-table .product-name {width: 250px; }
.order-table tr,
.order-table th,
.order-table td {border: none }
.order-table tbody tr:last-child { border-bottom: 1px solid #eaedff;}
.order-table .product-subtotal {border-top: 1px solid #000;}
.order-table tbody tr:nth-child(odd){ background-color: #f5f5f5; }
.order-table thead tr th:last-child,
.order-table tbody tr td:last-child,
.order-table-2 tbody tr td:last-child { text-align: right; }
.order-table thead tr span { font-size: 12px; font-weight: lighter;}
/*.order-table-2 tbody tr.subtotal td { border-bottom: none;}*/
.order-table-2 tbody tr:last-child td { border-bottom: none;}
.order-table-2 tbody tr.shipping-cost td { padding: 0 0.5rem 0.5rem; }
.account-title { font-size: 20px;}
.account-title { font-size: 20px;}
.product-details table tr td:last-child { text-align: right; }
@media only screen and (max-width: 767px) {
    .ptb-100 {
        padding-top: 60px;
        padding-bottom: 50px;
    }

    .cart-table table thead tr th.product-quantity {
        padding-left: 10px;
    }

    .cart-blocks {display: grid; grid-template-columns: none; gap: 24px; align-items: start;}
}
