/*BODY CHAGES*/
body {
    color: #292929 !important;
    font-family: "Muli" !important;
}

fieldset {
    text-align: left;
}

a:focus,
a:hover {
    text-decoration: none !important;
}

input.custom-control-input:focus {
    outline: 0px auto -webkit-focus-ring-color !important;
}

.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;
}

.form-group label {
margin-bottom: 5px;	
}
    

/*SELECT OPTION START*/
select option:first-child {
    color: #495057;
    font-size: 14.5px !important;
    text-transform: uppercase;
    text-decoration: overline;
} 

.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;
}

.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 option[value=""][disabled] {
    display: none;
}
/*SELECT OPTION END */

.form-header {
    /*margin: 0 -30px;*/
    margin-bottom: 30px !important;
    background: #BA0C2F;
    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: #BA0C2F;
}

/*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;
    }
}