/* ===== Google Font Import - Poppins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');

.container{
    position: relative;
    max-width: 900px;
    width: 100%;
    border-radius: 6px;
    padding: 30px;
    margin: 0 15px;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.container header{
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}
.container header::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 3px;
    width: 27px;
    border-radius: 8px;
    background-color: #f0242f;
}
.container form{
    position: relative;
    /* margin-top: 16px; */
    min-height: 490px;
    background-color: #fff;
    /* overflow: hidden; */
}
.container form .form{
    position: absolute;
    background-color: #fff;
    transition: 0.3s ease;
}
.container form .form.second{
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
}
form.secActive .form.second{
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}
form.secActive .form.first{
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
}
.container form .title{
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    margin: 6px 0;
    color: #333;
}
.container form .fields{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
form .fields .input-field{
    display: flex;
    width: 32%;
    flex-direction: column;
    margin: 4px 0;
}
.input-field label{
    font-size: 12px;
    font-weight: 500;
    color: #2e2e2e;
}
.input-field select{
  font-size: 12px;
}
.input-field input, select{
  outline: none;
  font-size: 12px;
  padding: 13px;
  font-weight: 400;
  color: #333;
  border-radius: 5px;
  border: 1px solid #aaa;
  padding: 0 10px;
  height: 35px;
  margin: 8px 0;
}
.input-field input :focus,
.input-field select:focus{
    box-shadow: 0 3px 6px rgba(0,0,0,0.13);
}
.input-field select,
.input-field input[type="date"]{
    color: #707070;
}
.input-field input[type="date"]:valid{
    color: #333;
}
.container form button, .backBtn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    max-width: 200px;
    width: 100%;
    border: none;
    outline: none;
    color: #fff;
    border-radius: 5px;
    /* margin: 25px 0; */
    background-color: #4070f4;
    transition: all 0.3s linear;
    cursor: pointer;
}
.container form .btnText{
    font-size: 14px;
    font-weight: 400;
}
form button:hover{
    background-color: #265df2;
}
form button i,
form .backBtn i{
    margin: 0 6px;
}
form .backBtn i{
    transform: rotate(180deg);
}
form .buttons{
    display: flex;
    align-items: center;
}
form .buttons button , .backBtn{
    margin-right: 14px;
}
.header p{
  font-size: 11px;
}

@media (max-width: 750px) {
    /* .container form{
        overflow-y: scroll;
    }
    .container form::-webkit-scrollbar{
       display: none;
    } */
    form .fields .input-field{
        width: calc(100% / 2 - 15px);
    }
}

@media (max-width: 550px) {
    form .fields .input-field{
        width: 100%;
    }
}
.declaration-content label{
  font-size: 13px;
}
.form .fields .photo, .sign{
  width: calc(100% / 2 - 10px);
}
.form .fields .sign{
  width: calc(100% / 2 - 10px);
}
.form .fields .tran-id{
  width: calc(100% / 2 - 10px);
}
.form .fields .referee{
  width: calc(100% / 3 - 10px);
}
.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
.marquee p{
  font-size: 15px;
}
.input-field input[type=checkbox] {
    box-sizing: border-box;
    height: 10px;
    border: 0;
}
.home-link{
  padding: 9px 21px 13px;
border: 1px solid blue;
border-radius: 0px;
background: blue;
color: white;
text-decoration: auto;
}
.home-link:hover{
background: #2727ed;
color: white;
text-decoration: auto;
}

.login-link{
  padding: 9px 21px 13px;
border: 1px solid red;
border-radius: 0px;
background: red;
color: white;
text-decoration: auto;
}
.login-link:hover{
background: #fb1d1d;
color: white;
text-decoration: auto;
}
.pay{
  padding: 10px;
    background: blue;
    color: white;
    text-decoration: auto;
}
.pay:hover{
    color: white;
    text-decoration: auto;
}
.MultiCheckBox {
            border:1px solid #aaaaaa;
            padding: 8px;
            border-radius:4px;
            cursor:pointer;
            font-size: 12px;
        }

        .MultiCheckBox .k-icon{
            font-size: 15px;
            float: right;
            font-weight: bolder;
            margin-top: -7px;
            height: 10px;
            width: 14px;
            color:#787878;
        }

        .MultiCheckBoxDetail {
            display:none;
            position:absolute;
            border:1px solid #e2e2e2;
            overflow-y:hidden;
            background: white;

        }

        /* .MultiCheckBoxDetailBody {
            overflow-y:scroll;
        } */

            .MultiCheckBoxDetail .cont  {
                clear:both;
                overflow: hidden;
                padding: 2px;

            }

            .MultiCheckBoxDetail .cont:hover  {
              background-color: #e7e7e7;
            }
            div.MultiCheckBoxDetail{
              width: 100%
            }
            .MultiCheckBoxDetailBody > div > div {
                float:left;
            }

        .MultiCheckBoxDetail>div>div:nth-child(1) {

        }

        .MultiCheckBoxDetailHeader {
            overflow:hidden;
            position:relative;
            height: 28px;
            background-color: #c7c7c9;
        }

            .MultiCheckBoxDetailHeader>input {
                position: absolute;
                top: 4px;
                left: 3px;
            }

            .MultiCheckBoxDetailHeader>div {
                position: absolute;
                top: 5px;
                left: 24px;
                color:#fff;
            }
            @media only screen and (min-width: 768px) {
              .main-box{
                padding:0 170px 20px;
              }
              .member-box-details{
                padding-top: 90px;
              }
            }
            @media(max-width: 400px) {
              .member-box-new{
                margin-top:20px;
              } 
            }

          .member-box{
            border: 1px solid #a7a0a0;
          border-radius: 10px;
          padding: 20px;
          background: #f7f7f7;
          }
.fix{
  background: #e7e7e7;
}
