@charset "UTF-8";
/*
 * Breakpoint mixins to ease development conditions
 */
/* body{
    line-height: 0px;
} */
form.jvmform-form {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
form.jvmform-form .jvmform-track {
    overflow: hidden;
    flex: 1;
}
form.jvmform-form .jvmform-wrapper {
    transition: all 0.5s ease;
}
form.jvmform-form .jvmform-slide {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    transition: opacity 0.5s ease;
    overflow: auto;
    box-sizing: border-box;
}
form.jvmform-form .jvmform-slide.active {
    opacity: 1;
}
@media screen and (max-width: 767px) {
    form.jvmform-form .jvmform-slide {
        display: block;
    }
}
form.jvmform-form .jvmform-group {
    max-width: 600px;
    padding: 60px 15px;
    box-sizing: border-box;
}
@media screen and (max-width: 767px) {
    form.jvmform-form .jvmform-group {
        margin: auto;
    }
}
form.jvmform-form .jvmform-btn {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 40px;
    padding: 0 20px;
    font-size: 16px;
    /* margin-right: 10px; */
    /* margin-top: 30px; */
    border-radius: 6px;
    background: #105aa2;
    border: 1px solid #105aa2;
    color: #fff;
    transition: all 0.3s ease;
    outline: none;
}
form.jvmform-form .jvmform-btn:active {
    border-color: #105aa2;
    background: #105aa2;
}
form.jvmform-form .jvmform-btn:disabled {
    background: #f6f6f6;
    border: 1px solid #f6f6f6;
    color: #e0e0ce;
}
form.jvmform-form
    input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
form.jvmform-form textarea {
    width: 100%;
    padding: 20px;
    /* font-size: 20px; */
    /* height:36px; */
    box-sizing: border-box;
    border: 1px solid #e0e0ce;
    outline: none;
    border-radius: none;
    background: #f6f6f6;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
form.jvmform-form textarea{
  width:100%;
}
form.jvmform-form
    input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):focus,
form.jvmform-form textarea:focus {
    border-bottom: 1px solid #ffb677;
}
form.jvmform-form input[type="text"],
form.jvmform-form input[type="email"],
form.jvmform-form input[type="tel"],
form.jvmform-form input[type="number"] {
    height: 50px;
}
form.jvmform-form input[type="text"].small,
form.jvmform-form input[type="email"].small,
form.jvmform-form input[type="tel"].small,
form.jvmform-form input[type="number"].small {
    height: 40px;
    padding: 10px 15px;
    font-size: 16px;
}
form.jvmform-form .options-list label {
    display: block;
    margin: 0;
    padding: 10px 0;
}
form.jvmform-form .options-list input[type="checkbox"],
form.jvmform-form .options-list input[type="radio"] {
    position: absolute;
    z-index: -1;
    visibility: hidden;
    width: auto;
    height: auto;
}
form.jvmform-form .options-list input[type="checkbox"]:checked + span:after,
form.jvmform-form .options-list input[type="radio"]:checked + span:after {
    opacity: 1;
    transform: scale(1);
}
form.jvmform-form .options-list input[type="checkbox"] + span,
form.jvmform-form .options-list input[type="radio"] + span {
    display: inline-block;
    position: relative;
    font-weight: 600;
}
form.jvmform-form .options-list input[type="checkbox"] + span:before,
form.jvmform-form .options-list input[type="radio"] + span:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    background: #f6f6f6;
    border: 1px solid #e0e0ce;
}
form.jvmform-form .options-list input[type="checkbox"] + span:after,
form.jvmform-form .options-list input[type="radio"] + span:after {
    font-family: "jvmform" !important;
    display: inline-block;
    content: "\F00C";
    font-size: 22px;
    color: #105aa2;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    text-align: center;
    line-height: 30px;
    opacity: 0;
    transform: scale(3);
    transition: all 0.3s ease;
}
form.jvmform-form .options-list input[type="radio"] + span:before {
    border-radius: 50%;
}
form.jvmform-form .options-list input[type="radio"] + span:after {
    content: "";
    width: 16px;
    height: 16px;
    background: #105aa2;
    border-radius: 50%;
    top: 8px;
    left: 8px;
}
form.jvmform-form .options-buttons label {
    margin: 0 5px 15px 0;
    display: inline-block;
    text-transform: none;
}
form.jvmform-form .options-buttons input[type="radio"],
form.jvmform-form .options-buttons input[type="checkbox"] {
    position: absolute;
    left: -9999px;
}
form.jvmform-form .options-buttons input[type="radio"]:checked + span,
form.jvmform-form .options-buttons input[type="checkbox"]:checked + span {
    background: #105aa2;
    border: 1px solid #105aa2;
    color: #fff;
}
form.jvmform-form .options-buttons input[type="checkbox"] + span,
form.jvmform-form .options-buttons input[type="radio"] + span {
    font-size: 16px;
    line-height: 20px;
    display: inline-block;
    background: #f6f6f6;
    border: 1px solid #e0e0ce;
    padding: 5px 20px;
    width: auto;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-weight: 600;
}
form.jvmform-form label.error {
    color: red;
    /* display: block; */
    font-size: 14px;
    /* margin-top: 5px; */
    text-transform: none;
}
form.jvmform-form .jvmform-condition {
    display: none;
}
form.jvmform-form .jvmform-footer {
    background: #fff;
    padding: 0 15px;
    border-top: 1px solid #f6f6f6;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}
form.jvmform-form .jvmform-footer .jvmform-btn {
    height: 30px;
    display: inline-block;
    line-height: 30px;
    font-size: 20px;
    margin: 0 5px;
}
form.jvmform-form .jvmform-progress-bar {
    height: 10px;
    border-radius: 5px;
    max-width: 200px;
    background: #f6f6f6;
    display: inline-block;
    overflow: hidden;
    line-height: 0;
    flex: 1;
    margin-right: 20px;
}
form.jvmform-form .jvmform-progress-bar span {
    display: inline-block;
    width: 0%;
    height: 100%;
    background: #105aa2;
    transition: all 0.5s ease;
}

@font-face {
    font-family: "jvmform";
    src: url("../fonts/jvmform.eot?p7vt47");
    src: url("../fonts/jvmform.eot?p7vt47#iefix") format("embedded-opentype"),
        url("../fonts/jvmform.ttf?p7vt47") format("truetype"),
        url("../fonts/jvmform.woff?p7vt47") format("woff"),
        url("../fonts/jvmform.svg?p7vt47#jvmform") format("svg");
    font-weight: normal;
    font-style: normal;
}
[class^="icon-"],
[class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "jvmform" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-check:before {
    content: "\F00C";
}

.icon-close:before {
    content: "\F00D";
}

.icon-remove:before {
    content: "\F00D";
}

.icon-times:before {
    content: "\F00D";
}

.icon-chevron-left:before {
    content: "\F053";
}

.icon-chevron-right:before {
    content: "\F054";
}

.icon-chevron-up:before {
    content: "\F077";
}

.icon-chevron-down:before {
    content: "\F078";
}

.icon-paper-plane:before {
    content: "\F1D8";
}

.icon-send:before {
    content: "\F1D8";
}

label {
    display: inline-block !important;
}

/* Custom css */
input[type="password"] {
    width: 69%;
    margin-bottom:12px;
}

#logo {
    /* display:inline;
  position:absolute; */
    margin-top: 5px;
    margin-left: 5px;
    /* background:#D5E6F8 !important; */
}

.input-field {
    height: 34.67px !important;
}

.select2-container .select2-selection--single{
  padding:5px;
  height:38.67px;
}

#year{
  display:none;
}

#anugrah-date, #anugrah-year{
  display:none;
  
}

#a-year, #a-date, #a-place, #a-event{
  width:100%;
}

#thanks{
    display:none;
   
}
#thank-inside{
    margin-top:200px;

}

#education, #designation, #company{
    width:61%;
}

#designation, #company{
    width:75%;
}
.first-title{
    font-size:30px !important;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 730px) and (-webkit-min-device-pixel-ratio: 2) {
    #education, #designation, #company{
        width:78%;
    } 
}
