  /* Login Page Css */
  @import url('https://fonts.googleapis.com/css2?family=Rubik:wght@600&display=swap');

*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
}

.form-container{
    width: 100%;
    height: 100vh;
    display: flex;
}

.image-part{
    width: 50%;
    position: relative;
    border-right: 1px solid rgb(177, 170, 170);
}

.image-part>img{
    position: absolute;
    top: 51%;
    left: 44%;
    transform: translate(-50%,-50%);
    width: 26%;
}

.form-part{
    width: 50%;
    position: relative;
    background:linear-gradient(to right,rgb(41, 0, 128),rgb(111, 95, 214));
}

.form{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    padding:35px 20px;
    border: 1px solid grey;
    border-radius: 20px;
    max-height: 800px;
    width: 450px;
    background:white;
}

.form>p{
    font-family: 'Rubik', sans-serif;
    color: black;
}

.form-field{
   display: flex;
   flex-direction: column;
   width: 80%;
   margin: auto;
   
}

.form-field>label{
    margin-top:10px;
    font-family: 'Rubik', sans-serif;
    color: #2b2b2b;
    font-weight: 600;
    font-size: 12px;
}

label>span{
    color: red;
}
 
.psd-field>label{
    margin-top:10px;
    font-family: 'Rubik', sans-serif;
    color: #2b2b2b;
    font-weight: 600;
    font-size: 12px;
}

.psd-field+p{
    width: 80%;
    text-align:left;
    margin: auto;
    color:#2a35cf;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
}

.input-field{
    display: flex;
    align-items: center;
}


input{
    margin-top: 5px;
    height: 35px;
    padding: 5px;
    border: 1px solid #c4bdbd;
   border-radius: 5px;
    font-size: 12px;
   color: grey;
}



.form-btn {

    background:linear-gradient(to right,rgb(41, 0, 128),rgb(137, 122, 237));
    color: white;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 140px;
    margin:5px auto;
    border: 1px solid grey;
    cursor: pointer;
    font-family: 'Rubik', sans-serif;
    border-radius: 5px;
}

.form-btn:hover{
    color: #2a35cf;
    background: white;
}

.form-btn+p{
    width: 80%;
    text-align: center;
    margin: auto;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 12px;
}

.form-btn+p>a{
    color:#2a35cf;
    cursor: pointer;
}
.form-part a{
    text-decoration: none;
}
.form-part a span { 
    text-decoration: none;
    color: #000;
    font-weight: bold;
}
.cstm_resend{
        width: 80%;
    text-align: center;
    margin: auto;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 12px;
}

@media only screen and (max-width:992px) {
    .image-part{
        display: none;
    }

    .form-part{
        width: 100%;
    }
}

@media only screen and (max-width:500px) {
    .form{
        gap: 15px;
        padding: 13px 0px;
        width: 300px;
    }

    .form-btn{
        padding: 10px 97px;
    }

}

body {
    font-family: "Rubik", sans-serif !important;
  }
  
  @font-face {
    font-family: "fonttype1";
    src: url("/font/MarlinGeo-ExtraBold.ttf");
    /* Add additional formats if needed */
  }
  
  .top-header {
    background-color: #3e688e;
    padding-top: 0;
  }
  .cupan {
    padding: 2px 31px;
    font-size: 12px;
  }
  .form_check_checkout {
      align-items: center;
      display: flex;
      justify-content: end;
  }
  
  
  #closeButton i.fa-solid.fa-x {
    font-size: 8px !important;
  }
  #header-ul li {
    margin: 0 8px;
    font-size: 13px;
    position: relative;
  }
  #header-ul a.nav-link::before {
    content: "";
    position: absolute;
    width: 0;
    background-color: #509abd;
    height: 1px;
    transition: width 0.3s ease-in-out;
    top: 36px;
    left: 2px;
  }
  #header-ul a.nav-link:hover::before {
    width: 80%;
    transform: translateX(0);
  }
  #header-ul li a {
    color: #01316b;
    font-weight: 600;
  }
  #header-ul li a:hover {
    color: #01b7de;
  }
  
  .wrapper,
  .wrapper * {
    display: flex;
  }
  
  .wrapper {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .card-fist {
    width: 220px;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px 5px rgba(128, 128, 128, 0.3);
    padding: 25px;
    position: relative;
    align-items: center;
    margin: 0 10px 20px;
    transform: rotate(0deg);
    transform-origin: 50% 50%;
    transition: all 0.25s;
  }
  
  .card-fist:hover {
    transform: rotate(5deg);
  }
  
  .icon {
    position: absolute;
    width: 20px;
    fill: #eee;
    top: 25px;
    transition: all 0.25s;
    cursor: pointer;
  }
  
  .icon-like {
    left: 25px;
  }
  ul.dropdown-menu {
    margin: 2px 0;
  }
  ul.dropdown-menu li a.dropdown-item {
    padding: 10px 7px;
    font-size: 13px;
  }
  .dropdown-item.active,
  .dropdown-item:active {
    background-color: #01b7e0 !important;
    color: white !important;
  }
  
  .icon-like.selected {
    fill: red;
  }
  
  .icon-bookmark {
    right: 25px;
  }
  
  .icon-bookmark.selected {
    fill: #fbda61;
  }
  .dropdown:hover > .dropdown-menu {
    display: block;
  }
  
  .dropdown > .dropdown-toggle:active {
    /*Without this, clicking will make it sticky*/
    pointer-events: none;
  }
  
  .person_img {
    margin-top: 15px;
    margin-bottom: 5px;
  }
  
  .person_name {
    font-size: 15px;
    font-weight: 600;
    color: #444;
    letter-spacing: 1px;
    margin-bottom: 7px;
    text-align: center;
    font-family: "Jost", sans-serif;
  }
  .short {
    font-size: 11px;
    color: gray;
  }
  .heading {
    font-family: inherit;
    font-size: 23px;
    color: #012e70;
  }
  .service {
    padding: 17px 0px 0 0;
    margin-bottom: 0px !important;
  }
  .hover-item {
    overflow: hidden;
  }
  
  .hover-item:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
  } 
  .hover-item img {
    width: 100%;
    z-index: -1;
    margin: auto;
    transform: scale(1);
    transition: all ease-in-out 0.5s;
  }
  h6.card-title.text-center.categry {
    color: gray;
    font-size: 13px;
  }
  #before {
    content: "";
    position: absolute;
    /* top: 21px; */
    background-color: #cdcdcd;
    width: 100%;
    z-index: 35;
    height: 1px;
  }
  #before h4 {
    color: #454545;
  }
  ul.dropdown-menu li {
    padding: 0 0 0 0;
    /* margin: 0 -15px 0 0; */
  }
  ul.dropdown-menu.dropdown-menu-end.login-drop.show {
    padding: 5px 5px;
  }
  ul.dropdown-menu.dropdown-menu-end.login-drop.show:hover {
    color: #01b7de !important;
  }
  .time {
    font-size: 10px;
    padding: 16px 0 0 0;
    color: #145a9c;
  }
  .title {
    margin-bottom: 0px;
    font-size: 11px;
    padding: 13px 0 0 0;
    font-weight: bold;
  }
  .old-price {
    text-decoration: line-through;
    color: #96989c;
    font-weight: 400;
    margin-right: 5px;
    font-size: 11px;
  }
  .new-price {
    font-weight: bold;
    font-size: 13px;
  }
  .offer {
    font-size: 10px;
    padding: 5px 0 0 19px;
    color: #76b788;
    margin-bottom: 7px;
  }
  
  button.btn.btn-warning.animation {
    background-color: #01316b;
    color: white;
    border: none;
    padding: 11px 18px;
    border-radius: 0;
    font-size: 10px;
  }
  button.btn.btn-warning.animation:hover {
    background-color: #02b8df;
  }
  .animate-btx-home {
    border: 1px solid #01b7de !important;
  }
  
  .side-set {
    font-size: 9px;
    padding: 7px 0 0 0;
    color: #a2a2a2;
  }
  .animate-btx {
    border: none;
    display: block;
    position: relative;
    padding: 3px 20px;
    font-size: 13px;
    background: transparent;
    cursor: pointer;
    user-select: none;
    overflow: hidden;
    color: #01316b;
    z-index: 1;
    font-family: inherit;
    font-weight: 500;
  }
  
  .animate-btx span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    border: 1px solid #01b7de;
  }
  
  .animate-btx span::before {
    content: "";
    display: block;
    position: absolute;
    width: 8%;
    height: 500%;
    background: var(--lightgray);
    top: 0%;
    left: 0%;
    transition: all 0.3s ease-in-out;
  }
  
  .animate-btx:hover span::before {
    transform: translateX(0);
    width: 100%;
    background: #01b7de;
  }
  
  .animate-btx:hover {
    color: #000;
  }
  
  .animate-btx:active span::before {
    background: #509abd;
  }
  .CoolCare li {
    padding: 3px 0px;
  }
  ::marker {
    color: #898989;
  }
  
  #section1 {
    position: sticky;
    top: 0px;
    z-index: 999;
    background: white;
    padding: 17px 0;
    box-shadow: 0px 0px 14px 3px rgba(0,0,0,0.52);
  }
  #section2 {
    position: sticky;
    top: 136px;
    z-index: 999;
    background: white;
  }
  .product-left-img img {
    width: 100%;
  }
  
  .select-box select,
  input {
    width: 80%;
  } 
  
  #myTabs .nav-link.active,
  #myTabs .show > .nav-link {
    background-color: #01b7e0;
    /* Change this to your desired color */
    color: #fff;
    /* Change this to your desired text color */
  }
  
  .nav-link {
    color: #000;
  }
  
  .product-quantity-btns button {
    border-radius: 5px;
    font-size: 13px !important;
  }
  
  .cart-count {
      background: #000;
      color: #fff;
      width: 18px;
      text-align: center;
      border-radius: 50%;
      font-size: 10px;
      position: relative;
      top: -8px;
      left: -12px;
      line-height: 18px;
  }
  
  /* -----------------------------form-------------------------------------------------------------------- */
  .form-container {
    display: flex;
    flex-direction: row;
  }
  .card-header.change-one {
    border: none;
    background: transparent;
    /* text-align: center; */
    margin-bottom: 18px;
    position: relative;
  }
  .card-header.change-one h3 {
    color: #01316b;
  }
  .card-header.change-one::before {
    content: "";
    position: absolute;
    width: 93%;
    background-color: #dbdbdb;
    height: 1px;
    top: 58px;
  }
  
  h3.text-center.mt-5.mb-5.before::before {
    content: "";
    position: absolute;
    width: 12%;
    background-color: #509abd;
    height: 1px;
    top: 52px;
    margin-left: 27px;
  }
  .footer {
    margin-top: 48px;
    background: #26292e;
    padding: 82px 0px 0 0;
  }
  
  .hover-funtion {
    position: relative;
  }
  
  .hover-funtion img {
    position: absolute;
    transition: opacity 1s ease-in-out;
  }
  
  .hover-funtion img.image-front:hover {
    opacity: 0;
    cursor: pointer;
  }
  #social-media li {
    padding-right: 9px;
  }
  #social-media li i.fa-brands.fa-facebook-f {
    background-color: #012f6f;
    padding: 11px 13px;
    border-radius: 20px;
    font-size: 9px;
  }
  #social-media li i.fa-solid.fa-x {
    background-color: #1aaed9;
    padding: 10px 11px;
    border-radius: 20px;
    font-size: 9px;
  }
  #social-media li i.fa-brands.fa-instagram {
    background-color: #d43838;
    padding: 10px 11px;
    border-radius: 20px;
    font-size: 9px;
  }
  #social-media li i.fa-brands.fa-linkedin {
    background-color: #3c5b9b;
    padding: 10px 11px;
    border-radius: 20px;
    font-size: 9px;
  }
  
  /* -----------------------------whats ap button-------------------------------------------------------------------- */
  .cbh-phone {
    display: block;
    position: fixed;
    left: -50px;
    bottom: -55px;
    visibility: hidden;
    background-color: transparent;
    width: 200px;
    height: 200px;
    cursor: pointer;
    z-index: 999;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -webkit-transition: visibility 0.5s;
    -moz-transition: visibility 0.5s;
    -o-transition: visibility 0.5s;
    transition: visibility 0.5s;
  }
  .cbh-phone.cbh-show {
    visibility: visible;
  }
  @-webkit-keyframes fadeInRight {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(100%, 0, 0);
      transform: translate3d(100%, 0, 0);
    }
    100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  @keyframes fadeInRight {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(100%, 0, 0);
      -ms-transform: translate3d(100%, 0, 0);
      transform: translate3d(100%, 0, 0);
    }
    100% {
      opacity: 1;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
    }
  }
  @-webkit-keyframes fadeInRightBig {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(2000px, 0, 0);
      transform: translate3d(2000px, 0, 0);
    }
    100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  @-webkit-keyframes fadeOutRight {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      -webkit-transform: translate3d(100%, 0, 0);
      transform: translate3d(100%, 0, 0);
    }
  }
  @keyframes fadeOutRight {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      -webkit-transform: translate3d(100%, 0, 0);
      -ms-transform: translate3d(100%, 0, 0);
      transform: translate3d(100%, 0, 0);
    }
  }
  .fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
  }
  .cbh-phone.cbh-static1 {
    opacity: 0.6;
  }
  .cbh-phone.cbh-hover1 {
    opacity: 1;
  }
  .cbh-ph-circle {
    width: 110px;
    height: 110px;
    top: 40px;
    left: 40px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(30, 30, 30, 0.4);
    opacity: 0.1;
    -webkit-animation: cbh-circle-anim 1.2s infinite ease-in-out;
    -moz-animation: cbh-circle-anim 1.2s infinite ease-in-out;
    -ms-animation: cbh-circle-anim 1.2s infinite ease-in-out;
    -o-animation: cbh-circle-anim 1.2s infinite ease-in-out;
    animation: cbh-circle-anim 1.2s infinite ease-in-out;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  .cbh-phone.cbh-active .cbh-ph-circle1 {
    -webkit-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
    -moz-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
    -ms-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
    -o-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
    animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
  }
  .cbh-phone.cbh-static .cbh-ph-circle {
    -webkit-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
    -moz-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
    -ms-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
    -o-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
    animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
  }
  .cbh-phone.cbh-hover .cbh-ph-circle {
    border-color: rgba(0, 175, 242, 1);
    opacity: 0.5;
  }
  .cbh-phone.cbh-green.cbh-hover .cbh-ph-circle {
    border-color: rgba(117, 235, 80, 1);
    opacity: 0.5;
  }
  .cbh-phone.cbh-green .cbh-ph-circle {
    border-color: rgba(0, 175, 242, 1);
    opacity: 0.5;
  }
  .cbh-phone.cbh-gray.cbh-hover .cbh-ph-circle {
    border-color: rgba(204, 204, 204, 1);
    opacity: 0.5;
  }
  .cbh-phone.cbh-gray .cbh-ph-circle {
    border-color: rgba(117, 235, 80, 1);
    opacity: 0.5;
  }
  .cbh-ph-circle-fill {
    width: 74px;
    height: 74px;
    top: 58px;
    left: 58px;
    position: absolute;
    background-color: #000;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: 0.1;
    -webkit-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
    -moz-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
    -ms-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
    -o-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
    animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  .cbh-phone.cbh-active .cbh-ph-circle-fill {
    -webkit-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
    -moz-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
    -ms-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
    -o-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
    animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
  }
  .cbh-phone.cbh-static .cbh-ph-circle-fill {
    -webkit-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
    -moz-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
    -ms-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
    -o-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
    animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
    opacity: 0 !important;
  }
  .cbh-phone.cbh-hover .cbh-ph-circle-fill {
    background-color: rgba(0, 175, 242, 0.5);
    opacity: 0.75 !important;
  }
  .cbh-phone.cbh-green.cbh-hover .cbh-ph-circle-fill {
    background-color: rgba(117, 235, 80, 0.5);
    opacity: 0.75 !important;
  }
  .cbh-phone.cbh-green .cbh-ph-circle-fill {
    background-color: rgba(0, 175, 242, 0.5);
    opacity: 0.75 !important;
  }
  .cbh-phone.cbh-gray.cbh-hover .cbh-ph-circle-fill {
    background-color: rgba(204, 204, 204, 0.5);
    opacity: 0.75 !important;
  }
  .cbh-phone.cbh-gray .cbh-ph-circle-fill {
    background-color: rgba(117, 235, 80, 0.5);
    opacity: 1 !important;
  }
  .cbh-ph-img-circle1 {
    width: 50px;
    height: 50px;
    top: 70px;
    left: 70px;
    position: absolute;
    /* background-image: url(https://360imagem.com/google/images/wpp-icon.png); */
    background-size: 40px 40px;
    background-color: rgba(30, 30, 30, 0.1);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: 1;
    -webkit-animation: cbh-circle-img-anim 1s infinite ease-in-out;
    -moz-animation: cbh-circle-img-anim 1s infinite ease-in-out;
    -ms-animation: cbh-circle-img-anim 1s infinite ease-in-out;
    -o-animation: cbh-circle-img-anim 1s infinite ease-in-out;
    animation: cbh-circle-img-anim 1s infinite ease-in-out;
  }
  .cbh-phone.cbh-active .cbh-ph-img-circle1 {
    -webkit-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
    -moz-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
    -ms-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
    -o-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
    animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
  }
  .cbh-phone.cbh-static .cbh-ph-img-circle1 {
    -webkit-animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
    -moz-animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
    -ms-animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
    -o-animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
    animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
  }
  .cbh-phone.cbh-hover .cbh-ph-img-circle1 {
    background-color: rgba(0, 175, 242, 1);
  }
  .cbh-phone.cbh-green.cbh-hover .cbh-ph-img-circle1:hover {
    background-color: rgba(117, 235, 80, 1);
  }
  .cbh-phone.cbh-green .cbh-ph-img-circle1 {
    background-color: rgba(0, 175, 242, 1);
  }
  .cbh-phone.cbh-green .cbh-ph-img-circle1 {
    background-color: rgba(0, 175, 242, 1);
  }
  .cbh-phone.cbh-gray.cbh-hover .cbh-ph-img-circle1 {
    background-color: rgba(204, 204, 204, 1);
  }
  .cbh-phone.cbh-gray .cbh-ph-img-circle1 {
    background-color: rgba(117, 235, 80, 1);
  }
  @-moz-keyframes cbh-circle-anim {
    0% {
      -moz-transform: rotate(0deg) scale(0.5) skew(1deg);
      opacity: 0.1;
      -moz-opacity: 0.1;
      -webkit-opacity: 0.1;
      -o-opacity: 0.1;
    }
    30% {
      -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
      opacity: 0.5;
      -moz-opacity: 0.5;
      -webkit-opacity: 0.5;
      -o-opacity: 0.5;
    }
    100% {
      -moz-transform: rotate(0deg) scale(1) skew(1deg);
      opacity: 0.6;
      -moz-opacity: 0.6;
      -webkit-opacity: 0.6;
      -o-opacity: 0.1;
    }
  }
  @-webkit-keyframes cbh-circle-anim {
    0% {
      -webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
      -webkit-opacity: 0.1;
    }
    30% {
      -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
      -webkit-opacity: 0.5;
    }
    100% {
      -webkit-transform: rotate(0deg) scale(1) skew(1deg);
      -webkit-opacity: 0.1;
    }
  }
  @-o-keyframes cbh-circle-anim {
    0% {
      -o-transform: rotate(0deg) kscale(0.5) skew(1deg);
      -o-opacity: 0.1;
    }
    30% {
      -o-transform: rotate(0deg) scale(0.7) skew(1deg);
      -o-opacity: 0.5;
    }
    100% {
      -o-transform: rotate(0deg) scale(1) skew(1deg);
      -o-opacity: 0.1;
    }
  }
  @keyframes cbh-circle-anim {
    0% {
      transform: rotate(0deg) scale(0.5) skew(1deg);
      opacity: 0.1;
    }
    30% {
      transform: rotate(0deg) scale(0.7) skew(1deg);
      opacity: 0.5;
    }
    100% {
      transform: rotate(0deg) scale(1) skew(1deg);
      opacity: 0.1;
    }
  }
  @-moz-keyframes cbh-circle-fill-anim {
    0% {
      -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
      opacity: 0.2;
    }
    50% {
      -moz-transform: rotate(0deg) -moz-scale(1) skew(1deg);
      opacity: 0.2;
    }
    100% {
      -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
      opacity: 0.2;
    }
  }
  @-webkit-keyframes cbh-circle-fill-anim {
    0% {
      -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
      opacity: 0.2;
    }
    50% {
      -webkit-transform: rotate(0deg) scale(1) skew(1deg);
      opacity: 0.2;
    }
    100% {
      -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
      opacity: 0.2;
    }
  }
  @-o-keyframes cbh-circle-fill-anim {
    0% {
      -o-transform: rotate(0deg) scale(0.7) skew(1deg);
      opacity: 0.2;
    }
    50% {
      -o-transform: rotate(0deg) scale(1) skew(1deg);
      opacity: 0.2;
    }
    100% {
      -o-transform: rotate(0deg) scale(0.7) skew(1deg);
      opacity: 0.2;
    }
  }
  @keyframes cbh-circle-fill-anim {
    0% {
      transform: rotate(0deg) scale(0.7) skew(1deg);
      opacity: 0.2;
    }
    50% {
      transform: rotate(0deg) scale(1) skew(1deg);
      opacity: 0.2;
    }
    100% {
      transform: rotate(0deg) scale(0.7) skew(1deg);
      opacity: 0.2;
    }
  }
  @keyframes cbh-circle-img-anim {
    0% {
      transform: rotate(0deg) scale(1) skew(1deg);
    }
    10% {
      transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
      transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
      transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
      transform: rotate(25deg) scale(1) skew(1deg);
    }
    100%,
    50% {
      transform: rotate(0deg) scale(1) skew(1deg);
    }
  }
  @-moz-keyframes cbh-circle-img-anim {
    0% {
      transform: rotate(0deg) scale(1) skew(1deg);
    }
    10% {
      -moz-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
      -moz-transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
      -moz-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
      -moz-transform: rotate(25deg) scale(1) skew(1deg);
    }
    100%,
    50% {
      -moz-transform: rotate(0deg) scale(1) skew(1deg);
    }
  }
  @-webkit-keyframes cbh-circle-img-anim {
    0% {
      -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    }
    10% {
      -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
      -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
      -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
      -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }
    100%,
    50% {
      -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    }
  }
  @-o-keyframes cbh-circle-img-anim {
    0% {
      -o-transform: rotate(0deg) scale(1) skew(1deg);
    }
    10% {
      -o-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
      -o-transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
      -o-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
      -o-transform: rotate(25deg) scale(1) skew(1deg);
    }
    100%,
    50% {
      -o-transform: rotate(0deg) scale(1) skew(1deg);
    }
  }
  .cbh-ph-img-circle1 {
  }
  .cbh-phone.cbh-green .cbh-ph-circle {
    border-color: rgb(0, 242, 164);
  }
  .cbh-phone.cbh-green .cbh-ph-circle-fill {
    background-color: rgb(0, 242, 164);
  }
  .cbh-phone.cbh-green .cbh-ph-img-circle1 {
    background-color: rgb(46, 203, 113);
  }
  
  .kmacb__manager-border {
    position: absolute;
    width: 75px;
    height: 75px;
    top: 50%;
    left: 50%;
    margin-top: -39.5px;
    margin-left: -39.5px;
    border-radius: 100%;
    border: 2px solid #ffe787;
    -webkit-animation: kmacb__manager-border-anim 1.5s ease-in-out 0.5s infinite;
    -moz-animation: kmacb__manager-border-anim 1.5s ease-in-out 0.5s infinite;
    -ms-animation: kmacb__manager-border-anim 1.5s ease-in-out 0.5s infinite;
    -o-animation: kmacb__manager-border-anim 1.5s ease-in-out 0.5s infinite;
    animation: kmacb__manager-border-anim 1.5s ease-in-out 0.5s infinite;
    opacity: 0.8;
    transform-origin: center;
  }
  .kmacb__manager-fill {
    background: #52aff7 center bottom no-repeat;
    position: absolute;
    width: 75px;
    height: 75px;
    top: 50%;
    left: 50%;
    margin-top: -37.5px;
    margin-left: -37.5px;
    border-radius: 100%;
    opacity: 0.5;
    -webkit-animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
    -moz-animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
    -ms-animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
    -o-animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
    animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
    transform-origin: center;
  }
  .kmacb__manager-circle {
    background: #52aff7;
    position: absolute;
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    margin-left: -60px;
    border-radius: 100%;
  }
  #brand-slider img {
    border: 1px solid #dddddd;
  }
  /* -----------------------------whats ap button-------------------------------------------------------------------- */
  /* -----------------------------index css end-------------------------------------------------------------------- */
  /* -----------------------------media quarry-------------------------------------------------------------------- */
  @media only screen and (max-width: 600px) {
    div#closeButton {
      width: 100%;
      margin-top: -21px;
    }
    p.text-end.text-white.fw-bold.pb-0.Offer.mb-0.cupan {
      text-align: center !important;
      font-size: 9px !important;
    }
    .top-icon {
      cursor: pointer;
      padding: 0 0px !important;
      display: inline-flex;
      font-size: 10px;
    }
  
    #media-logo img {
      width: 91% !important;
      margin-top: 14px !important;
    }
    button.navbar-toggler {
      width: auto;
    }
    #section1 {
      display: flex;
    }
    .service {
      padding: 17px 0px 0 0;
      margin-bottom: 18px !important;
    }
    #before h4 {
      font-size: 13px !important;
    }
    #media-product {
      display: contents;
    }
    .card.hover-item {
      margin-bottom: 42px;
    }
    .CoolCare li {
      padding: 3px 0px;
      font-size: 11px;
    }
    .card-header.change-one {
      margin: 25px auto !important;
    }
    h3.text-center.mt-5.mb-5.before::before {
      content: "";
      position: absolute;
      width: 39%;
      background-color: #509abd;
      height: 1px;
      top: 52px;
      margin-left: 15px !important;
    }
    #brand-slider img {
      border: none;
    }
    div#brand-slider {
      border: 1px solid #dddbdb;
    }
  }
  /* -----------------------------media quarry end-------------------------------------------------------------------- */
  /* -----------------------------contect page css start-------------------------------------------------------------------- */
  .breadcrumb li a {
    color: #91959b;
    font-size: 14px;
    text-decoration: none;
  }
  .breadcrumb li a:hover {
    color: #01b7e0 !important;
    font-size: 14px;
    text-decoration: none;
  }
  .responsive-map {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
  }
  .responsive-map iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
  }
  
  /* -----------------------------contect page css end-------------------------------------------------------------------- */
  /* -----------------------------term end condition-------------------------------------------------------------------- */
  .term-condition-ul a li {
    font-size: 12px;
  }
  .term-condition-ul li:hover {
    padding: 2px;
    color: #002c6f;
  }
  .custom-text-color {
    color: #002c6f;
  }
  .p-tag p {
    font-size: 13px;
  }
  .p-tag li {
    font-size: 11px;
  }
  #banner-image {
    background-image: url("../images/man-using-digital-tablet-psd-mockup-smart-technology.jpg");
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .breadcrumb-item + .breadcrumb-item::before {
    color: white !important;
  }
  /* -----------------------------term end condition end-------------------------------------------------------------------- */
  /* -----------------------------leptop on rent-------------------------------------------------------------------- */
  .img_producto_container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
  }
  .img_producto {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: transform 0.5s ease-out;
  }
  .rent-now {
    position: relative;
    margin: auto;
    padding: 12px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
  }
  
  .rent-now:before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    display: block;
    border-radius: 50px;
    background: #01b6dc;
    width: 34px;
    height: 34px;
    transition: all 0.3s ease;
  }
  
  .rent-now span {
    position: relative;
    font-family: "Ubuntu", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #234567;
  }
  
  .rent-now svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #234567;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
  }
  
  .rent-now:hover:before {
    width: 100%;
    background: #01b6dc;
  }
  
  .rent-now:hover svg {
    transform: translateX(0);
  }
  
  .rent-now:active {
    transform: scale(0.95);
    color: white !important;
  }
  /* -----------------------------leptop on rent end-------------------------------------------------------------------- */
  /* -----------------------------sigle product page css-------------------------------------------------------------------- */
  
  .product-left-img img {
    width: 100%;
  }
  
  .select-box select,
  input {
    width: 100%;
    padding: 4px;
  }
  
  #myTabs .nav-link.active,
  #myTabs .show > .nav-link {
    background-color: #01b7e0;
    /* Change this to your desired color */
    color: #fff;
    /* Change this to your desired text color */
  }
  
  .nav-link {
    color: #000;
  }
  /* -----------------------------sigle product page css end-------------------------------------------------------------------- */
  /* -----------------------------Laptop on rent gurgaon-------------------------------------------------------------------- */
  .normal-banner {
    background-image: url("../images/man-using-digital-tablet-psd-mockup-smart-technology.jpg");
    height: 10vh;
    background-size: cover;
  }
  #back-top {
    display: inline-block;
    background-color: #01316b;
    width: 37px;
    height: 32px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition:
      background-color 0.3s,
      opacity 0.5s,
      visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
  }
  #back-top::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1em;
    line-height: 35px;
    color: #fff;
  }
  #back-top:hover {
    cursor: pointer;
    background-color: #02b8df;
  }
  #back-top:active {
    background-color: #02b8df;
  }
  #back-top.show {
    opacity: 1;
    visibility: visible;
  }
  
  /* --------------------------     dahboard css start    --------------------------------------------------*/
  section.dahboard-wrapper {
    margin-top: 80px;
  }
  .all-product-dashboard {
    margin: 50px 0;
  }
  .profile-pic,
  .circle img {
    width: 100%;
  }
  
  .identity {
    text-align: center;
  }
  
  .sidebar-menu ul li {
    list-style: none;
  }
  
  .sidebar-menu ul {
    padding-left: 0;
  }
  
  .sidebar-menu ul li a {
    text-decoration: none;
    color: #000;
  }
  
  .sidebar-menu ul li {
    padding: 15px 0px;
    cursor: pointer;
  }
  
  .sidebar-menu ul li a i {
    margin: 0 15px;
  }
  
  .sidebar-menu .active {
    background-color: #509abd;
  }
  
  .sidebar-menu .active a {
    color: #fff;
  }
  
  .sidebar-menu {
    padding: 10px;
  }
  
  .recent-products img {
    width: 100%;
  }
  
  .recent-products {
    display: flex;
    align-items: center;
  }
  
  .recent-products a {
    text-decoration: none;
  }
  .recent-products a p {
    font-size: 12px;
    margin-bottom: 0;
    color: #000;
  }
  
  .recent-products span {
    font-size: 11px;
    font-weight: bold;
  }
  
  .dashboard-content {
    background-color: #509abd;
    padding: 30px;
    color: #fff;
    border-radius: 14px;
  }
  
  .account .account-name {
    font-size: 15px;
    text-align: center;
    font-weight: bold;
  }
  
  .account .account-balance {
    font-size: 24px;
    text-align: center;
    font-weight: bolder;
  }
  
  .my-order-detail {
    margin: 26px 0;
    padding: 14px;
    background-color: #edf2f7 !important;
  }
  
  .recent-products-img {
      width: 60px;
      height: 60px;
      justify-content: center;
      display: flex;
      align-items: center;
  }
  
  .recent {
    padding: 20px;
  }
  
  .recent-products-wrapper {
    flex-wrap: wrap;
    overflow-y: auto;
    max-height: 295px;
  }
  
  .my-order-detail-quantity {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
  }
  
  .my-order-detail-name {
    font-size: 12px;
    font-weight: bold;
  }
  
  .add img {
    width: 100%;
  }
  
  .address-default {
    padding: 20px;
  }
  
  .address-default p {
    margin-bottom: 0px;
  }
  
  .all-product-dashboard {
    margin-top: 50px !important;
  }
  .dashboard-heading h3{
    font-size: 24px;
  }
  /* ---------------------------- dashboard css end ---------------------------------------- */
  
  /* ----------------------------------------- edit profile start ------------------------------------- */
  
  .middle .form-about {
    font-size: 13px;
  }
  
  .middle .form-field {
    margin: 8px 0;
  }
  
  .form-field input {
    border: 1px solid #8080808c;
    border-radius: 8px;
    padding-left: 15px;
  }
  .form-field select {
    width: 100%;
    padding: 4px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
  }
  .form-field select option {
    font-size: 14px;
  }
  .upload-file {
    margin: 10px 0;
  }
  
  .circle {
    margin: auto;
    text-align: center;
    width: 80px;
    height: 80px;
  }
  
  .circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .p-image button {
    background-color: #509abd;
    color: #fff;
    border: 0;
    border-radius: 5px;
    padding: 5px 17px;
    margin-top: 10px;
  }
  /* ----------------------------------------- edit profile end ------------------------------------- */
  
  /* ---------------------------------------Purchase History Css Start -----------------------------------------*/
  
  .table-container {
    width: 100%;
    border: 1px solid #ddd;
  }
  
  .table-container th,
  td {
    padding: 10px;
    text-align: center;
  }
  
  .table-container th {
    background-color: #f2f2f2;
  }
  
  .table-container tr {
    border-bottom: 1px solid #ddd;
  }
  
  .discount-details .discount-details-btn {
    background-color: #01316b;
    color: white;
    border: none;
    padding: 5px 18px;
    border-radius: 0;
    font-size: 12px;
    text-decoration: none;
  }
  
  .discount-details .discount-details-btn:hover {
    background-color: #02b8df;
  }
  .pagination li a {
    color: #01316b;
  }
  
  /* ---------------------------------- purchase history css end -------------------------------------- */
  
  /* ---------------------------------- View Product css Start -------------------------------------- */
  
  .order-single-details {
    display: flex;
  }
  
  .track-order .recent-products-img img {
    width: 100%;
  }
  
  .track-order-name {
    text-align: justify;
  }
  
  .discount-details .table-container tr:hover {
    background-color: #e1e1e1;
  }
  .single-order-final {
    display: flex;
    justify-content: space-between;
  }
  .final-order {
    padding: 50px;
  }
  .total-final {
    border-radius: 5px;
    background: #eee;
    padding: 10px;
  }
  .total-final p {
    margin-bottom: 0;
  }
  .order-details h4 {
    background: #eee;
    padding: 11px;
    border-radius: 7px;
    font-size: 20px;
  }
  #myTabs li a {
    color: #fff;
        background-color: #01316b;
  }
  /* ---------------------------------- View Product css End -------------------------------------- */
  
  /* ---------------------------------- Cart and Checkout css Start -------------------------------------- */
  .product-name-default {
    text-decoration: none;
    color: #213854;
  }
  /* ---------------------------------- Cart and Checkout css End -------------------------------------- */
  
  .cap-btns {
    display: flex;
  }
  .cap-btns input {
    margin: 0 10px;
    background-color: #012f6f;
    color: #fff;
    border: 0;
    padding: 10px;
    border-radius: 7px;
  } 
  
  input[type=range] {
    height: 27px;
    -webkit-appearance: none;
    margin: 10px 0;
    width: 100%;
  }
  input[type=range]:focus {
    outline: none;
  }
  input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #000000;
    background: #C4C4C4;
    border-radius: 1px;
    border: 0px solid #000000;
  }
  input[type=range]::-webkit-slider-thumb {
    box-shadow: 0px 0px 0px #000000;
    border: 3px solid #01B7E0;
    height: 18px;
    width: 18px;
    border-radius: 18px;
    background: #FFFFFF;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -8px;
  }
  input[type=range]:focus::-webkit-slider-runnable-track {
    background: #C4C4C4;
  }
  input[type=range]::-moz-range-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #000000;
    background: #C4C4C4;
    border-radius: 1px;
    border: 0px solid #000000;
  }
  input[type=range]::-moz-range-thumb {
    box-shadow: 0px 0px 0px #000000;
    border: 3px solid #01B7E0;
    height: 18px;
    width: 18px;
    border-radius: 18px;
    background: #FFFFFF;
    cursor: pointer;
  }
  input[type=range]::-ms-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    color: transparent;
  }
  input[type=range]::-ms-fill-lower {
    background: #C4C4C4;
    border: 0px solid #000000;
    border-radius: 2px;
    box-shadow: 0px 0px 0px #000000;
  }
  input[type=range]::-ms-fill-upper {
    background: #C4C4C4;
    border: 0px solid #000000;
    border-radius: 2px;
    box-shadow: 0px 0px 0px #000000;
  }
  input[type=range]::-ms-thumb {
    margin-top: 1px;
    box-shadow: 0px 0px 0px #000000;
    border: 3px solid #01B7E0;
    height: 18px;
    width: 18px;
    border-radius: 18px;
    background: #FFFFFF;
    cursor: pointer;
  }
  input[type=range]:focus::-ms-fill-lower {
    background: #C4C4C4;
  }
  input[type=range]:focus::-ms-fill-upper {
    background: #C4C4C4;
  }
   
  
  .cap-btns {
    display: flex;
    align-items: center;
  }
  .cap-btns label {
    font-size: 12px;
  }
  
  .cap-btns input[type="radio"] {
    display: none;
  }
  
  .cap-btns input[type="radio"] + label {
    display: inline-block;
    cursor: pointer;
    border: 2px solid #01b7e0; /* Border color */
    border-radius: 7px; /* Adjust border radius */
    background-color: #01b7e0; /* Background color */
    color: #fff;
    margin: 5px;
    padding: 8px 5px;
  }
  
  .cap-btns input[type="radio"]:checked + label {
    background-color: #01316b; /* Change background color for checked state */
    color: #fff; /* Change text color for checked state */
    border-color: #01316b; /* Change border color for checked state */
  }
  
  .numbers-container {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
  }
  .number {
    width: calc(100% / 12);
    text-align: center;
  }
  .calculator {
    padding: 10px;
    margin: 15px 0px 0 10px;
  }
  
  
  .wrapper {
    /* min-width: 400px; */
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
  
    .thumbnail {
        .thumbnailBox {
            border-radius: 4px;
            overflow: hidden;
            max-height: 100px;
            min-height: 100px;
            /* min-width: 100px; */
            max-width: 100px;
            margin-bottom: 15px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.5s;
  
            &.active {
                opacity: 1;
                border: 2px solid #202020;
            }
  
            img {
                aspect-ratio: 1/1;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }
  
    .mainImage {
        overflow: hidden;
        /* min-width: 500px; */
        max-width: 500px;
        border-radius: 10px;
        cursor: crosshair;
  
        img {
            width: 100%;
            height: 100%;
            aspect-ratio: 1/1;
            object-fit: cover; 
        }
    }
  }
  
  .single-review {
    display: flex;
    align-items: center;
  }
  
  .single-review .rev-img {
    width: 50px;
    height: 50px;
  }
  
  .single-review .rev-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .full-rev {
    margin-left: 10px;
  }
  
      .full-rev .star i{
      color: #aaa; 
      }
      .full-rev .star .c_yellow{ 
          color: #FFD43B;
      }
      .reviews .star i{
   color: #aaa; 
      }
      .reviews .star .c_yellow{ 
          color: #FFD43B;
      }
  
  .rating {
    display: inline-block;
    position: relative;
    height: 30px;
    direction: rtl;
  }
  
  .rating input[type="radio"] {
    display: none;
  }
  
  .rating label {
    display: inline-block;
    width: 20px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
  }
  
  .rating label .fas {
    color: #aaa;
    font-size: 14px;
  }
  
  .rating input[type="radio"]:checked~label .fas {
    color: #FFD43B;
  }
  
  fieldset {
    display: flex !important;
  }
  
  .single_product_btn{
        background-color: #01316b;
      color: white;
      border: none;
      padding: 5px 18px;
      border-radius: 0;
      font-size: 10px;
      margin: 0 3px;
      transition:.2s;
      border-radius:5px;
  }
  .single_product_btn:hover{
    background-color: #01b7e0;
  }
  .add_to_cart_btn_success{
    background-color: green;
  }
  .add_to_cart_btn_danger{
    background-color: red;
  }
  
  .cart_img_wrap {
      /* width: 200px; */
      height: 150px;
  }
  .cart_img_wrap img{ 
      object-fit: contain;
      width: 100%;
      height: 100%;
  }
  .remover_cart {
      font-size: 14px;
      border: 0;
      border-radius: 7px;
      background-color: #d9534f;
      color: #fff;
      margin: 5px;
      padding: 5px;
  }
  .cart_table td{
    text-align: center;
    vertical-align: middle;
  }
  .cart_table th{
    text-align: center;
    vertical-align: middle;
  }
  
  button.swal2-confirm.swal2-styled{
    background-color: #01b7e0 !important; 
  }
  .order-paymnent td{
    text-align:left;
  }
  .input_error{
    color:red;
    font-weight:bold;
  } 
  
  /* ---------------------payment-method---------------------- */ 
      
      .payment_method_table th, td {
          border: 1px solid black;
          padding: 8px;
          text-align: left;
      }
     .payment_method_table th, .payment_method_table td {
      border: 1px solid black;
      padding: 8px;
      text-align: left;
  } .payment_method_table th {
          background-color: #f2f2f2; 
      }
      .payment_method_table{
          width:100%; 
      }
  
  
      .payment-seal {
      height: 200px;
          width: 327px;
  }
      .payment-seal img{
        width: 100%;
        height: 100%;
      }
  
      .discount-details td{
        text-align: center;
      }
          .logo a img{
        width: 100%;
      }
      .logo{
        width: 130px;
      }
      #media-logo{
        display: flex;
        justify-content: space-around;  
      }
  .header_user{
    display: flex;
  }
  .header_user p {
      margin: 0;
      font-size: 14px;
  }
  #toggleList{
    padding-left: 0;
  }
  a.btn.btn-warning.animation {
      background-color: #01316b;
      color: white;
      border: none;
      padding: 11px 18px;
      border-radius: 0;
      font-size: 10px;
  }
  .my_pagination{
    margin-top: 20px;
  }
  .my_pagination  .active>.page-link{
        background-color: #01316b !important;
        border-color: #01316b !important;
  }
  .identity h3{
    font-size: 20px;
  }
  .final-order,.order-details,.track-order{
    font-size: 14px;
  }
  .my_order_content {
      display: flex;
      justify-content: space-around;
      align-items: center;
  }
  .my_order_content p{
    margin: 0;
  }
  
  .verify_email{
    position: relative;
    height: 100vh;
    width: 100vw;
      background: linear-gradient(to right, rgb(41, 0, 128), rgb(111, 95, 214)) 
  }
  
  .main_verify{
     background: white;
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     display: flex;
     flex-direction: column;
     gap: 20px;
     padding: 35px 20px;
     border: 1px solid grey;
     border-radius: 20px;
     max-height: 600px;
     width: 450px;
     text-align: center;
  }
  
  .main_verify input{
    width:60%;
    margin:5px auto;
    height:30px;
    cursor: pointer;
    border-radius:5px;
  }
  
  .main_verify input:focus-visible{
         outline: none;
  }
  
  
  
  .main_verify button{
    width:60%;
    margin:10px auto;
    height:30px;
    cursor: pointer;
    border-radius:5px;
    background: linear-gradient(to right, rgb(41, 0, 128), rgb(111, 95, 214));
    color: white;
    border: none;
    font-weight:600;
  }
  
  .main_verify button:hover{
    background: linear-gradient(to right, #6b74f4, rgb(138, 171, 201));
  }
  
  
  .logout_btn{
    background: red !important;
  }
  
  .main_verify>div>div{
   height: 200px;
  }
  
  
  
  
  
  


/* Register Page Css */
