html{box-sizing: border-box;}
*, *:before, *:after {box-sizing: inherit;}
*:focus {outline: none;}
body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size:14px;
    font-style: normal;
    margin:0 auto;
    padding:0;
}
.container{
    width:100%;
    margin:10px auto;
    max-width: 1060px;
}
.backcolor-lightblue{
    background-color: #F6F7FF;
}
.backcolor-white{
    background-color: #FFF
}
p{
    font-family:"Poppins",sans-serif;
    font-weight: 400;
}
a{
    color:#3642AE;
    text-decoration: none;
    transition :all 0.3s;
}
a:hover{
    transition :all 0.3s;
    color: #4953b4;
}
h3{
    margin:0
}
.row{padding:15px 25px; overflow: hidden;}
.row.notifications{
width: 100%;max-width: 650px;margin:0 auto
}

.font-light{font-weight: 300;}
.font-regular{font-weight: 400;}
.font-medium{font-weight: 500;}
.font-bold{font-weight: 700;}

.font-italic{font-style: italic;}
.border-r-20{
    border-radius: 20px;
}
.border-r-40{
    border-radius: 40px;
}
.form-horizontal{
    width: 100%;
    max-width: 800px;
    background-color: #fff;
    margin: 0 auto;
    border-radius: 20px;
}
::placeholder {color: #868686;opacity:1;}
::-ms-input-placeholder {color: #868686;}



.form-group label{
    font-size:14px;
    display: block;
    padding-bottom:10px
}
.form-group input, .form-group select{
    width: 100%;
    background-color: #fff;
    border: 1px solid #AAA;
    border-radius: 10px;
    padding:15px 10px;
    transition :all 0.5s;
}
.form-group input:focus, .form-group select:focus{
    background-color: #fff;
    border: 1px solid #3642AE;
    box-shadow: #3642AE 0px 0px 0px 1px;
    transition :all 0.5s;
}
.form-group.error input, .form-group.error select{
    border: 1px solid #C04F4F;

}
.errmsg{
    color:#C04F4F;
    font-size: 10px;
    display: none;
    padding:5px 0 0 5px
}
.form-group.error .errmsg{
    display: block;
}

.error input[type="checkbox"]{
    border: 1px solid #C04F4F !important;
}
.form-group select.error{
    border: 1px solid #C04F4F !important;
}

.btn{
    color:#fff;
    background-color: #3642AE;
    margin:0 auto;
    padding:15px 25px;
    display: inherit;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
    font-size:16px;
    transition :all 0.2s;
}
.btn:hover{
    background-color: #4953b4;
    transition :all 0.2s;

}
.float-r{float: right;}

/* Custom checkboxes */
input[type="checkbox"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    appearance: none;
    /* For iOS < 15 to remove gradient background */
    background-color: #fff;
    /* Not removed via appearance */
    margin: 0;
}

input[type="checkbox"] {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: #AAA;
    width: 23px;
    height: 25px;
    border: 1px solid #AAA;
    border-radius: 8px;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
    transition: 120ms all ease-in-out;

}

.form-control{
    display:grid;
    grid-template-columns: 1em auto;
    gap:15px;
    cursor: pointer;
}

input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 200ms transform ease-in-out;
    box-shadow: inset 1em 1em var #fff;
    /* Windows High Contrast Mode */
    background-color: #FFF;
}

input[type="checkbox"]:checked {
    background-color: #3642AE;
    border: 1px solid #3642AE;
    transition: 120ms all ease-in-out;
}

input[type="checkbox"]:checked::before {
    transform: scale(1);
}


.form-control + .form-control {
    margin-top: 1em;
}

/* hover underline effect */

.hover-underline-animation {
    display: inline-block;
    position: relative;
}

.hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #4953b4;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
.notice-container{
    display:flex;flex-direction: row;justify-content: space-between;width:100%
}
.mark{
    flex-grow: 1;display: flex; flex-wrap: wrap; flex-direction: row; align-content: center;
}
.close-mark{
    flex-grow:1;display: flex;flex-wrap: wrap;flex-direction: row;justify-content: flex-end;
}
.success-tooltip .mark{
    border-left:4px solid #35B6B4;
    padding-left: 15px;
}

.error-tooltip .mark{
    border-left:4px solid #C04F4F;
    padding-left: 15px;
}
.mark img{
    margin-right: 15px;
}
/*Custom select dropdown with radio */
.dropdown-el {
    width: 100%;
    border-radius: 10px;
    position: relative;
    display: inline-block;
    margin-right: 1em;
    min-height: 2em;
    max-height: 2em;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    white-space: nowrap;
    outline: none;
    transition: 0.3s all ease-in-out;
}
.dropdown-el input:focus + label {
    background: #def;
}
.dropdown-el input {
    width: 1px;
    height: 1px;
    display: inline-block;
    position: absolute;
    opacity: 0.01;
}
.dropdown-el label {
    border-top: 1px solid #AAA;
    display: block;
    height: 35px;
    line-height: 35px;
    padding-left: 15px;
    padding-right: 15px;
    cursor: pointer;
    position: relative;
    transition: 0.3s color ease-in-out;
}
.dropdown-el label:nth-child(2) {
    margin-top: 35px;
    border-top: 1px solid #AAA;
}
.dropdown-el input:checked + label {
    display: block;
    border-top: none;
    position: absolute;
    top: 0;
    width: 100%;
}
.dropdown-el input:checked + label:nth-child(2) {
    margin-top: 0;
    position: relative;
}
.dropdown-el::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 10px;
    border: 10px solid #3642AE;
    border-color: #3642AE transparent transparent transparent;
    transition: 0.4s all ease-in-out;
}
.dropdown-el.expanded {
    background: #fff;
    padding: 0;
    max-height: 15em;
}
.dropdown-el.expanded label {
    border-top: 0.06em solid #d9d9d9;
}
.dropdown-el.expanded label:hover {
    color: #3642AE;
}
.dropdown-el.expanded input:checked + label {
    color: #3642AE;
}
.dropdown-el.expanded::after {
    transform: rotate(-180deg);
    top: 0px;
}
