.title-page {
    font-size: 17px;
    font-weight: bold;
    color: var(--main);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}


.cart-table {
    width: 100%;
    overflow: auto;
  }
  
  .cart-table::-webkit-scrollbar {
    height: 7px;
  }
  
  .cart-table::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.15);
            box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.15);
  }
  
  .cart-table::-webkit-scrollbar-thumb {
    background-color: #ccc7c7;
  }
  
  .cart-table table {
    width: 100%;
    border-spacing: 0 20px;
    border-collapse: separate;
    margin-top: -20px;
  }
  
  .cart-table table thead th {
    background-color: var(--second);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 25px 30px;
    text-align: center;
    white-space: nowrap;

  }
  
  .cart-table table tbody tr td {
    background-color: transparent;
    color: #555555;
    font-size: 16px;
    font-weight: 400;
    padding: 25px 30px;
    text-align: center;
    border-bottom: 1px solid #e8e8e8;
  }
  
 /*  .cart-table table tbody tr:last-child td {
    border-bottom: none;
  }
   */
  .cart-table table td .main-btn {
    padding: 8px 25px;
    font-size: 14px;
    white-space: nowrap;
  }
  
  .cart-table table td.cancel a {
    color: #555555;
  }
  
  .cart-table table td.cancel a:hover {
    color: var(--main);
  }
  
  .cart-table-white table th {
    background-color: #fff;
  }
  
  .cart-table-white table td {
    background-color: #fff;
  }
  
  .cart-table-white .product-table-info {
    background-color: #f8f8f8;
  }
  .product-table-thumb {
    width: 110px;
    background-color: #fff;
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
  }
  .product-table-thumb img{
    max-width: 100%;
    height: auto;
  }
  
  .sub-section-title {
    margin-bottom: 26px;
}
.sub-section-title .sub-section-title-heading {
    font-size: 24px;
    margin-bottom: 15px;
}
.cart-details .cart-total-box {
    background-color: #F8F8F8;
    padding: 20px;
    margin-bottom: 30px;
}
.cart-total-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}
.cart-total-item h4 {
    font-size: 16px;
    margin-right: 10px;
    margin-bottom: 0;
    color: #10142D;
    font-weight: 600;
}
.cart-total-item p {
    font-size: 16px;
    margin-bottom: 0;
    color: #4F5AC2;
}
.cart-details .main-btn:last-child {
    margin-bottom: 0;
}
.cart-total-box-secondcolor .cart-total-item p {
    color: var(--main);
}

/* Empty state */
.empty-state {
    text-align: center;
}

.empty-state .empty-img {
    background-color: rgba(49, 153, 55, 0.25);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-state .empty-img i {
    color: var(--main);
    font-size: 53px;
}

.empty-state h3 {
    font-size: 20px;
    font-weight: normal;
    color: var(--main);
    margin: 20px 0;
    font-weight: 600;
}

.empty-state .btn {
    border-radius: 9.5px;
    height: 43px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}
.form-checkout{
    padding: 40px 0;
}
.form-checkout label{
    font-size: 13px;
}
.form-checkout .input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}
.form-checkout .title-form{
    font-size: 17px;
    font-weight: bold;
    color: var(--main);
    margin-bottom: 20px;
}
.form-checkout form .form-control{
    border:  1px solid #ced4da;
    background-color: #ffffff;
    border-radius: 5.5px;
    font-size: 15px;
    font-weight: normal;
}
.form-checkout form input.form-control{
    height: 39px;
}
.form-checkout form .form-control.invalid{
    background-color: rgb(239, 15, 15, .1);
    color: #ef0f0f;
}
.form-checkout form .form-control::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #d1d1d1;
}
.form-checkout form .form-control:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #d1d1d1;
   opacity:  1;
}
.form-checkout form .form-control::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #d1d1d1;
   opacity:  1;
}
.form-checkout form .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #d1d1d1;
}
.form-checkout form .form-control::-ms-input-placeholder { /* Microsoft Edge */
   color:    #d1d1d1;
}

.form-checkout form .form-control::placeholder { /* Most modern browsers support this now. */
   color:    #d1d1d1;
}
.form-checkout form .input-group-append{
    background-color: transparent;
    margin-left: 0;
}
.form-checkout form .input-group-text{
    background-color: rgb(49 153 55 / 0.15);
    border: none;
    color: var(--main);
    font-size: 20px;
    font-weight: bold;
}
.form-checkout form .custom-control-label{
    font-family: Cairo;
    font-size: 12px;
    font-style: normal;
    letter-spacing: normal;
    color: #9e9e9e;
}
.form-checkout form .custom-control-label span{
    color: #ef0f0f;
    font-weight: 600;
}

.form-checkout form .custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #007bff;
    background-color: var(--main);
}
.form-checkout form button[type=submit]{
    padding: 10px 0;
    font-size: 15px;
}

.btn-facebook{
    background-color: #4267b2;
    border-radius: 9.5px;
    padding: 10px 0;
    font-size: 15px;
    color: #fff;
}
.form-checkout .have-account{
    text-align: center;
}
.form-checkout .have-account a{
    font-size: 12px;
    font-weight: normal;
    color: #9e9e9e;
    display: block;
    margin-bottom: 10px;
}
.form-checkout .have-account a.login{
  font-weight: 600;
  color: var(--main);
}
.form-checkout .page-separator{
    position: relative;
    color: #868e96;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}
.form-checkout .page-separator:before {
    content: "";
    height: 1px;
    background-color: rgb(0 71 255 / 0.1);
    width: 100%;
    top: 50%;
    right: 0;
    position: absolute;
    z-index: -1;
}
.form-checkout .page-separator .page-separator__text {
    display: inline-flex;
    padding: 1rem 1rem;
    border-radius: .25rem;
    max-width: 90%;
    font-size: 13px;
    font-weight: 600;
    color: var(--main);
    background-color: #fff;
}
.blog-form{
    border-radius: 9.5px;
    border: solid 1px rgba(0, 71, 255, 0.15);
    padding: 20px;
}
.title-blog-form{
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
}
[dir=rtl] .custom-select-chosen .chosen-container{
    width: 100% !important;
    text-align: left;
}
[dir=ltr] .custom-select-chosen .chosen-container{
    width: 100% !important;
    text-align: right;
}
.custom-select-chosen .chosen-container-single .chosen-single{
    background-color: rgb(49 153 55 / 0.15);
    border-radius: 5.5px;
    font-size: 15px;
    font-weight: normal;
    border: none;
    width: 100%;
}

.orders_table_list .cart_item {
    border-radius: 9.5px;
    /* border:  1.2px solid rgba(0, 71, 255, 0.15); */
    background-color: #ffffff;
    padding: 12px;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.orders_table_list .cart_item .product-thumbnail {
    height: 69px;
    margin-right: 10px;
}

.orders_table_list .cart_item .product-thumbnail img {
    max-width: 100%;
    height: 100%;
}

.orders_table_list .cart_item .product-info {
    flex: 2;
}

.orders_table_list .cart_item .product-info .title {
    font-size: 17.5px;
    font-weight: 600;
    color: #9e9e9e;
    padding: 0;
}

.orders_table_list .cart_item .product-info .price {
    font-size: 17px;
    font-weight: 600;
    color: var(--main);
}

.orders_table_list .cart_item .product-remove .remove {
    font-size: 20px;
    font-weight: 600;
    color: #ef0f0f;
}
