*{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    scroll-behavior: smooth;
	
}
body{
    margin: 0;
    background: #E5F8FF;
}
nav{
    background: linear-gradient(#001C39, #000B4F);
    text-align: center;
}
.container{
    margin: auto;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background-size: cover;
    overflow-x: hidden;
    position: relative;
    text-align: center;
}
.container > img{
    width: auto;
    height: 100px;
}
.container> p{
    font-size: 14px;
    color: #000000;
    font-weight: 500;
}
.inner_sec{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    align-items: center;
}
.inner_sec > h2{
    font-size: 16px;
    color: #000000;
    font-weight: 700;
}

.inner_sec > select{
    background-color: #77DCFF;
    border: none;
    min-width: 50%;
    padding: 10px 10px;
    font-weight: bold;
    color: #ffffff;
}
.inner_sec > select:focus-visible{
    outline: none;
}

.inner_sec > input{
    background-color: #77DCFF;
    border: none;
    min-width: 50%;
    padding: 10px 10px;
    font-weight: bold;
    color: #ffffff;
}
.inner_sec > input:focus-visible{
    outline: none;
}
.container > form > input{
    background: #42FF74;
    color: #000000;
    padding: 10px 20px;
    border: none;
    font-size: 14px;
    font-weight: bold;
    min-width: 54%;
    margin-top: 5px;
    text-transform: capitalize;
    border-radius: 10px;
    cursor: pointer;
}
.container > form > a> input{
    background: #42FF74;
    color: #000000;
    padding: 10px 20px;
    border: none;
    font-size: 14px;
    font-weight: bold;
    min-width: 50%;
    margin-top: 5px;
    text-transform: capitalize;
    border-radius: 10px;
    cursor: pointer;
}

::placeholder {
    color: #ffffff;
    opacity: 1; /* Firefox */
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #ffffff;
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
   color: #ffffff;
  }

  /* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.otp{
    display: flex;
    flex-direction: column;
}

.otp > label{
    font-size: 12px;
    font-weight: bold;
    color: #000000;
}

.otp > input{
    background: #77DCFF;
    border: 3px dashed #48ADD0;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    font-weight: bold;
}

.otp > input::placeholder{
    font-size: 18px;
    text-align: center;
}
.otp > input:focus-visible{
    outline: none;
}
.container > h3{
    margin-top: 20px;
}



.switch {
    position: relative;
    display: inline-block;
    margin: 0 5px;
  }
  
  .switch > span {
    position: absolute;
    top: 14px;
    pointer-events: none;
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .06);
    width: 50%;
    text-align: center;
  }
  
  input.check-toggle-round-flat:checked ~ .off {
    color: #003479;
  }
  
  input.check-toggle-round-flat:checked ~ .on {
    color: #fff;
  }
  
  .switch > span.on {
    left: 0;
    padding-left: 2px;
    color: #003479;
  }
  
  .switch > span.off {
    right: 0;
    padding-right: 4px;
    color: #fff;
  }
  
  .check-toggle {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
  }
  .check-toggle + label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  input.check-toggle-round-flat + label {
    padding: 2px;
    width: 97px;
    height: 35px;
    background-color: #003479;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
  }
  input.check-toggle-round-flat + label:before, input.check-toggle-round-flat + label:after {
    display: block;
    position: absolute;
    content: "";
  }
  
  input.check-toggle-round-flat + label:before {
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    background-color: #003479;
    -webkit--moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
  }
  input.check-toggle-round-flat + label:after {
    top: 4px;
    left: 4px;
    bottom: 4px;
    width: 48px;
    background-color: #fff;
    -webkit-border-radius: 52px;
    -moz-border-radius: 52px;
    -ms-border-radius: 52px;
    -o-border-radius: 52px;
    border-radius: 52px;
    -webkit-transition: margin 0.2s;
    -moz-transition: margin 0.2s;
    -o-transition: margin 0.2s;
    transition: margin 0.2s;
  }
  
  input.check-toggle-round-flat:checked + label {
  }
  
  input.check-toggle-round-flat:checked + label:after {
    margin-left: 44px;
  }

  .code{
    background: #ffffff;
    color: #525252;
    padding: 10px;
    font-size: 12px;
    text-align: left;
  }
  .code >span{
    border-right: 1px solid #ffffff;
    padding-right: 5px;
  }
    
  
  .code > input{
    background: none;
    color: #525252;
    border: none;
    font-size: 12px;
  }
  .code > input::placeholder{
    color: #525252;
  }

  .code > input:focus-visible{
    outline: none;
  }

  /* css changes new design */
  .section{
    text-align: left;
  }

  .plan{
    display: flex;
    align-items: center;
	justify-content: space-between;
  }
  .plan > input{
    padding: 10px 20px;
    width: 100%;
    background: #ffffff;
    color: #000000;
    border: none;
    margin: 10px;
    cursor: pointer;
  }

  .active{
    background: #42FF74 !important;
    color: #000000 !important;
    border: 1px solid #00611A !important;
  }


  .exit{
    min-width: 40% !important;
    color: #ffffff !important;
    background: #FF4242 !important;
  }

  .other_txt{
    text-align: left;
    font-size: 10px;
    line-height: 14px;
    padding: 5px;
  }
  .thankyou {
    margin: auto;
    width: 100%;
    max-width: 360px;
    background-image: url(../images/thankyou.png);
    height: 100vh;
    background-size: cover;
    overflow-x: hidden;
    position: relative;
    
}
label.switch-toggle {
    background: url('switch.png') repeat-y;
    display: block !important;
    height: 12px;
    padding-left: 26px;
    cursor: pointer;
    display: none;
}
label.switch-toggle.on {
    background-position: 0 12px;
}
label.switch-toggle.off {
    background-position: 0 0;
}
label.switch-toggle.hidden {
    display: none;
}
.ar{text-align: right !important;}
.plan > button {
padding: 10px 20px;
    width: 47%;
    background: #ffffff;
    color: #000000;
    border: none;
    margin: 2px;
    cursor: pointer;
}
.section3{
    margin-top: 50px;
    margin-bottom: 50px;
}
.loader {
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid #282828;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 1s linear infinite; / Safari /
  animation: spin 1s linear infinite;
}

/ Safari /
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.loader-center{
        display: flex;
    justify-content: center;
}

.flex_bx{
	display: flex;
	justify-content: space-between;
	}
	
	.ft_sm{
		font-size: 10px !important;
		color: #282828;    
		margin-top: 5px;
	}
	.mt_5{
		margin-top: 5px;
	}
	.mr_neg{
		margin-left: -20px;
	}
	.fl_bx{
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		margin-bottom: 5px;
		margin-top: 5px;
	}
	.fl_bx >p{
		text-align: left;
	}
	
	@media screen and (max-width: 600px){
		.container {
			width: 100%;
		}
	}

h4{
	font-size: 12px;
	margin: 5px 0px;
}
.container2{
	margin: 0px 5px;
}