/* CSS Document */

a {
    text-decoration: none;
    color: inherit;
    transition: all ease .5s;
    -moz-transition: all ease .5s;
    -webkit-transition: all ease .5s;
    -o-transition: all ease .5s;
    -ms-transition: all ease .5s;
}

a:hover {
    text-decoration: none;
    color: #E03A3E;
    /*color: #0056b3;*/
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bodoni';
}

.bodoni{
  font-family: 'Bodoni' !important ;
}

.text-dark-grey {
    color: #726565;
}

.a-none{
  text-decoration: none !important;
  color: #000 !important;

}

.a-none:hover{
  color: #E03A3E !important; 
}

h2 {
    font-size: 24px;
    font-weight: bold;
    background: url(/images/TEST.svg) no-repeat;
    background-size: contain;
    padding: 16px 0px 5px 20px;
    background-position: -5px 0;
    margin-bottom: 20px;
    color: #000;
}

button:focus {
    outline: 0px auto -webkit-focus-ring-color !important;
}

.font-teko {
    font-family: 'Teko';
}

.border-radius-5 {
    border-radius: 5px;
}

.border-radius-100 {
    border-radius: 100px;
}

.custom-radius-01 {
    border-radius: 0px 10px 10px 0px
}

.bg-blue {
    background-color: #00588B;
}

.btn-primary {
    color: #fff;
    background-color: #7cabce;
    border-color: #7cabce;
}

.btn-primary:hover {
    color: #fff;
    background-color: #6494b7;
    border-color: #6494b7;
}


.btn-primary-2 {
    color: #726565;
    background-color: #fff;
    border-color: #726565;
}

.btn-primary-2:hover {
    color: #726565;
    background-color: #fbfbfb;
    border-color: #726565;
}

.bg-yellow {
    background-color: #EFAF00
}

.bg-yellow-light {
    background-color: #f7d77f
}

.bg-light-blue {
    background: #343961
}

.bg-dark-blue {
    background: #01073d
}

.bg-dark-grey {
    background-color: #e3e2e1
}

.bg-offwhite {
    background-color: #f2f2f2
}

.text-grey-dark {
    color: #434343
}


.custom-border-grey {
    border: 1px solid #dee2e6
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-24 {
    font-size: 24px;
}

.fs-26 {
    font-size: 26px;
}

.fs-30 {
    font-size: 30px;
}

.fw-100 {
    font-weight: 100;
}

.fw-300 {
    font-weight: 300;
}

.fw-500 {
    font-weight: 500;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.min-width-150 {
    min-width: 150px;
}

.text-grey {
    color: #7a7a7a
}

.text-black {
    color: #000;
}

.text-yellow {
    color: #CFA35C;
}

.text-blue {
    color: #191F50
}

.text-red {
    color: #E03A3E
}

.h-40 {
    height: 40px !important;
}

.w-50 {
    width: 50px !important;
}

.w-120 {
    width: 120px;
}

.w-140 {
    width: 140px;
}

.w-160 {
    width: 160px;
}

.w-170 {
    width: 170px;
}

.line-height-normal {
    line-height: normal
}

.custom-blue-shadow {
    box-shadow: 0px 0px 15px 0px rgba(0, 80, 200, 0.20);
}

textarea {
    resize: none
}

.z-index-100 {
    z-index: 100
}

.z-index-1 {
    z-index: 1
}

.opacity-1 {
    opacity: 0.2
}




.common-radio-btn [type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.common-radio-btn [type="radio"]:checked+label,
.common-radio-btn [type="radio"]:not(:checked)+label {
    min-width: 210px;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    font-size: 16px;
}

.common-radio-btn [type="radio"]:checked+label:before,
.common-radio-btn [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #80839e;
    border-radius: 100%;
}

.common-radio-btn [type="radio"]:checked+label:after,
.common-radio-btn [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #c93e40;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.common-radio-btn [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.common-radio-btn [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}