/* Reset */
body{
  color: #353735;
  font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif !important;
}

/* Utility Classes */
.bg-gray{
  background-color: #fff;
}
.text-12{
  font-size: 12px;
}
.text-14{
  font-size: 14px;
}
.text-20{
  font-size: 18px;
}
.text-weight-100{
    font-weight: 100;
}
.position-relative{
  position: relative;
}
.display-none{
  display: none;
}


/* Bootstrap Override */
.navbar{
  height: 70px;  
}
.navbar-light{
  background-color: #fff !important;
  box-shadow: 0 0 4px rgba(0,0,0,.1);
}
.navbar .nav-link{
  padding: 3px 1rem;
}
.navbar .navbar-brand{
  padding-top: 0;
}

.container{
  
}
.full-height{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.btn-primary {
  color: #fff;
  background-color: #c41228;
  border-color: #c41228;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  color: #fff;
  background-color: #e6002e;
  border-color: #e6002e;
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle{
  color: #fff;
  background-color: #f03;
  border-color: #f03;
}
.custom-checkbox .custom-control-label::before{
    border-radius: 0;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
  background-color: #c41228;
}

.custom-control-input:checked~.custom-control-label::before {
  color: #fff;
  background-color: #c41228;
}
.custom-radio .custom-control-input:checked~.custom-control-label::before {
  background-color: #c41228;
}
.custom-control-input:checked~.custom-control-label::before {
  color: #fff;
  background-color: #c41228;
}
.custom-control-label::before {
  top: .02rem;
  width: 1.25rem;
  height: 1.2rem;
}
.custom-control-label::after {
  top: .15rem;
  left: .15rem;
  background-position: center center;
  background-size: 70% 70%;
}

.badge{
  border-radius: 0;
}
.form-control{
  border-radius: 10px;
  font-size: 0.875rem;
  padding: .55rem .75rem;
}
.form-control.error{
    border: 1px solid #f03;
}
.form-control.in-valid{
  border-color: #f03;
}
.form-control.valid{
  border-color: #ced4da !important;
}
label{
  font-size: .875rem;
  line-height: 1.4;
}
label.error{
  color: #f03;
}
button, .btn{
  border-radius: 0 !important;
  font-weight: 700 !important;
}

.custom-control-label::before{
    background-color: #fff;
    border: 1px solid #ced4da;
}
.navbar-light .navbar-nav .nav-link{
  color: #0cc;
}

select.form-control:not([size]):not([multiple]) {
  height: calc(2.25rem + 4px);
}

.form-control:focus {
  box-shadow: none;
  border-color: #ced4da;
}

.btn-primary.focus, .btn-primary:focus {
  box-shadow: none;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow:none !important;
}

/* Datetimepicker Override */
.bootstrap-datetimepicker-widget table td.today:before {
  content: '';
  display: inline-block;
  border: solid transparent;
  border-width: 0 0 7px 7px;
  border-bottom-color: #f03;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}
.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #f03;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget table td span.active {
  background-color: #f03;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{
  width:54px;font-weight:bold;font-size:0.875rem !important;margin:0
}
.bootstrap-datetimepicker-widget table td.cw{
  font-size:.7rem !important;height:20px;line-height:20px;color:#dee2e6
}

/* Form disable */
.form-onsubmit-disable {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color: #efe6e64d;
  display: flex; 
  align-items: center;
  z-index: 999;
}

.onsubmit-spin {
  margin: 0 auto;
  width: 150px;
  height: 150px;
  color: #fff;
  display: flex; 
  align-items: center;
  text-align:center;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -75px;
  margin-left: -75px;
}

.onsubmit-spin:before {
position:absolute;
  content: "";
  width: 100%;
}

.onsubmit-spin svg path,
.onsubmit-spin svg rect{
  fill: rgba(255,255,255,0.4);
}

/* spinner */
.spinner {
  -webkit-animation: rotator 1.4s linear infinite;
          animation: rotator 1.4s linear infinite;
}

@-webkit-keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}

@keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}
.path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
          animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@-webkit-keyframes colors {
  0% {
    stroke: #f03;
  }
  33% {
    stroke: #0cc;
  }
  66% {
    stroke: #f90;
  }
  100% {
    stroke: #f03;
  }
}

@keyframes colors {
  0% {
    stroke: #f03;
  }
  33% {
    stroke: #0cc;
  }
  66% {
    stroke: #f90;
  }
  100% {
    stroke: #f03;
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}


/* Page specific */
.newsletter-bg{
    background: #e6ffff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAKElEQVQYV2NkQAO3nj37z4gsBhJQk5JihAvCBECKwILIAmBBdAGQIAD3KhOrR1QlqAAAAABJRU5ErkJggg==) repeat;
}

.lang-switch{
  right: 30px;
  top: 5px;
  z-index: 990;
}

.lang-switch-links .badge-light{
  background-color: #ccc;
}

.lang-switch .active .nav-link {
  background-color: #f03 !important;
  color: #fff !important;
  margin: 0 10px;
}
.lang-switch .badge {
  padding: 6px 10px;
}

.main-title {
  width: 100%;
  max-width: 760px;
  margin: auto;
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 700;
}

/* Theme Color Changes */
.section-title {
  padding : 8px 8px;
  border-radius: 5px;
  background-color: #c41228;
}

.text-color-white {
  color: #ffffff;
}

.bg-red {
  background-color: #c41228;
}

.bg-red-btn {
  border-color: #c41228;
  background-color: #c41228;
  font-size: 18px;
  font-weight: normal!important;
}

.bg-red-btn2 {
  border-color: #c41228;
  background-color: #c41228;
  font-size: 14px;
  font-weight: normal!important;
  text-align: center!important;
}
.bg-center {
  margin: 0;
  position: absolute;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.bg-red-btn:hover {
  border-color: #d21930;
  background-color: #d21930;
}

.btn-curve {
  border-radius: 6px!important;
}

.site-logo {
  width: 180px;
  height: 65px;
margin-top: 4px;
margin-Bottom: 4px;
}

.title-text {
   font-size: 15px;
   font-weight: bold;
}

.text-color-red{
 color: #c41228;
}


.mg-sm-row {
 margin-bottom: 0px;
 margin-top: 15px;
}

.mg-bt-row {
 margin-bottom: 10px;
}

.em-text {
 font-style: italic;
}

.justify-text {
 text-align: justify;
}

.custom-message-box {
 padding : 0 35px;
 margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .custom-message-box {
   padding : 0 0;
   margin-top: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .col-sm-4.check-box-col-view {
   flex: 0 0 100%;
   max-width: 100%;
  }
}

.link-btn{
  margin-top: 20px;
}