*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    background:rgb(248, 245, 245);
}
.logo img{
  margin-top: 50px;
  width: 300px;
}
.content-container{
    font-family: 'Open Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.checkout-wrapper{
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    margin: 50px 0px;
    max-width: 780px;
    height: 100%;
}
.heading{
    padding:15px 20px ;
    color:  #fff;
    background: #ff2f06c4;
    text-transform: uppercase;
}
.heading h3{
    margin: 0px;
    padding: 0px;
    font-size:  20px;
    font-weight: 700;
}

.input-div{
    display: flex;
    flex-direction: column;
    gap:5px;
    padding: 10px 0px;
    /* margin: 10px 0px; */
}
.input-div input,.input-div select{
    border: 1px solid #bfbbbb;
    height: 40px;
    padding: 0 0 0 10px;
    width: 100%;
    outline: none;
    margin-bottom: 5px;
    transition: all .3s;
}
.input-div textarea{
  border: 1px solid #bfbbbb;
  padding: 0 0 0 10px;
  width: 100%;
  outline: none;
  margin-bottom: 5px;
  transition: all .3s;
}
.cardinput{
  border: 1px solid #bfbbbb;
  padding: 15px;
  width: 100%;
  outline: none;
  transition: all .3s;
}

.input-div label{
    font-weight: 500;
}
.input-div input:focus,.input-div textarea:focus{
    webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;
    border: 1px solid #ff2f06c4;
    box-shadow: 0px 0px 5px #ff2f06c4;
}


.customer-p{
  font-size: .85rem;
  color: gray;
}

.card-type{
    padding: 0px 6px;
}
.card-type p{
    margin: 0px ;
    padding: 0px;
} 
.radio-button-container {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  
  .radio-button {
    display: inline-block;
    position: relative;
    cursor: pointer;
  }
  
  .radio-button__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .radio-button__label {
    display: inline-block;
    padding-left: 30px;
    margin-bottom: 10px;
    position: relative;
    font-size: 14px;
    color: black;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }
  
  .radio-button__custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #555;
    transition: all 0.3s ease;
  }
  
  .radio-button__input:checked + .radio-button__label .radio-button__custom {
    background-color: #ff2f06c4;
    border-color: transparent;
    transform: scale(0.8);
    box-shadow: 0 0 8px #ff2f06c4;
  }
  
  .radio-button__input:checked + .radio-button__label {
    color: #ff2f06c4;
  }
  
  .radio-button__label:hover .radio-button__custom {
    transform: scale(1.2);
    border-color: #ff2f06c4;
    box-shadow: 0 0 8px #ff2f06c4;
  }
  .submit-btn{
    padding: 8px 20px;
    color: white;
    font-weight: 600;
    background-color: #ff2f06c4;
    border: 2px solid #ff2f06c4;
    transition: all .3s;
  }
  .submit-btn:hover{
    color: #ff2f06c4;
    background-color: white;

  }
  
  
  
  
  
  
  
  
  
  

  /* =============== laoder ============= */

  .loader-wrapper{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: none;
    z-index: 998;
  }
  .display_block{
    display: block !important;
  }
  .loader {
    position: relative;
    width: 2.5em;
    height: 2.5em;
    transform: rotate(165deg);
    z-index: 999;
   }
   
   .loader:before, .loader:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-radius: 0.25em;
    transform: translate(-50%, -50%);
   }
   
   .loader:before {
    animation: before8 2s infinite;
   }
   
   .loader:after {
    animation: after6 2s infinite;
   }
   
   @keyframes before8 {
    0% {
     width: 0.5em;
     box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
    }
   
    35% {
     width: 2.5em;
     box-shadow: 0 -0.5em rgba(225, 20, 98, 0.75), 0 0.5em rgba(111, 202, 220, 0.75);
    }
   
    70% {
     width: 0.5em;
     box-shadow: -1em -0.5em rgba(225, 20, 98, 0.75), 1em 0.5em rgba(111, 202, 220, 0.75);
    }
   
    100% {
     box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
    }
   }
   
   @keyframes after6 {
    0% {
     height: 0.5em;
     box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
    }
   
    35% {
     height: 2.5em;
     box-shadow: 0.5em 0 rgba(61, 184, 143, 0.75), -0.5em 0 rgba(233, 169, 32, 0.75);
    }
   
    70% {
     height: 0.5em;
     box-shadow: 0.5em -1em rgba(61, 184, 143, 0.75), -0.5em 1em rgba(233, 169, 32, 0.75);
    }
   
    100% {
     box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
    }
   }
   
   .loader {
    position: absolute;
    top: calc(50% - 1.25em);
    left: calc(50% - 1.25em);
   }

.logo img {
    background: #353535;
    padding: 20px;
    border-radius: 20px;
}