/* Headings */
*, *:after, *:before {
    box-sizing: border-box;
}
input, textarea, select, button {
    font-family: "Montserrat";
}
body {
    margin: 0;
    background-color: #f5f5f5;
    font-size: 16px;
}
h1 {
    font-size: 2.5em;
    font-weight: 900;
    font-family: "Montserrat";
    color: #211e5c;
    margin-bottom: 0px; }

h2 {
    font-size: 1.375em;
    font-weight: 600;
    line-height: 32px;
    font-family: "Montserrat";
    color: #151250;
    margin-bottom: 0px; }

h3 {
    font-size: 1.125em;
    font-weight: 500;
    line-height: 29px;
    font-family: "Montserrat";
    color: #151250;
    margin-bottom: 0px; }

p {
    font-size: 1em;
    font-weight: 400;
    line-height: 29px;
    font-family: "Montserrat";
    color: #838383;
    margin-bottom: 0px; }

.image-full {
    max-width: 100%;
    height: auto;
    display: block; }

a {
    outline-color: #4a90e2; }

button:active,
button:focus {
    outline: none;
    border: none; }


/* Global / Columns */
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
.flex--row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row; }
.flex--wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
.flex--column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
.flex--jc-sb {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
.flex--jc-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
.flex--jc-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
.flex--ai-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }

.g-container {
    max-width: 1200px;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
    position: relative; }

.g-col-6 {
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%; }

.g-col-4 {
    max-width: 33.333333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 33.333333%;
    flex: 0 1 33.333333%; }

.g-col-5 {
    min-width: 41.6666666667%;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 41.6666666667%;
    flex: 0 1 41.6666666667%; }

.g-col-8 {
    max-width: 66.666666%;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 66.666666%;
    flex: 0 1 66.666666%; }


/* Slider */
.slider {
    position: relative; }
.slider.slider--map {
    background-color: #0b0a35;
    background-image: url("map.png");
    background-blend-mode: luminosity;
    background-repeat: no-repeat;
    background-size: cover; }
.slider.slider--fixed-height {
    min-height: 210px; }

/* Flex */
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
.flex--row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row; }
.flex--jc-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }

/* main */
.app-main {
    min-height: 50vh; }
.app-main.app-main--grey {
    background-color: #f5f5f5; }


.signin .form .form__title {
    margin-bottom: 39px; }

.signin .form.form--translate {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    margin-bottom: 0; }

.signin .form > p {
    padding: 2px 0; }


/* btn */
.btn {
    display: inline-block;
    background: none;
    border: none;
    outline: 0;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.75em;
    font-weight: 500;
    font-family: "Montserrat";
    color: #4a90e2;
    margin-bottom: 0px; }
.btn--sm {
    padding: 5px 20px; }
.btn--md {
    padding: 10px 26px; }
.btn--l {
    padding: 15px 65px;
    font-size: 1em; }
.btn--center {
    margin-left: auto;
    margin-right: auto; }
.btn--primary {
    border: 1px solid #4a90e2;
    -webkit-transition: color .2s ease-in;
    transition: color .2s ease-in; }
.btn--primary:hover {
    color: #fff;
    background: #4a90e2; }


/* form */
.signin .form::before {
    content: url('/app/dist/images/icons/signin.png');
    display: inline-block;
    width: 64px;
    height: 64px;
    position: absolute;
    top: -60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.form {
    width: 100%;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.09);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.09); }
.form__group {
    position: relative;
}
.form .form__text.form__text--center {
    text-align: center; }
.form .form__input {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 0;
    border: none;
    border: 1px solid #dfe5eb;
    font-size: 0.875em;
    font-weight: 400;
    font-family: "Montserrat";
    color: #838383;
    margin-bottom: 0px;
    outline-color: #4a90e2;
    will-change: border-color;
    -webkit-transition: border-color .4s;
    transition: border-color .4s; }
.form .form__input:focus {
    border-color: #4a90e2; }
.form .form__input.form__error {
    border-color: #D50000;
    color: #D50000; }
.form .form__group {
    margin: 10px 0 19px; }
.form.form--white {
    background: #fff; }
.form.form--padding-m {
    padding: 35px 45px; }
.form.form--translate {
    -webkit-transform: translateY(-35px);
    transform: translateY(-35px);
    margin-bottom: 70px; }
.form .form__title {
    font-size: 1.5em;
    margin-bottom: 15px; }
.form .form__title.form__title--center {
    text-align: center; }
.form .form__link {
    font-size: 0.875em;
    font-weight: 500;
    font-family: "Montserrat";
    color: #4a90e2;
    margin-bottom: 0px;
    will-change: color;
    -webkit-transition: color .2s;
    transition: color .2s; }
.form .form__link:hover {
    color: #4a90e2; }
.form .form__link.form__link--no-decoration {
    text-decoration: none; }
.form .form__forgout-password {
    color: #838383;
    font-weight: 400; }
.form .form__forgout-password:hover {
    color: #4a90e2; }
    .form .form__input-icon {
        position: absolute;
        top: 50%;
        left: 17px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .form .form__input-icon + .form__input {
        padding-left: 60px;
    }

.sprite.sprite--user, .sprite.sprite--pass { display: inline-block; background: url('/app/dist/images/icons/sprite.png') no-repeat; overflow: hidden; text-indent: -9999px; text-align: left; }

.sprite.sprite--user { background-position: -0px -163px; width: 23px; height: 23px; }
.sprite.sprite--pass { background-position: -0px -247px; width: 18px; height: 24px; }

@media screen and (max-width: 768px) {
    .signin .g-col-5 {
        max-width: 66.666666%;
        flex: 0 1 66.666666%;
    }
}

@media screen and (max-width: 576px) {
    .signin .g-col-5 {
        flex: 0 1 100%;
        max-width: 100%;
      }
      .signin .signin__button {
        flex: 0 1 100%;
        max-width: 100%;
      }
      .signin .form.form--padding-m {
        padding: 35px 30px;
      }
      .signin .form .form__forgout-password {
        margin-bottom: 15px;
      }
}

.custom-filter-btn {
    max-width: 150px !important;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.custom-filter-btn:not(:first-child) {
    padding: 10px;
}

.link {
    cursor: pointer;
}

.link:hover {
    color: #1101ff;
    text-decoration: underline;
}

.underline {
    font-weight: 500;
    color: #1101ff;
}
