@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap");
* {
    margin: 0;
    padding: 0;
    outline: none;
    font-family: "Poppins", sans-serif;
}
:root {
    --primary: #333;
    --secondary: #333;
    --errorColor: red;
    --stepNumber: 6;
    --containerWidth: 700px;
    --bgColor: #333;
    --inputBorderColor: lightgray;
}


body {
    min-height: 100vh;
    overflow-x: hidden;
  font-family: "Roboto", sans-serif;
  background-color: #fff;
  line-height: 1.9;
  color: #000;
  position: relative; }
  body:before {
    z-index: -1;
    position: absolute;
    height: 100vh;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    /* background: url(../images/main-page-bg.jpg)  no-repeat center ;
  background-size: cover;  */
}
  body:after {
    z-index: -1;
    position: absolute;
    height: 100vh;
    content: "";
    top: 0;
    left: 0;
    right: 0;
   /* background-color: rgba(0,0,0,0.7); */
 }
::selection {
    color: #fff;
    background: var(--primary);
}
header{
    padding: 0px;
    display: flex;
}
.logo{
   
    width: 100%;
	line-height:0;
}
.logo img{
    display: inline-block;
    width: 100%;
	line-height:0;
}
.menubar{
    padding: 15px 0px;
    background-color: #35477d;
	display:none;
}
.container {
    width: clamp(250px,85%,950px);
    background: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 10px 35px 10px 35px;
    margin: 20px auto;
    /*background-color: #f5f5f578;*/
}
.container header {
    font-size: 35px;
    font-weight: 600;
    margin: 0 0 30px 0;
}
.container .form-outer {
    width: 100%;
    overflow: hidden;
}
.container .form-outer form {
    display: flex;
    width: calc(100% * var(--stepNumber));
}
.form-outer form .page {
    width: calc(100% / var(--stepNumber));
    transition: margin-left 0.3s ease-in-out;
}
.form-outer form .page .title {
    text-align: left;
    font-size: 20px;
    font-weight: 500;
    color:#35477d;
}
 .beta_title {
    width: 100% !important;
    font-weight: 500;
    color:#35477d;
    text-align: left;
    font-size: 16px !important;
    margin: 15px 0px 5px 0px;
}
.form-outer form .page .field {
    width: 100%;
    height: 40px;
    margin: 30px 0 10px 0px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.d-flex{
    display: flex;
}

form .page .field .label {
    position: absolute;
    top: -30px;
    font-weight: 500;
}
form .page .field input {
    box-sizing: border-box;
    height: 42px;
    width: 100%;
    border: 1px solid var(--inputBorderColor);
    border-radius: 0px 2px 2px 0px;
    padding-left: 15px;
    margin: 0 0px;
    font-size: 14px;
    transition: border-color 150ms ease;

}
form .page .field input.invalid-input {
    border-color: var(--errorColor);
}
form .page .field select {
    width: 100%;
    padding-left: 10px;
    font-size: 17px;
    font-weight: 500;
}
form .page .field button {
    width:49%;
    height: calc(100% + 5px);
    border: none;
    background: #35477d;
    margin-top: 0px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.5s ease;
}
.add_btn{
     width: 60% !important;
    font-size: 12px !important;
    text-transform: capitalize !important;
}
form .page .field button:hover {
    background: #223263;
}
form .page .btns button {
    margin-top: 0px !important;
}
form .page .btns button.prev {
    margin-right: 3px;
    font-size: 17px;
}
form .page .btns button.next {
    margin-left: 3px;
}
.container .progress-bar {
    display: flex;
    margin: 40px 0;
    user-select: none;
    
}
.container .progress-bar .step {
    text-align: center;
    width: 100%;
    position: relative;
}
.container .progress-bar .step p {
    font-weight: 500;
    font-size: 18px;
    color: #596ca5;
    margin-bottom: 8px;
}
.progress-bar .step .bullet {
    height: 25px;
    width: 25px;
    border: 2px solid #596ca5;
    display: inline-block;
    border-radius: 50%;
    position: relative;
    transition: 0.2s;
    font-weight: 500;
    font-size: 17px;
    line-height: 25px;
}
.progress-bar .step .bullet.active {
    border-color: #223263;
    background: #223263;
}
.progress-bar .step .bullet span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #596ca5;
}
.progress-bar .step .bullet.active span {
    display: none;
}
.progress-bar .step .bullet:before,
.progress-bar .step .bullet:after {
    position: absolute;
    content: "";
    bottom: 11px;
    right: 0;
    left: 75px;
    height: 3px;
    width: 100px;
    background: #596ca5;
}
.progress-bar .step .bullet.active:after {
    background: #223263;
    transform: scaleX(0);
    transform-origin: left;
    animation: animate 0.3s linear forwards;
}
@keyframes animate {
    100% {
        transform: scaleX(1);
    }
}
.progress-bar .step:last-child .bullet:before,
.progress-bar .step:last-child .bullet:after {
    display: none;
}
.progress-bar .step p.active {
    color: #223263;
    transition: 0.2s linear;
}
.progress-bar .step .check {
    position: absolute;
    left: 50%;
    top: 70%;
    font-size: 15px;
    transform: translate(-50%, -50%);
    display: none;
}
.progress-bar .step .check.active {
    display: block;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .col-xl-4,.col-xl-6,.col-xl-12{
        width: 100% !important;
   }
}
@media screen and (max-width: 660px) {
    :root {
        --containerWidth: 400px;
    }
    .progress-bar .step p {
        display: none;
    }
    .progress-bar .step .bullet::after,
    .progress-bar .step .bullet::before {
        display: none;
    }
    .progress-bar .step .bullet {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .progress-bar .step .check {
        position: absolute;
        left: 50%;
        top: 50%;
        font-size: 15px;
        transform: translate(-50%, -50%);
        display: none;
    }
    .step {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .container {
    width:90%;
    padding: 10px 20px 10px 35px;
    }
    form .page .btns button,form .page .btns button.prev{
        font-size: 14px;
    }
}
@media screen and (max-width: 490px) {
    :root {
        --containerWidth: 100%;
    }
    .container {
        width: 95%;
        padding: 10px 15px 10px 15px;
        box-sizing: border-box;
        border-radius: 0;
    }
}

.row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
.col-xl-4{
    width: 32%;
}
.col-xl-6{
    width: 47%;
}
.col-xl-8{
    width: 85%;
}
.col-xl-12{
    width: 100%;
}
.mt-4{
    margin-top: 20px;
}
.margin-b-15{
    margin-bottom: 15px;
}
.height-500{
  height: 450px;
}
 .overflow-y-auto{
   overflow-y: auto;
}
 /* width */
 ::-webkit-scrollbar {
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 10px rgb(255, 255, 255); 
  border-radius: 0px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(144, 144, 144); 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #7f7f7f; 
}

.flex-data{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
}
.flex-data .label{
   font-size: 16px;
   font-weight: 600;
    text-align: left;
}
.flex-data .data{
    font-size: 16px;
    margin-left: 20px;
}
select {
  display: none !important;
}

.dropdown-select {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#40FFFFFF', endColorstr='#00FFFFFF', GradientType=0);
  background-color: #fff;
  border-radius:0px 2px 2px 0px;
  border: solid 1px lightgray;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  float: left;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;

}

.dropdown-select:focus {
  background-color: #fff;
}

.dropdown-select:hover {
  background-color: #fff;
}

.dropdown-select:active,
.dropdown-select.open {
  background-color: #fff !important;
  border-color: #bbb;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05) inset;
}

.dropdown-select:after {
  height: 0;
  width: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #777;
  -webkit-transform: origin(50% 20%);
  transform: origin(50% 20%);
  transition: all 0.125s ease-in-out;
  content: '';
  display: block;
  margin-top: -2px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 50%;
}

.dropdown-select.open:after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.dropdown-select.open .list {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}

.dropdown-select.open .option {
  cursor: pointer;
}

.dropdown-select.wide {
  width: 100%;
}

.dropdown-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.dropdown-select .list {
  box-sizing: border-box;
  transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
  -webkit-transform: scale(0.75);
  transform: scale(0.75);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09);
  background-color: #fff;
  border-radius: 6px;
  margin-top: 4px;
  padding: 3px 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  max-height: 250px;
  overflow: auto;
  border: 1px solid #ddd;
}

.dropdown-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.dropdown-select .dd-search{
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
margin:0.5rem;
}

.dropdown-select .dd-searchbox{
width:90%;
padding: 0;
    height: 35px;
border:1px solid #999;
border-color:#999;
border-radius:4px;
outline:none;
}
.dropdown-select .dd-searchbox:focus{
border-color:#35477d;
}

.dropdown-select .list ul {
  padding: 0;
}

.dropdown-select .option {
  cursor: default;
  font-weight: 400;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  transition: all 0.2s;
  list-style: none;
}

.dropdown-select .option:hover,
.dropdown-select .option:focus {
  background-color: #f6f6f6 !important;
}

.dropdown-select .option.selected {
  font-weight: 600;
  color: #35477d;
}

.dropdown-select .option.selected:focus {
  background: #f6f6f6;
}

.dropdown-select a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.dropdown-select a:hover {
  color: #666;
}

.after_small-line{
  position: relative;
  padding: 10px 0px;
}
.after_small-line::after{
  position: absolute;
  content: "";
  width: 80px;
  height: 3px;
  background-color: #fff;
  top: 100% ;
  left: 0;

}
.w-30{
    width: 30% !important;
}
.justify-content-end{
    justify-content: end;
}
.justify-content-between{
    justify-content: space-between;
}
.justify-content-center{
    justify-content: center;
}
.field .icon{
    padding: 0px 10px;
    height: 42px;
    background-color: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;

}
.field .icon i{
    color: #818181;
}
.column{
  flex-direction: column !important;
}
.row-direction{
    flex-direction: row !important;
}
.flex-data .label{
    width: 45%;
}
.accompony_person_div .title button{
    background-color: #35477d;
    color: #fff;
    margin-left: 20px;
    width: 30px;
    height: 30px;
    border: none;
    font-size: 14px;
    cursor: pointer;
}
.w-250{
    width: 250px !important;
}
.flex-wrap{
    flex-wrap: wrap;
}
form .page .btns button.mb-15{
    margin-bottom: 15px !important;
}
.validation{
	color:#F00;
	font-size:0.7em;	
	font-weight:bold;
}
.select2-selection {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#40FFFFFF', endColorstr='#00FFFFFF', GradientType=0);
  background-color: #fff;
  border-radius:0px 2px 2px 0px !important;
  border: solid 1px lightgray;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  float: left;
  font-size: 14px;
  font-weight: normal;
  height: 42px !important;
  line-height: 40px;
  outline: none;
  padding-left: 10px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: 100%;

}
.select2-container--default .select2-selection--single{
    border: 1px solid lightgrey !important;
}
.select2{
    width: 100% !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    display: flex !important;
    height: 42px !important;
    line-height: inherit !important;
}
.border-bottom-light .flex-data{
    border-bottom: 1px solid #e1e1e1;
}