/* common css */
body {
  font-family: 'Poppins', sans-serif; 
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
ul {
  padding: 0;
  margin: 0;
}
a,
a:hover a:focus {
  text-decoration: none !important;
  outline: none !important;
}
li {
  list-style-type: none;
}

.flex-wrapper{
  display: flex;
}
/* form wrapper */
.form-group {
  margin-bottom: 24px;
  position: relative;
}
.form-group label{
  font-size: 14px;
  line-height: 150%;
  color: #030404;
  font-weight: normal;
}
.form-group .form-control,
.selectBoxTop{
  width: 100%;
  height: 48px;
  border-color: #CCCCCC;
}
.form-group .form-control:focus,
.selectBoxTop:focus{
  border-color: #00A3E4;
  box-shadow: none;
}
.form-group .form-control:hover,
.selectBoxTop:hover{
  background: #F6FAFF;
}
.form-group .form-control{
  color: #030404;
}
.form-group .input-icon{
  position: absolute;
  top: 40px;
  right: 16px;
  cursor: pointer;
}
.form-group .forget-password{
  font-size: 12px;
  line-height: 150%;
  color: #121458;
  text-decoration: underline !important;
  margin-top: 8px;
  font-weight: 500;
  display: inline-flex;
}
.form-group button{
  margin-top: 30px;
}
.or-text{
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
.or-text::before{
  content: '';
  background: #AAAAAA;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 12px;
}
.login-option span{
  font-size: 16px;
  line-height: 150%;
  color: #030404;
  padding: 0 37px;
  display: inline-flex;
  background: #fff;
  position: relative;
}
.account-link{
  font-size: 16px;
  line-height: 150%;
  color: #030404;
  text-align: center;
  margin-top: 32px;
}
.account-link a{
  color: #00A3E4;
  margin-left: 2px;
  cursor: pointer;
}
.agree-box {
  font-size: 16px;
  line-height: 150%;
  color: #404040;
  margin-top: -8px;
}
.agree-box a{
  color: #121459;
  margin-left: 2px;
}
/* CUSTOM SELECT BOX */
.selectBox {
  width: 100%;
  position: relative;
  font-size: 17px;
}
.selectBox:focus-visible{
  outline: none;
}
.selected,  
.selectOptions span {
  cursor: pointer;
}
.selected {
  padding: 13px 40px 13px 15px;
  float: left;
  width: 100%;
}
.selected.seletedtext{
  color: #030404;
}
.selectBoxTop {
  background: #FFFFFF;
  border-radius: 3px;
  height: 48px;
  position: relative;
  z-index: 3;
  width: 100%;
  border: 1px solid #CCCCCC;
}
.selectBoxTop span{
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #AAAAAA;
  font-weight: normal;
}
.selectBoxTop:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 24px;
  border: solid #121458;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: translateY(-50%) rotate(45deg);
}
.selectOptions {
  position: absolute;
  background: #FFFFFF;
  left: 0;
  top: 50px;
  width: 100%;
  display: none;
  z-index: 9;
  padding: 20px 8px;
  box-shadow: 0 6px 24px -6px rgba(0, 0, 0, .16);
  border-radius: 6px;
  max-height: 200px;
  overflow: auto;
}
.selectOptions.open-top{
  top: auto;
  bottom: -4px;
}
.selectOptions span {
  display: block;
  padding: 9px 16px;
  position: relative;
  height: 40px;
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
  border-radius: 4px;
}

.selectOptions h6{
  font-size: 16px;
  line-height: 150%;
  color: #AAAAAA;
  padding-left: 16px;
  margin-bottom: 8px;
  font-weight: normal;
}
.selectOptions span:hover {
  background: #F3FAFD;
  color: #00A3E4;
}
.form-btn-group{
  display: flex;
}
.form-btn-group button{
  height: 48px;
}
.form-btn-group .btn-secondry{
  width: 116px;
  margin-right: 16px;
}
/* checkbox */
.checkbox-item {
  cursor: pointer;
  outline: 0;
}
.checkbox-item input {
  display: none;
}
.checkbox-item span {
  padding: 6px 15px 6px 33px;
  position: relative;
  font-weight: normal;
}
.checkbox-item span:before {
  content: url("../svg/check.svg");
  position: absolute;
  top: 7px;
  left: 0px;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #00A3E4;
  padding-left: 1px;
}
.checkbox-item input:checked + span {
  /* background: #fceef0;
  color: #e25569; */
}
.checkbox-item input:checked + span::before {
  content: url("../svg/check.svg");
  background: #00A3E4;
}
@media screen and (max-width: 991px) {
  .selected {
    padding: 13px 20px 13px 15px;
  }
  .selectBoxTop:after {
    right: 10px;
    border-width: 0 2px 2px 0;
    padding: 2px;
  }
  .selectBox span{
    font-size: 14px;
    line-height: 20px;
  }
  .selectOptions span{
    height: 42px;
  }
  .agree-box {
    font-size: 14px;
    margin-top: 0px;
  }
  .checkbox-item span:before {
    padding-top: 1px;
  }
}
@media screen and (max-width: 991px) {
  .flex-wrapper{
    flex-direction: column;
  }
  .form-group{
    margin-bottom: 16px;
  }
  .form-group .form-control{
    height: 40px;
  }
  .form-group button{
    margin-top: 24px;
  }
  .form-group .input-icon{
    top: 36px;
  }
  /* .selectOptions{
    top: 50%;
    position: fixed;
    transform: translateY(-50%);
    width: 90%;
    left: 0;
    right: 0;
    margin: auto;
  }
  .selectOptions-overlay{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(0 0 0 / 28%);
    z-index: 9999;
    transition: opacity 0.3s linear;
  }
  .sidebar li a{
    height: auto;
  } */
  
  .form-btn-group .btn-secondry{
    display: none;
  }
}
@media screen and (min-width: 1600px) {
  .flex-wrapper{
    position: relative;
  }
}