/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/

@import url("./fonts/fonts.css");

body {
    color: #585757 !important;
    font-size: 16px;
    font-family: 'Now';
}

#main-col {
    margin-top: 0;
}

.line-height-reset {
    line-height: 1.42857143 !important;
}

.max-w-100 {
    max-width: 100% !important;
}

.w-100 {
    width: 100% !important;
}

/**
===== Typography =====
**/
a {
    color: #585757;
    text-decoration: underline;
}

.text-primary {
    color: #116AB2;
}

.font-weight-normal {
    font-weight: 400 !important;
}

/**
===== Forms =====
**/
label {
    font-weight: 400;
}

.form-control, input.form-control {
    border-radius: 0;
    color: #585757;
    font-size: 18px;
    padding: 3px 5px;
    height: 36px;
    border: 1px solid #585757;
}

input[type="checkbox"] {
    box-shadow: 0 3px 5px rgba(0, 0, 0, .16);
}

input[type="checkbox"]:checked::before {
    border-color: #116AB2;
}

input[type="checkbox"]::after, input[type="checkbox"]:checked::after {
    margin-right: 0;
    border-color: #116AB2;
}

.radio-item label::before {
    top: 2px;
}

.radio-item label::after {
    background-color: #116AB2;
    top: 5px;
}

.checkbox-item label::before {
    top: 2px;
}

.checkbox-item label::after {
    background: none;
    padding-top: 0;
    top: 3px;
    left: 0;
    font-size: 12px;
    color: #116AB2;
}

td.radio-item label, td.checkbox-item label {
    top: 1px;
}

td.radio-item label::before, td.checkbox-item label::before {
    top: 0;
}

td.radio-item label::after, td.checkbox-item label::after {
    top: 3px;
}


/**
===== Panels =====
**/
.panel {
    border-width: 2px;
    border-radius: 10px;
}

.panel-heading {
    background: #116AB2;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    border-bottom: none;
}

.panel-footer {
    background: #E7E7E7;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.panel-primary {
    border-color: #116AB2;
}

.panel-primary > .panel-heading {
    background: #116AB2;
}

/**
===== Buttons =====
**/
.btn, .btn:hover, .btn:active, .btn:focus {
    border-radius: 0;
    border: 2px solid #0B4473;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .16);
    transition: all .3s;
    font-weight: 500;
    text-decoration: none;
}

.btn, .btn-lg {
    font-size: 18px;
    padding: 4px 15px;
    line-height: 1.333;
}

.btn[disabled] {
    border: 2px solid #403F3F !important;
    background: #C2C2C2 !important;
    color: #fff !important;
}

.btn-primary {
    background: #116AB2;
    border-color: #116AB2;
    color: #fff;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
    border-color: #0B4473;
    background: #fff;
    color: #116AB2;
}

.btn-primary:active, .btn-primary:focus {
    background: #f3f3f3;
}

.btn-default, .btn-info {
    color: #116AB2;
    background: #fff;
}

.btn-default:hover, .btn-info:hover {
    color: #116AB2;
    background: #fff;
}

.btn-default:hover, .btn-default:active, .btn-default:focus, .btn-info:hover, .btn-info:active, .btn-info:focus {
    color: #fff;
    background: #0B4473;
}

.btn-default:active, .btn-default:focus, .btn-info:active, .btn-info:focus {
    color: #fff;
    background: #3a6588;
}

/**
===== Navbar =====
**/
.navbar {
    background: #fff;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .16);
    min-height: 90px;
}

.navbar .nav {
    margin: 20px 0;
}

.navbar .nav a {
    text-decoration: none;
}

@media (min-width:768px) {
    .navbar-right {
        position: absolute;
        top: 0;
        right: 0;
    }
}

/**
===== Language selector =====
**/
.form-change-lang .control-label {
    margin-right: 15px;
    font-size: 18px;
}

.form-change-lang .language_change_container {
    width: 100%;
}

.form-change-lang label {
    margin-bottom: 0;
}

/**
===== Alerts =====
**/
.alert-dismissable .close, .alert-dismissible .close {
    top: 1px;
}

.alert-warning {
    background: #fff;
    border-color: #965B39;
    color: #965B39;
}

/**
===== Progress-bar =====
**/
.progress-bar {
    background: #116AB2;
}

/**
===== Spacer classes =====
**/
.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.mt-0, .my-0 {
  margin-top: 0px !important;
}

.mb-0, .my-0 {
  margin-bottom: 0px !important;
}

.ml-0, .mx-0 {
  margin-left: 0px !important;
}

.mr-0, .mx-0 {
  margin-right: 0px !important;
}

.pt-0, .py-0 {
  padding-top: 0px !important;
}

.pb-0, .py-0 {
  padding-bottom: 0px !important;
}

.pl-0, .px-0 {
  padding-left: 0px !important;
}

.pr-0, .px-0 {
  padding-right: 0px !important;
}

.mt-1, .my-1 {
  margin-top: 5px !important;
}

.mb-1, .my-1 {
  margin-bottom: 5px !important;
}

.ml-1, .mx-1 {
  margin-left: 5px !important;
}

.mr-1, .mx-1 {
  margin-right: 5px !important;
}

.pt-1, .py-1 {
  padding-top: 5px !important;
}

.pb-1, .py-1 {
  padding-bottom: 5px !important;
}

.pl-1, .px-1 {
  padding-left: 5px !important;
}

.pr-1, .px-1 {
  padding-right: 5px !important;
}

.mt-2, .my-2 {
  margin-top: 10px !important;
}

.mb-2, .my-2 {
  margin-bottom: 10px !important;
}

.ml-2, .mx-2 {
  margin-left: 10px !important;
}

.mr-2, .mx-2 {
  margin-right: 10px !important;
}

.pt-2, .py-2 {
  padding-top: 10px !important;
}

.pb-2, .py-2 {
  padding-bottom: 10px !important;
}

.pl-2, .px-2 {
  padding-left: 10px !important;
}

.pr-2, .px-2 {
  padding-right: 10px !important;
}

.mt-3, .my-3 {
  margin-top: 15px !important;
}

.mb-3, .my-3 {
  margin-bottom: 15px !important;
}

.ml-3, .mx-3 {
  margin-left: 15px !important;
}

.mr-3, .mx-3 {
  margin-right: 15px !important;
}

.pt-3, .py-3 {
  padding-top: 15px !important;
}

.pb-3, .py-3 {
  padding-bottom: 15px !important;
}

.pl-3, .px-3 {
  padding-left: 15px !important;
}

.pr-3, .px-3 {
  padding-right: 15px !important;
}

.mt-4, .my-4 {
  margin-top: 20px !important;
}

.mb-4, .my-4 {
  margin-bottom: 20px !important;
}

.ml-4, .mx-4 {
  margin-left: 20px !important;
}

.mr-4, .mx-4 {
  margin-right: 20px !important;
}

.pt-4, .py-4 {
  padding-top: 20px !important;
}

.pb-4, .py-4 {
  padding-bottom: 20px !important;
}

.pl-4, .px-4 {
  padding-left: 20px !important;
}

.pr-4, .px-4 {
  padding-right: 20px !important;
}

.mt-5, .my-5 {
  margin-top: 25px !important;
}

.mb-5, .my-5 {
  margin-bottom: 25px !important;
}

.ml-5, .mx-5 {
  margin-left: 25px !important;
}

.mr-5, .mx-5 {
  margin-right: 25px !important;
}

.pt-5, .py-5 {
  padding-top: 25px !important;
}

.pb-5, .py-5 {
  padding-bottom: 25px !important;
}

.pl-5, .px-5 {
  padding-left: 25px !important;
}

.pr-5, .px-5 {
  padding-right: 25px !important;
}

.mt-6, .my-6 {
  margin-top: 30px !important;
}

.mb-6, .my-6 {
  margin-bottom: 30px !important;
}

.ml-6, .mx-6 {
  margin-left: 30px !important;
}

.mr-6, .mx-6 {
  margin-right: 30px !important;
}

.pt-6, .py-6 {
  padding-top: 30px !important;
}

.pb-6, .py-6 {
  padding-bottom: 30px !important;
}

.pl-6, .px-6 {
  padding-left: 30px !important;
}

.pr-6, .px-6 {
  padding-right: 30px !important;
}

.mt-7, .my-7 {
  margin-top: 35px !important;
}

.mb-7, .my-7 {
  margin-bottom: 35px !important;
}

.ml-7, .mx-7 {
  margin-left: 35px !important;
}

.mr-7, .mx-7 {
  margin-right: 35px !important;
}

.pt-7, .py-7 {
  padding-top: 35px !important;
}

.pb-7, .py-7 {
  padding-bottom: 35px !important;
}

.pl-7, .px-7 {
  padding-left: 35px !important;
}

.pr-7, .px-7 {
  padding-right: 35px !important;
}

.mt-8, .my-8 {
  margin-top: 40px !important;
}

.mb-8, .my-8 {
  margin-bottom: 40px !important;
}

.ml-8, .mx-8 {
  margin-left: 40px !important;
}

.mr-8, .mx-8 {
  margin-right: 40px !important;
}

.pt-8, .py-8 {
  padding-top: 40px !important;
}

.pb-8, .py-8 {
  padding-bottom: 40px !important;
}

.pl-8, .px-8 {
  padding-left: 40px !important;
}

.pr-8, .px-8 {
  padding-right: 40px !important;
}

/**
===== Custom classes =====
**/
.box-container, .well {
    padding: 30px 40px 25px 40px;
    background: #FBF9EF;
    border: none;
    box-shadow: none;
    border-radius: none;
}

.question-container {
    padding: 12px 22px 12px 22px;
    background: #fff;
    border: 3px solid #FBF9EF;
    margin-bottom: 30px;
}

.group-outer-container + #navigator-container {
    margin-top: 0 !important;
}

.dir-ltr .ls-questionhelp::before {
    top: -1px;
}

/**
===== EU Footer =====
**/
.eu-footer .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.eu-footer .row > div {
    float: none;
}

.eu-footer .row > div:last-of-type {
    align-self: flex-start;
    font-weight: 500;
}

.eu-footer p {
    line-height: 1.625;
}

.eu-footer a {
    text-decoration: none;
    color: #116AB2;
}