/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */
@media (min-width: 768px) {
  #desktop_logo a img.logo {
    height: 70px;
    width: auto;
  }
}

/*Checkout*/
.inner-area .block-header {
    font-weight: 600;
    font-size: 24px;
    padding: 0;
}
.form-fields .form-group .has-float-label .form-control {
    border: solid 1px rgb(222,222,222);
    border-radius: 8px;
}
.has-float-label {
    position: relative;
    display: block;
    margin-bottom: 0;
}
.has-float-label .form-control {
    width: 100%;
    padding: 1.2rem 0.75rem 0.4rem;
    border: solid 1px rgb(222,222,222);
    border-radius: 8px;
    background-color: #fff;
}
.has-float-label .form-control:focus {
      outline: none;
    border-color: #0077cc;
}
.has-float-label .field-label {
    position: absolute;
    top: 1rem;
    left: 0.75rem;
    transition: 0.2s ease all;
    pointer-events: none;
    color: #707070;
    font-size: 16px;
}
.has-float-label .form-control:focus ~ .field-label,
.has-float-label .form-control:not(:placeholder-shown) ~ .field-label {
  top: 0.3rem;
  left: 0.75rem;
  font-size: 14px;
  color: #707070;
}
.has-float-label .form-control {
  color: #000;
  background-color: white;
}

.has-float-label .form-control::placeholder,
.has-float-label .form-control::-webkit-input-placeholder,
.has-float-label .form-control:-ms-input-placeholder {
  color: #333;
}
.has-float-label .error-msg {
    background: none;
    padding: 0;
    margin: 0;
    margin-left: 5px;
}
@media (min-width: 768px) {
    .form-fields .firstname {
        padding-right: 5px;
    }
    .form-fields .lastname {
        padding-left: 5px;
    }
    
}

.form-control::placeholder {
    text-align: center;
  line-height: normal; /* fallback */
}
.page-content .has-float-label select.form-control {
    padding-right: 1em;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.5em bottom 0.75em;
    background-size: auto;
    background-size: 9px 21px;
    padding-top: 0.8em;
}
.checkout-block {
    padding: 0 3px!important;
}
/*Checkbox*/
.custom-checkbox input[type="checkbox"] {
    position: absolute;
    margin-top: -1px;
    margin-left: -2px;
    opacity: 0;
    cursor: pointer;
    min-width: 16px;
    min-height: 16px;
}
.page-content .custom-checkbox input[type="checkbox"] + span {
    border-radius: 3px;
    border: 1px solid #36b4d2;
    transform: scale(1.4);
    margin: 10px;
}
#create_account > label:nth-child(1) > span:nth-child(1) > span:nth-child(2) {
    top: 10px;
}
.form-fields .checkbox {
    padding-left: 5px;
}
.second-address {
    padding-left: 5px!important;
}
.shipping-radio .custom-radio {
    margin-right: 0;
}
.delivery-option-row .shipping-radio {
    padding-right: calc(var(--bs-gutter-x)*0.1);
}
.delivery-option-row .delivery-option-label {
    padding-left: 0;
}
#js-delivery .form-fields {
    border: solid 1px rgb(222,222,222);
    border-radius: 10px;
}
.delivery-options .delivery-option-row {
    padding: 15px 10px;
}
.delivery-options .selected {
    border: solid 1px #000;
    border-top: solid 1px #000!important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.delivery-options .delivery-option-row:not(:first-child) {
  border-top: solid 1px rgb(222, 222, 222);
}

.delivery-options .delivery-option-row:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.delivery-options .delivery-option-row:nth-last-of-type(3) {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.carrier-price-with-tax-formatted {
    color: #000;
    font-size: 16px;
}
.payment-options {
    border: solid 1px rgb(222,222,222);
    border-radius: 10px;
}
.payment-options .tc-main-title {
    padding: 15px 10px;
}
.payment-options .tc-main-title:not(:first-child) {
  border-top: solid 1px rgb(222, 222, 222);
}
.payment-options .tc-main-title:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.payment-options .tc-main-title:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.payment-options .selected {
    border: solid 1px #000;
    border-top: solid 1px #000!important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
@media screen and (min-width: 767px) {
    #create_account > label:nth-child(1) > span:nth-child(1) > span:nth-child(2) {
    top: 2px;
}
}
/*Toggle checkout*/
.checkout-cart-hidden {
  display: none;
}

.checkout-cart-show {
  /* used in both desktop and mobile */
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@media screen and (min-width: 768px) {
  /* On desktop: always show the cart */
  .cart-overview {
    display: block !important;
  }

  .checkout-cart-toggle-btn {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .checkout-cart-toggle-btn {
    display: inline-block;
    cursor: pointer;
    user-select: none;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.toggle-icon {
  margin-left: 5px;
  font-weight: bold;
}
.checkout-area-5 {
    padding-top: 10px;
    padding-left: 35px;
    padding-right: 35px;
}
.checkout-area-6 {
    padding-top: 10px;
    padding-left: 35px;
    padding-right: 35px;
}
/*Cart Summary*/
.summary-customization .customization-details .product-customization-line .customization-label {
    display: block;
}
.summary-customization .customization-details .product-customization-line .customization-value {
    font-size: 14px;
}
.qty-overlay-badge {
  position: absolute;
  top: 5px;
  right: 0px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.product-line-image {
  position: relative;
}
.product-line-desc .product-title .label {
    font-size: 16px!important;
    font-weight: 600;
}
.product-line-actions .product-line-price .product-price {
    color: #000;
    font-size: 18px;
}
.checkout-cart-cont .cart-items{
    margin-bottom: 0.5rem;
}
.checkout-edit-cart {
    text-align: right;
}
.btn-edit-cart-check {
    background-color: #e53935;
    border: 1px solid #e53935;
    border-radius: 4px;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 15px;
}
.btn-edit-cart-check:hover {
    background-color: rgb(0, 0, 0, 0);
    border: 1px solid #000;
    color: #000;
}
@media screen and (max-width: 767px) {
  .product-line-body .product-line-desc .product-price {
      display: none;
  }
  .cart-summary .cart-detailed-totals .cart-total-auto-tax {
    font-size: 1.1rem;
}
}
.cart-detailed-totals .block-promo .cart-voucher a {
    width: 100%;
}

.cart-summary .cart-detailed-totals .card-block {
    padding: 15px 0px 0px 0px;
}
#confirm_order {
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 40px;
    width: 100%;
}
#footer-copyrights .container .row .copyright-txt p {
    color: #777;
}

/*Blog*/

.simpleblog__listing__post__wrapper__content.card-block a {
    font-size: 16px;
}

/*Quantity Discounts*/
.collapse-wrapper {
  transition: height 0.4s ease;
}
.transition-icon {
  transition: transform 0.3s ease;
}
.collapse-wrapper.open ~ .product-discounts-toggle .transition-icon,
.product-discounts-toggle.open .transition-icon {
  transform: rotate(180deg);
}
.toggle-discounts-link {
  color: #333;
  text-decoration: none;
  cursor: pointer;
  font-weight: 500;
}
.toggle-discounts-link span {
    text-decoration: underline;
}
.toggle-discounts-link span:hover {
    text-decoration: none;
}
.toggle-discounts-link:hover {
  color: #555;
}
.toggle-discounts-link i {
  font-size: 1.1em;
}
.product-discounts-toggle {
    font-size: 16px;
}
.list-unstyled {
    padding-left: 0!important;
    list-style: none!important;
}
.product-description small {
  font-size: 1rem;
}

.product-description i.fa {
  color: #0b443b!important;
}
.product-description .row-cust {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.p-desc-cust {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}
.li-cus {
    font-size: 1.1rem;
}

@media screen and (max-width: 767px) {
    .rte-content .product-trust-badges ul {
        font-size: 16px;
        line-height: 2rem;
    }
    .product-info-row {
        margin-bottom: 0;
        margin-top: 0;
    }
    #main-product-wrapper > div.tabs.product-tabs {
        margin-bottom: 0;
        margin-top: 0;
    }
    .ikone-desc i {
        margin-top: auto;
        margin-bottom: auto;
        margin-right: 8px;
    }
    
}
.add-to-cart:disabled {
    opacity: 0.4!important;
}
.cart-detailed-totals .card-block .cart-summary-line span {
    font-size: 15px!important;
}
