/*BODY CHAGES*/
@font-face {
    font-family: "Sora";
    src: url("./sora.ttf") format("truetype");
}

body {
    /* font-family: "Muli" !important; */
    /* font-family: "Roboto", sans-serif !important; */

    font-family: sora !important;


    color: #495057 !important;
}

fieldset {
    text-align: left;
}

.text-color{
    /* color: #00264d !important; */
    color: #4CAF50 !important;
}

.table-color{
    /* color: #00264d !important; */
    color: #4CAF50 !important;
}

.link-white  {
    color: white !important;
}

.btn-color{
    /* background: #00264d !important; */
    /* background: #4CAF50 !important;
    color: white !important; */
    transition: background 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.btn-color:hover {
    /* background: #00468c !important; */
    /* background: #4CAF50 !important;
    color: white !important; */
}

/*a:focus,
a:hover {
    text-decoration: none !important;
}*/

input.custom-control-input:focus {
    outline: 0px auto -webkit-focus-ring-color !important;
}

/*SELECT OPTION START*/
select option:first-child {
    color: #495057;
    font-size: 14.5px !important;
    text-transform: uppercase;
    text-decoration: overline;
    font-family: "Roboto", sans-serif !important;

}

.select-2 {
    width: 100%;
    height: 42px;
    padding: .375rem .75rem;
    font-size: 14.5px;
    color: #495057;
    border: none !important;
    border-radius: 5px;
}

.select-2 {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    /* no standardized syntax available, no ie-friendly solution available */
}

.select-2:focus {
    outline: none !important;
}

.select-2 {
    /*for select arrow*/
    background-image: linear-gradient(45deg, transparent 50%, grey 50%), linear-gradient(135deg, grey 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 20px) calc(1em + 4px), calc(100% - 15px) calc(1em + 4px), calc(100% - 2.5em) 0.7em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
	background-color: white;
    font-family: "Roboto", sans-serif !important;

}

.select-2:focus {
    /*for select arrow*/
    background-image: linear-gradient(45deg, grey 50%, transparent 50%), linear-gradient(135deg, transparent 50%, grey 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 15px) 1.2em, calc(100% - 20px) 1.2em, calc(100% - 2.5em) 0.7em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    border-color: green;
    outline: 0;
	background-color: white;
}
/*.select-2:hover option{
    outline-color: #009900;
}*/

select option[value=""][disabled] {
    display: none;
    font-family: "Roboto", sans-serif !important;

}
/*SELECT OPTION END */

.form-header {
    /*margin: 0 -30px;*/
    margin-bottom: 30px !important;
    /* background: #00264d; */
    background: #4CAF50;
    padding: 15px;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.24);
    color: white !important;
}

/*LABEL PROPERTIES*/
label {
    font-size: 15px;
    font-weight: 500;
}

.form-control {
    height: 42px !important;
    border: none !important;
    font-size: 14.5px;
}

/*CHECKBOX AND RADIO BUTTONS*/
.pretty .state label {
    font-size: 14.5px;
}

.pretty .state label:after,
.pretty .state label:before {
    top: calc((0% - (100% - 1.2em)) - 0%) !important;
}

.pretty.p-icon .state .icon:before {
    line-height: 0 !important;
}

.pretty.p-icon .state .icon {
    top: calc((0% - (100% - 1.05em)) - 1%) !important;
    left: -0.9px !important;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

/*DATEPICKER*/
.datepicker-here {
    text-transform: uppercase;
}

.form-control:focus {
    box-shadow: none !important;
    border-color: red !important;
}

.submit-text {
    color: #009900;
}

/*SUBMIT SVG SIZE*/
.ty-svg {
    width: 100px;
    display: block;
    margin: 40px auto 0;
}

.path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}

.path.circle {
    -webkit-animation: dash 0.9s ease-in-out;
    animation: dash 0.9s ease-in-out;
}

.path.line {
    stroke-dashoffset: 1000;
    -webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
    animation: dash 0.9s 0.35s ease-in-out forwards;
}

.path.check {
    stroke-dashoffset: -100;
    -webkit-animation: dash-check 0.9s 0.35s ease-in-out forwards;
    animation: dash-check 0.9s 0.35s ease-in-out forwards;
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }
    100% {
        stroke-dashoffset: 900;
    }
}

@keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }
    100% {
        stroke-dashoffset: 900;
    }
}

/*SIZE FOR MOBILE DEVICES*/
@media (max-width: 991px) {
    .thankyou-text {
        font-size: 1.2rem;
    }
    .form-header {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .thankyou-text {
        font-size: 0.9rem;
    }
    .form-header {
        font-size: 20px;
    }
}
.navbar-expand-lg .navbar-nav.side-nav{flex-direction: column;}
.card{margin-bottom: 15px; border-radius:0; box-shadow: 0 3px 5px rgba(0,0,0,.1); }
.header-top{box-shadow: 0 3px 5px rgba(0,0,0,.1)}
.leftmenutrigger{display: none}
@media(min-width:992px) {
.leftmenutrigger{display: block;display: block;margin: 7px 20px 4px 0;cursor: pointer;}
#wrapper{padding: 90px 15px 15px 15px; }
.navbar-nav.side-nav.open {left:0;}
.navbar-nav.side-nav{background: #585f66;box-shadow: 2px 1px 2px rgba(0,0,0,.1);position:fixed;top:56px;flex-direction: column!important;left:-220px;width:200px;overflow-y:auto;bottom:0;overflow-x:hidden;padding-bottom:40px}
}
.animate{-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-ms-transition:all .3s ease-in-out;transition:all .3s ease-in-out}

/* CSS Document */

.wrapper-a {
    background-color: white;
    border-radius: 10px;
    border: .5px rgba(0, 0, 0, 0.24) solid;
}

.wrapper-ap
{
    background-color: white;
    border-radius: 10px;
}

/*ERROR STYLING*/
.error {
    border: 1px solid #428bca7a !important;
}

.error:focus {
    border: 1px solid #428bca7a !important;
}

/*FOR WIZARD*/
#wizard fieldset:not(:first-of-type) {
    display: none;
}

#wizard .action-button {
    padding: 0;
    border: none;
    border-radius: 10px;
    background-color: #009900;
    height: 41px;
    /* font-family: "Muli" !important; */
    font-family: "Roboto", sans-serif !important;

    font-size: 14.5px;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    float: right;
}

#wizard .action-button:hover,
#wizard .action-button:focus {
    text-decoration: none !important;
    outline: 0px auto -webkit-focus-ring-color !important;
}

#wizard .action-button-previous {
    padding: 0;
    border: none;
    border-radius: 10px;
    background-color: #009900;
    height: 41px;
    /* font-family: "Muli" !important; */
    font-family: "Roboto", sans-serif !important;

    font-size: 14.5px;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    float: left;
}

#wizard .action-button-previous:hover,
#wizard .action-button-previous:focus {
    text-decoration: none !important;
    outline: 0px auto -webkit-focus-ring-color !important;
}

#progressbar {
    margin-bottom: 10px;
    overflow: hidden;
    text-align: center;
    color: lightgrey
}

#progressbar .active {
    color: #009900
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 14%;
    float: left;
    position: relative;
    font-weight: 400
}

/*FOR ICONS IN PROGRESS BAR*/
#progressbar #personal:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f205";
}

#progressbar #academics:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f222"
}

#progressbar #pqualification:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f11c"
}


#progressbar #experiences:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f223"
}

#progressbar #interest:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f109"
}

#progressbar #passport:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f21e"
}

#progressbar #preview:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f15c"
}

#progressbar #finish:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f26b";
    font-weight: bolder;
}
/*NOT IN PROGRESS BAR////////////*/
#eye:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f15c";
    font-weight: bolder;
}

#save:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f297";
    font-weight: bolder;
}

#lock:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f191";
    font-weight: bolder;
}

#create_acct:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f1ff";
    font-weight: bolder;
}

#personal:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f205";
}

#academics:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f222";
}

#pqualification:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f11c";
}


#experiences:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f223";
}

#interest:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f109";
}

#passport:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f21e";
}

#button-upload:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f21e";
}

#button-download:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f21a";
}

#arrow-left:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f2ea"; /* Code for the left arrow */
    margin-right: 10px; /* Optional: Add some spacing to the right of the arrow */
}

#printer:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f1b0";
    /*font-weight: bolder;*/
}
 
#mail-send:before{
    font-family: Material-Design-Iconic-Font;
    content: "\f194";
    /*font-weight: bolder;*/
}

#credit-card:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f198"; /* Use the correct code for the credit card icon */
}


#folder-person:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f225";
    /*font-weight: bolder;*/
}

#dashboard:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f31c";
    /*font-weight: bolder;*/
}

#list-numbered:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f248";
    /*font-weight: bolder;*/
}

#accounts-alt:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f209";
    /*font-weight: bolder;*/
}

#accounts-list-alt:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f20a";
    /*font-weight: bolder;*/
}

#accounts-list:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f20b";
    /*font-weight: bolder;*/
}

#accounts-outline:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f20c";
    /*font-weight: bolder;*/
}

#accounts:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f20d";
    /*font-weight: bolder;*/
}

#account-box-mail:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f200";
    /*font-weight: bolder;*/
}

#pdf:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f14d";
    /*font-weight: bolder;*/
}

#finish:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f26b";
    font-weight: bolder;
}

#person:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f225";
    font-weight: bolder;
}

#previco:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f3b5";
    font-weight: bolder;
}
#nextico:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f3b4";
    font-weight: bolder;
}
#bulleted:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f26f";
    font-weight: bolder;
}

#arrow-right:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f2f5";
    font-weight: bolder;
}


#thumb-up:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f1de";
    font-weight: bolder;
}
#info:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f1f7";
    font-weight: bolder;
}
#skillz:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f1c8";
    font-weight: bolder;
}

#edit:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f25d";
    font-weight: bolder;
}

#plus:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f14e";
    /*font-weight: bolder;*/
}

#keyboard-hide:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f2a3";
    /*font-weight: bolder;*/
}

#settings:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f1c6";
    /*font-weight: bolder;*/
}



#progressbar li:before {
    width: 40px;
    height: 40px;
    display: block;
    font-size: 20px;
    font-size: x-large;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: #009900
}

.progress {
    height: 6px
}

.progress-bar {
    background-color: #009900
}

/*FOR MOBILE VERSION*/
@media (max-width: 767px) {
    #progressbar #love #love1 {
        display: none !important;
    }
    #info {
        display: none !important;
    }
    .next,
    .previous {
        max-width: 90px !important;
    }
}

@media (max-width: 991px) {
    #info {
        display: none !important;
    }
    .next,
    .previous {
        max-width: 100px !important;
    }
}
/*/PREVIEW SUBMISSION*/
.predetailsdivs{
    background-color: white;
    border-radius: 10px;
}
/*Remove the default top margin of the dropdown menus*/
.dropdown-menu {
  margin-top: 0;
}

.navbar .nav-item:not(:last-child) {
  margin-right: 15px;
}
 
.dropdown-toggle::after {
   transition: transform 0.15s linear; 
}
 
.show.dropdown .dropdown-toggle::after {
  transform: translateY(3px);
}

/* loading dots */

.loading:after {
  content: ' .';
  animation: dots 1s steps(5, end) infinite;}

@keyframes dots {
  0%, 20% {
    color: rgba(0,0,0,0);
    text-shadow:
      .25em 0 0 rgba(0,0,0,0),
      .5em 0 0 rgba(0,0,0,0);}
  40% {
    color: black;
    text-shadow:
      .25em 0 0 rgba(0,0,0,0),
      .5em 0 0 rgba(0,0,0,0);}
  60% {
    text-shadow:
      .25em 0 0 black,
      .5em 0 0 rgba(0,0,0,0);}
  80%, 100% {
    text-shadow:
      .25em 0 0 black,
      .5em 0 0 black;}
}
