/* Minification failed. Returning unminified contents.
(444,44): run-time error CSS1046: Expect comma, found '0'
(444,48): run-time error CSS1046: Expect comma, found '/'
(445,41): run-time error CSS1046: Expect comma, found '0'
(445,45): run-time error CSS1046: Expect comma, found '/'
(446,36): run-time error CSS1046: Expect comma, found '0'
(446,40): run-time error CSS1046: Expect comma, found '/'
(2258,25): run-time error CSS1046: Expect comma, found '255'
(2258,33): run-time error CSS1046: Expect comma, found '/'
 */
.btn-solid {
    background-color: #37424A;
    color: #fff;
}

    .btn-solid:not([disabled]):hover,
    .btn-solid:not([disabled]):focus {
        text-decoration: none !important;
        background-color: #F0F0F0;
        color: #000;
    }

.btn-ghost {
    background-color: #fff;
    border: 1px solid #3074FF;
    color: #3074FF;
}

    .btn-ghost:not([disabled]):hover,
    .btn-ghost:not([disabled]):focus {
        text-decoration: none !important;
        background-color: #3074FF;
        color: #fff;
    }

.btn-success {
    background-color: #419641;
    border: 1px solid #419641;
    color: #fff;
}

    .btn-success:not([disabled]):hover,
    .btn-success:not([disabled]):focus {
        text-decoration: none !important;
        background-color: #419641;
        color: #fff;
    }

.btn-solid,
.btn-ghost,
.btn-success {
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    padding: 15px 25px;
    border: 0;
    letter-spacing: 1px;
}

    .btn-solid[disabled],
    .btn-ghost[disabled],
    .btn-success[disabled] {
        opacity: .6;
    }

/*#region CORPORATE-BUTTON*/

.corporate-button {
    display: flex;
    align-content: center;
    justify-content: center;
    padding: 10px;
    background-color: white;
    text-align: center;
    color: inherit;
    border: none;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    border-radius: 9px;
}

    .corporate-button.active,
    input:checked + .corporate-button {
        box-shadow: 0 0px 6px 3px #4372f6;
    }

    .corporate-button:hover,
    .corporate-button:focus {
        cursor: pointer;
        text-decoration: none;
        color: dimgray;
        fill: dimgray;
    }

    .corporate-button:active {
        transform: scale(0.98);
    }

/*#endregion CORPORATE-BUTTON*/

/*#region CORPORATE-LINK*/

.corporate-link {
    color: inherit;
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    text-decoration: none !important;
}

    .corporate-link:not(.active):hover,
    .corporate-link:not(.active):focus-within,
    .corporate-link:not(.active):hover > svg,
    .corporate-link:not(.active):focus-within > svg {
        color: #1e49a2;
        fill: #1e49a2;
    }

    .corporate-link:not(.active):active {
        transform: scale(0.98);
    }

/*#endregion CORPORATE-LINK*/



.btn-link {
    color: #878E94;
    font-weight: 700;
    text-decoration: none;
    padding: 0;
    border: 0;
}

    .btn-link:hover, .btn-link:active, .btn-link:focus, .btn-link:visited {
        text-decoration: none;
        outline: none;
    }

    .btn-link:hover {
        text-decoration: underline;
    }

    .btn-link:active {
        font-weight: 800;
    }

    .btn-link.icon-link .fa {
        margin-left: 3px;
        font-size: 12px;
    }

    .btn-link,
    .btn-link.active,
    .btn-link:active,
    .btn-link[disabled] {
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none
    }

        .btn-link,
        .btn-link:active,
        .btn-link:focus,
        .btn-link:hover {
            border-color: transparent
        }

            .btn-link[disabled]:focus,
            .btn-link[disabled]:hover {
                color: #777;
                text-decoration: none
            }

            .btn-link img {
                vertical-align: sub;
            }

/* Btn Loading */
.btn-solid .loading, .btn-ghost .loading {
    display: none;
}

.btn-loading {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

    .btn-loading .loading {
        display: block;
        margin-left: 10px;
        -webkit-animation: fa-spin 1s steps(8) infinite;
        animation: fa-spin 1s steps(8) infinite;
    }

        .btn-loading .loading:before {
            content: "\f110";
            font-family: FontAwesome, sans-serif;
        }
/* /Btn Loading */

.chkbox {
    position: relative;
    color: #343e47;
    padding-left: 25px;
    font-weight: normal;
    margin-bottom: 15px;
    cursor: pointer;
    min-height: 20px;
}

    .chkbox a {
        color: #343e47;
        text-decoration: underline;
    }

    .chkbox input[type=checkbox], .chkbox input[type=radio] {
        position: absolute;
    }

    .chkbox.disabled {
        opacity: .6;
        cursor: not-allowed;
    }

    .chkbox.error, .chkbox.error a {
        color: #eb1305;
    }

input[type=checkbox], input[type=radio] {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 20px;
    height: 20px;
    margin-left: -25px;
    margin-top: 0;
    background-color: white;
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid #a5a5a5;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input[type=checkbox] {
    border-radius: 5px;
}

    input[type=checkbox]:hover, input[type=radio]:hover {
        background: #f9f9f9;
    }

    input[type=checkbox]:disabled:hover, input[type=radio]:disabled:hover {
        background: #fff;
    }

    input[type=checkbox]:checked, input[type=radio]:checked {
        background-color: #3074FF;
        box-shadow: none;
        border-color: #3074FF;
    }

    input[type=checkbox]:after, input[type=radio]:after {
        content: "";
        display: none;
        width: 8px;
        height: 8px;
        border-radius: 100%;
        background: #fff;
    }

    input[type=checkbox]:after {
        width: 5px;
        height: 10px;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        background: transparent;
        border-radius: 0;
        margin-top: -2px;
    }

    input[type=checkbox]:checked:after, input[type=radio]:checked:after {
        display: block;
    }

/* Chkbox img */
.chkbox-img{
    background-color: #f6f6f6;
    border-radius:5px;
}

.chkbox-img label {
    padding: 20px 5px 15px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 0;
    align-items: center;
    width: 200px;
    border: 2px solid transparent;
    height: 100%;
    justify-content: center;
    text-align: center;
}

    .chkbox-img label img {
        align-self: center;
        margin-bottom:10px;
        height:45px;
    }
    .chkbox-img label small {
        font-size:14px;
    }

.chkbox-img input {
    display: none;
}

    .chkbox-img input[type=checkbox]:checked + label, .chkbox-img input[type=radio]:checked + label {
        border: 2px solid #37424A;
        font-weight: bold;
        background-color: #fff;
    }
/* /Chkbox img */


/* TEXTBOX */
.textbox {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    position: relative;
}

    .textbox input {
        width: 100%;
        padding: 15px 20px;
        border-radius: 5px;
        border: 1px solid #a5a5a5;
        background-color: #fff;
        outline: none;
        color: #3B4146;
        font-size: 17px;
        text-transform: none;
        font-weight: bold;
        transition: all .1s;
        letter-spacing: 1px;
    }

input#name, input#surname {
    text-transform: uppercase;
}

.textbox input:focus {
    border: 1px solid #3074FF;
}

.textbox.float-label input:focus + label {
    top: -8px;
    font-size: 13px;
    color: #3074FF;
}

.textbox.float-label.has-value label {
    top: -8px;
    font-size: 13px;
}

.textbox .typeahead.has-value + label {
    top: -8px;
    font-size: 13px;
}

.textbox .typeahead {
    text-transform: uppercase;
}

    .textbox .typeahead + label span {
        display: none;
        margin-left: 5px;
    }

    .textbox .typeahead.loading + label span {
        display: inline-block;
    }

.textbox.twitter-typeahead label.arrow {
    position: absolute;
    right: 0;
    left: auto;
}

.textbox.twitter-typeahead .arrow::after {
    content: '\f078';
    font-family: Fontawesome;
    position: absolute;
    width: 45px;
    height: 100%;
    right: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #a5a5a5;
    text-align: center;
    line-height: 52px;
    font-size: 16px;
    pointer-events: none;
    cursor: pointer;
}

.textbox.twitter-typeahead.opened .arrow::after {
    content: '\f077';
    background: #3074FF;
    color: #fff;
    pointer-events: all;
}

.textbox.twitter-typeahead.opened input.typeahead {
    border-color: #3074FF;
}

    .textbox.twitter-typeahead.opened input.typeahead + label {
        color: #3074FF;
    }

.textbox.twitter-typeahead .tt-query {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.textbox.twitter-typeahead .tt-hint {
    color: #999 !important;
}

.textbox.twitter-typeahead .tt-menu {
    width: 100%;
    padding: 8px 0;
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 4px 30px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0px 4px 30px rgb(0 0 0 / 10%);
    box-shadow: 0px 4px 30px rgb(0 0 0 / 10%);
    z-index: 9999 !important;
    max-height: 150px;
    overflow-y: auto;
}

    .textbox.twitter-typeahead .tt-menu .empty-message {
        font-size: 12px;
        padding: 0 15px;
    }

.textbox.twitter-typeahead .tt-suggestion {
    padding: 5px 10px;
    font-size: 16px;
    line-height: 24px;
    align-items: center;
    color: #71818D;
}

    .textbox.twitter-typeahead .tt-suggestion:hover {
        cursor: pointer;
        background-color: rgba(48, 116, 255, 0.1);
    }

    .textbox.twitter-typeahead .tt-suggestion.tt-cursor {
        color: #fff;
        background-color: #0097cf;
    }

    .textbox.twitter-typeahead .tt-suggestion p {
        margin: 0;
    }

    .textbox.twitter-typeahead .tt-suggestion img {
        width: 50px;
        margin-right: 10px;
    }

    .textbox.twitter-typeahead .tt-suggestion.img-option {
        padding: 7px 10px;
        display: flex;
    }

.textbox.twitter-typeahead .error-text {
    display: none;
    position: absolute;
}

    .textbox.twitter-typeahead .error-text::after {
        display: none;
    }


.textbox.twitter-typeahead.tt-occupation.error {
    margin-bottom: 40px;
}

.textbox.twitter-typeahead.error .error-text {
    display: block;
}

hr.tt-suggestion {
    border: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    border-top: 1px solid #eee;
    height: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    padding: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
}

    hr.tt-suggestion:hover {
        cursor: default;
        background-color: transparent;
    }

.tt-suggestion.tt-cursor {
    color: inherit;
    background-color: #c8c8c8;
    font-weight: bold;
}

.tt-menu::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: transparent;
}

.tt-menu::-webkit-scrollbar {
    width: 3px;
    background-color: transparent;
}

.tt-menu::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: rgba(102, 143, 255, 0.2);
}


.textbox label {
    font-size: 16px;
    color: #6C7379;
    font-weight: 600;
    transition: all .2s;
    letter-spacing: .3px;
}

.textbox.float-label label {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 0 8px;
    cursor: text;
    color: #6C7379;
    font-weight: 400;
    background: #fff;
}

.textbox.error input, .textbox input.has-error {
    border-color: #fe5050;
}

    .textbox.error input, .textbox.error.float-label label, .textbox input.has-error + label {
        color: #fe5050 !important;
    }

.textbox .error-text, .textbox .valid-text, .multiple-inline-textbox .error-text {
    position: relative;
    width: 100%;
    font-size: 11px;
    color: #fe5050;
    margin-top: 5px;
    letter-spacing: .5px;
}

    .textbox .error-text::after {
        position: absolute;
        right: 10px;
        top: -43px;
        content: url(/assets/images/icon-warning.svg);
        display: block;
    }

.textbox .valid-text {
    color: #38C976;
}

    .textbox .valid-text::after {
        position: absolute;
        right: 15px;
        top: -40px;
        font-family: FontAwesome;
        font-size: 18px;
        content: "\f058";
        color: #38C976;
    }

.textbox.valid input, .textbox input.valid {
    border-color: #38C976;
}

    .textbox.valid input, .textbox.valid.float-label label, .textbox input.valid + label {
        color: #38C976 !important;
    }

.textbox.disabled {
    opacity: .6;
}

    .textbox.disabled input[disabled] {
        cursor: not-allowed;
    }

@media (max-width: 767px) {
    .textbox input {
        padding: 15px;
        font-size: 14px;
    }
}

/* /TEXTBOX */

#calculate-mtv .twitter-typeahead.textbox label,
#calculate-tax .twitter-typeahead.textbox label,
#calculate-fuelConsumption .twitter-typeahead.textbox label,
#calculate-depreciationCar .twitter-typeahead.textbox label {
    display: none !important;
}

.textarea label {
    width: 100%;
    font-size: 16px;
    color: rgb(108, 115, 121);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.textarea textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 5px;
    border: 1px solid #a5a5a5;
    background-color: #fff;
    outline: none;
    color: #3B4146;
    text-transform: none;
    transition: all .1s;
    letter-spacing: 1px;
    resize: none;
}

.mx-icon-left:before, .mx-icon-right:before, .mx-icon-double-left:before, .mx-icon-double-right:before, .mx-icon-double-left:after, .mx-icon-double-right:after {
    content: '';
    position: relative;
    top: -1px;
    display: inline-block;
    width: 10px;
    height: 10px;
    vertical-align: middle;
    border-style: solid;
    border-color: currentColor;
    border-width: 2px 0 0 2px;
    border-radius: 1px;
    box-sizing: border-box;
    transform-origin: center;
    transform: rotate(-45deg) scale(0.7);
}

.mx-icon-double-left:after {
    left: -4px;
}

.mx-icon-double-right:before {
    left: 4px;
}

.mx-icon-right:before, .mx-icon-double-right:before, .mx-icon-double-right:after {
    transform: rotate(135deg) scale(0.7);
}

.mx-btn {
    box-sizing: border-box;
    line-height: 1;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 15px;
    margin: 0;
    cursor: pointer;
    background-color: transparent;
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    color: #73879c;
    white-space: nowrap;
}

    .mx-btn:hover {
        border-color: #1284e7;
        color: #1284e7;
    }

.mx-btn-text {
    border: 0;
    padding: 0 4px;
    text-align: left;
    line-height: inherit;
}

.mx-scrollbar {
    height: 100%;
}

    .mx-scrollbar:hover .mx-scrollbar-track {
        opacity: 1;
    }

.mx-scrollbar-wrap {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.mx-scrollbar-track {
    position: absolute;
    top: 2px;
    right: 2px;
    bottom: 2px;
    width: 6px;
    z-index: 1;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.24s ease-out;
}

    .mx-scrollbar-track .mx-scrollbar-thumb {
        position: absolute;
        width: 100%;
        height: 0;
        cursor: pointer;
        border-radius: inherit;
        background-color: rgba(144, 147, 153, 0.3);
        transition: background-color 0.3s;
    }

.mx-zoom-in-down-enter-active, .mx-zoom-in-down-leave-active {
    opacity: 1;
    transform: scaleY(1);
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center top;
}

.mx-zoom-in-down-enter, .mx-zoom-in-down-enter-from, .mx-zoom-in-down-leave-to {
    opacity: 0;
    transform: scaleY(0);
}

.datepicker {
    margin-bottom:20px;
}

.mx-datepicker {
    position: relative;
}

    .mx-datepicker svg {
        width: 1em;
        height: 1em;
        vertical-align: -0.15em;
        fill: currentColor;
        overflow: hidden;
    }

.mx-datepicker-range {
    width: 320px;
}

.mx-datepicker-inline {
    width: auto;
}

.mx-input-wrapper {
    position: relative;
}

    .mx-input-wrapper .mx-icon-clear {
        display: none;
    }

    .mx-input-wrapper:hover .mx-icon-clear {
        display: block;
    }

        .mx-input-wrapper:hover .mx-icon-clear + .mx-icon-calendar {
            display: none;
        }

    .mx-input-wrapper input:focus + label {
        top: -8px;
        font-size: 13px;
        color: #3074FF;
    }


    .mx-input-wrapper label {
        position: absolute;
        top: 14px;
        left: 14px;
        padding: 0 8px;
        cursor: text;
        color: #6C7379;
        font-size: 16px;
        transition: all .2s;
        background: #fff;
        pointer-events:none;
    }
    .mx-input-wrapper.has-value label.datepicker-label {
        top: -8px;
        font-size: 13px;
    }

.mx-datepicker.disabled {
    opacity: .6;
}

/*.mx-input::placeholder, .mx-input:-ms-input-placeholder, .mx-input::-webkit-input-placeholder {
    font-weight:normal !important;
    font-size: 14px;
}*/

.mx-input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 5px;
    border: 1px solid #a5a5a5;
    background-color: #fff;
    outline: none;
    color: #3B4146;
    font-size: 17px;
    text-transform: none;
    font-weight: bold;
    letter-spacing: 1px;
}

    .mx-input:focus {
        border-color: #3074FF;
        outline: none;
    }

    .mx-input:disabled, .mx-input.disabled {
        cursor: not-allowed;
    }

    .mx-input::-ms-clear {
        display: none;
    }

.mx-icon-calendar, .mx-icon-clear {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    font-size: 16px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.5);
    vertical-align: middle;
}

.mx-icon-clear {
    cursor: pointer;
}

    .mx-icon-clear:hover {
        color: rgba(0, 0, 0, 0.8);
    }

.mx-datepicker-main {
    color: #73879c;
    background-color: #fff;
    border: 1px solid #e8e8e8;
}

.mx-datepicker-popup {
    position: absolute;
    margin-top: 1px;
    margin-bottom: 1px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    z-index: 2001;
}

.mx-datepicker-sidebar {
    float: left;
    box-sizing: border-box;
    width: 100px;
    padding: 6px;
    overflow: auto;
}

    .mx-datepicker-sidebar + .mx-datepicker-content {
        margin-left: 100px;
        border-left: 1px solid #e8e8e8;
    }

.mx-datepicker-body {
    position: relative;
    user-select: none;
}

.mx-btn-shortcut {
    display: block;
    padding: 0 6px;
    line-height: 24px;
}

.mx-range-wrapper {
    display: flex;
}

@media (max-width: 750px) {
    .mx-range-wrapper {
        flex-direction: column;
    }
}

.mx-datepicker-header {
    padding: 6px 8px;
    border-bottom: 1px solid #e8e8e8;
}

.mx-datepicker-footer {
    padding: 6px 8px;
    text-align: right;
    border-top: 1px solid #e8e8e8;
}

.mx-calendar {
    box-sizing: border-box;
    width: 248px;
    padding: 6px 12px;
}

    .mx-calendar + .mx-calendar {
        border-left: 1px solid #e8e8e8;
    }

.mx-calendar-header, .mx-time-header {
    box-sizing: border-box;
    height: 34px;
    line-height: 34px;
    text-align: center;
    overflow: hidden;
}

.mx-btn-icon-left, .mx-btn-icon-double-left {
    float: left;
}

.mx-btn-icon-right, .mx-btn-icon-double-right {
    float: right;
}

.mx-calendar-header-label {
    font-size: 14px;
}

.mx-calendar-decade-separator {
    margin: 0 2px;
}

    .mx-calendar-decade-separator:after {
        content: '~';
    }

.mx-calendar-content {
    position: relative;
    height: 224px;
    box-sizing: border-box;
}

    .mx-calendar-content .cell {
        cursor: pointer;
    }

        .mx-calendar-content .cell:hover {
            color: #73879c;
            background-color: #f3f9fe;
        }

        .mx-calendar-content .cell.active {
            color: #fff;
            background-color: #1284e7;
        }

        .mx-calendar-content .cell.in-range, .mx-calendar-content .cell.hover-in-range {
            color: #73879c;
            background-color: #dbedfb;
        }

        .mx-calendar-content .cell.disabled {
            cursor: not-allowed;
            color: #ccc;
            background-color: #f3f3f3;
        }

.mx-calendar-week-mode .mx-date-row {
    cursor: pointer;
}

    .mx-calendar-week-mode .mx-date-row:hover {
        background-color: #f3f9fe;
    }

    .mx-calendar-week-mode .mx-date-row.mx-active-week {
        background-color: #dbedfb;
    }

    .mx-calendar-week-mode .mx-date-row .cell:hover {
        color: inherit;
        background-color: transparent;
    }

    .mx-calendar-week-mode .mx-date-row .cell.active {
        color: inherit;
        background-color: transparent;
    }

.mx-week-number {
    opacity: 0.5;
}

.mx-table {
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    text-align: center;
}

    .mx-table th {
        padding: 0;
        font-weight: 500;
        vertical-align: middle;
    }

    .mx-table td {
        padding: 0;
        vertical-align: middle;
    }

.mx-table-date td, .mx-table-date th {
    height: 32px;
    font-size: 12px;
}

.mx-table-date .today {
    color: #2a90e9;
}

.mx-table-date .cell.not-current-month {
    color: #ccc;
    background: none;
}

.mx-time {
    flex: 1;
    width: 224px;
    background: #fff;
}

    .mx-time + .mx-time {
        border-left: 1px solid #e8e8e8;
    }

.mx-calendar-time {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mx-time-header {
    border-bottom: 1px solid #e8e8e8;
}

.mx-time-content {
    height: 224px;
    box-sizing: border-box;
    overflow: hidden;
}

.mx-time-columns {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mx-time-column {
    flex: 1;
    position: relative;
    border-left: 1px solid #e8e8e8;
    text-align: center;
}

    .mx-time-column:first-child {
        border-left: 0;
    }

    .mx-time-column .mx-time-list {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .mx-time-column .mx-time-list::after {
            content: '';
            display: block;
            height: 192px;
        }

    .mx-time-column .mx-time-item {
        cursor: pointer;
        font-size: 12px;
        height: 32px;
        line-height: 32px;
    }

        .mx-time-column .mx-time-item:hover {
            color: #73879c;
            background-color: #f3f9fe;
        }

        .mx-time-column .mx-time-item.active {
            color: #1284e7;
            background-color: transparent;
            font-weight: 700;
        }

        .mx-time-column .mx-time-item.disabled {
            cursor: not-allowed;
            color: #ccc;
            background-color: #f3f3f3;
        }

.mx-time-option {
    cursor: pointer;
    padding: 8px 10px;
    font-size: 14px;
    line-height: 20px;
}

    .mx-time-option:hover {
        color: #73879c;
        background-color: #f3f9fe;
    }

    .mx-time-option.active {
        color: #1284e7;
        background-color: transparent;
        font-weight: 700;
    }

    .mx-time-option.disabled {
        cursor: not-allowed;
        color: #ccc;
        background-color: #f3f3f3;
    }

.mx-datepicker.error input {
    border-color: #eb1305;
}


.datepicker.error .mx-input {
    border-color: #fe5050;
}

.datepicker.error .datepicker-label {
    color: #fe5050;
}

.datepicker .error-text {
    position: relative;
    width: 100%;
    font-size: 11px;
    color: #fe5050;
    margin-top: 5px;
    letter-spacing: .5px;
}

    .datepicker .error-text::after {
        position: absolute;
        right: 10px;
        top: -43px;
        content: url(/assets/images/icon-warning.svg);
        display: block;
    }

.datepicker.error .mx-icon-calendar, .datepicker.error .mx-icon-clear {
    display: none;
}

@media (max-width: 767px) {
    .mx-input {
        padding: 15px;
        font-size: 14px;
    }
}

.twitter-typeahead .dropdown {
    width: 100%;
    height: 45px;
    padding: 15px 20px;
    border-radius: 5px;
    border: 1px solid #a9a9a9;
    background-color: #f6f6f6 !important;
    outline: none;
    color: #374247;
    font-size: 17px;
    text-transform: none;
}
    .twitter-typeahead .dropdown:focus {
        border-color: #129be3;
    }
    .twitter-typeahead .dropdown.has-error {
        border: 1px solid #eb1305;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .twitter-typeahead .dropdown:disabled {
        opacity: .6;
        cursor:not-allowed;
    }

hr.tt-suggestion {
    border: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    border-top: 1px solid #eee;
    height: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('/Assets/Images/loader_2_50x50.gif') center center no-repeat;
}

/* Icons */
/*@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('/Assets/fonts/slick.eot');
    src: url('/Assets/fonts/slick.eot?#iefix') format('embedded-opentype'), url('/Assets/fonts/slick.woff') format('woff'), url('/Assets/fonts/slick.ttf') format('truetype'), url('/Assets/fonts/slick.svg#slick') format('svg');
}*/
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: 0;
    right:0;
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 30px;
    height: 8px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 26px;
    height: 8px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
    .slick-dots li button:before {
        font-size: 3rem;
        line-height: 20px;
        position: absolute;
        top: 0;
        left: 0;
        width: 26px;
        height: 8px;
        content: '';
        text-align: center;
        opacity: .25;
        background-color: #a5a5a5;
        color: #a5a5a5;
        border-radius: 25px;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
    .slick-dots li.slick-active button:before {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opc2)";
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        color: #3B4146;
        background-color: #3B4146;
        font-size: 3rem;
    }

@media screen and (max-width: 767px) {
    .slick-dots {width:100%;bottom:-25px;}
}

.customer-comments-wrapper .section-title .section-title-text {
    color: #3B4146;
}

.customer-comments-wrapper {
    padding: 50px 20px 0 20px;
    margin-bottom: 50px;
}

    .customer-comments-wrapper .section-title {
        margin-bottom: 25px;
    }

    .customer-comments-wrapper .slick-slider {
        margin-bottom: 55px !important;
    }
.five-star-container{
    margin-top:10px;
}
.five-star-container img{
    width:auto;
}
.customer-comments-wrapper .comment {
    padding: 30px 20px 40px 20px;
    position: relative;
    margin: 5px 10px;
    border-radius: 5px;
    overflow: visible;
    border: 1px solid #a5a5a5;
    background-color: #fff;
}

        .customer-comments-wrapper .comment .text {
            padding: 15px;
            height: 190px;
        }

        .customer-comments-wrapper .comment h6, .customer-comments-wrapper .comment h3 {
            font-size: 14px;
            font-weight: 600;
            margin: 0;
        }

    .customer-comments-wrapper .slick-prev:before {
        content: '\f053';
        font-size: 35px;
        color: #898e91;
        font-family: 'FontAwesome';
    }

    .customer-comments-wrapper .slick-next:before {
        content: '\f054';
        font-size: 35px;
        color: #898e91;
        font-family: 'FontAwesome';
    }

    .customer-comments-wrapper .slick-dots {
        left: 0%;
        bottom: -40px;
    }

    .customer-comments-wrapper .comment .text.showed {
        height: auto;
    }

    .customer-comments-wrapper .comment .text .name-date-info {
        margin-bottom: 30px;
    }

    .customer-comments-wrapper .comment .text .stars img {
        display: inline;
        margin-bottom: 10px;
    }

    .customer-comments-wrapper .comment .text p {
        display: inline;
    }

@media only screen and (max-width:767px) {
    .customer-comments-wrapper {
        padding: 50px 0 0 0;
    }

        .customer-comments-wrapper .container {
            padding: 0;
        }

        .customer-comments-wrapper .comment {
            margin: 15px 30px;
        }

        .customer-comments-wrapper .section-title {
            margin-bottom: 0;
        }
}


.no-webp .faq-wrapper .faq-bg.lazyloaded, .no-webp .faq-wrapper .faq-bg.lazyloading {
    background-image: url('/Assets/images/sss-bg.png');
}

.faq-wrapper {
    margin-bottom: 50px;
}

    .faq-wrapper .faq-bg.lazyloaded, .faq-wrapper .faq-bg.lazyloading {
        background-image: url("/Assets/images/sss-bg.webp");
    }


    .faq-wrapper .title {
        color: #3B4146;
        font-size: 28px;
        font-weight: 600;
        margin: auto;
        text-align: center;
        margin-bottom: 15px
    }

    .faq-wrapper .no-bg {
        padding-left: 15px !important;
        background: none !important;
    }

    .faq-wrapper .section-title.mobile {
        display: none;
    }


.panel-group {
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px
}

.panel {
    background-color: #F0F0F0;
    padding:15px;
}
.panel:nth-child(2n+1) {
    background-color: #fff;
}

.panel .panel-title a {
    display: table;
    width: 100%;
    padding: 5px 0;
    color: #30434d;
    font-weight: bold;
}

    .panel .panel-title a .panel-title-text {
        display: table-cell;
        width: 100%;
        vertical-align: top;
        padding-right: 10px;
        color: #3B4146;
        letter-spacing: .3px;
    }

    .panel .panel-title a .fa {
        color: #3074FF;
        transition: all .2s;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        -moz-transition: all .2s;
    }
    .panel .panel-title a.collapsed .fa {
        color: #a5a5a5;
        transform: rotate(180deg);
    }

.panel .panel-body {
    color: #6C7379;
}

@media (max-width: 767px) {
    .faq-wrapper {
        margin-bottom: 50px;
    }

        .faq-wrapper .section-title {
            text-align: center;
        }

        .faq-wrapper .container {
            min-height: 300px;
            padding-left: 15px !important;
            padding-top: 300px;
            background-position: center top;
        }

            .faq-wrapper .container.no-bg {
                padding-top: 0;
            }

        .faq-wrapper .section-title.mobile {
            display: block;
        }

        .faq-wrapper .section-title.desktop {
            display: none;
        }
        .faq-wrapper .title{
            font-size:24px;
        }
}

.info-text-wrapper {
    border: 1px solid #a5a5a5;
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    max-width: 1140px;
}

    .info-text-wrapper .title {
        color: #3B4146;
        margin: 0 0 15px;
        width: 20%;
        font-size: 28px;
    }

    .info-text-wrapper .text {
        text-align: justify;
        color: #6C7379;
        width: 80%;
    }

    .info-text-wrapper [id^="moreContent"] {
        display: none;
        overflow-x: auto;
    }
    .info-text-wrapper .article-more-content [id^="moreContent"] {
        display: block !important;
    }

    .info-text-wrapper .article-more-content {
        display: none;
    }

    .info-text-wrapper .info-text-showmore-button {
        text-align: right;
        width: 100%;
    }


@media (max-width:767px) {
    .info-text-wrapper {
        margin: 0 15px 50px;
        padding: 20px;
    }

        .info-text-wrapper .title, .info-text-wrapper .text {
            width: 100%;
        }

        .info-text-wrapper .info-text-showmore-button {
            margin-top: 15px;
        }

        .info-text-wrapper .title {
            font-size: 24px;
        }
}

.homePage #stars_area {
    margin-bottom: 50px;
}

.no-webp #stars_area {
    background: #f3f3f3 no-repeat center top url(/Assets/Images/experience-bg.png);
}

.stars_area {
    /*display: flex;
    flex-direction: column;
    position: relative;*/
}

    .stars_area .desktop-star-img .experience-steps-cont .list-element p {
        align-self: center;
        font-size: 20px;
        font-weight: bold;
        letter-spacing: -0.27px;
        text-align: center;
        color: #3b4146;
        width: 80%;
    }

.experience-steps-cont {
    padding-top: 50px;
    justify-content: space-evenly;
    display: flex;
}

    .experience-steps-cont .list-element {
        width: -webkit-fill-available;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

.list-element img {
    margin-bottom: 10px;
}

@media screen and (max-width:767px) {
    .experience-steps-cont {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: auto;
        transition: all .3s;
        padding: 30px 0;
        gap: 20px;
    }

        .experience-steps-cont .list-element {
            flex: 0 0 45%;
            display: flex;
        }
}

.product-texts-container {
    padding: 0;
    margin-bottom: 100px !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

    .product-texts-container .product-text {
        width: 30%;
        border: 0;
        margin: 15px;
        border-radius: 0 !important;
        color: #37424a;
        overflow: hidden;
    }

        .product-texts-container .product-text a {
            color: #37424a;
            font-size: 14px;
        }

        .product-texts-container .product-text .text {
            padding: 25px;
            height: 210px;
        }

            .product-texts-container .product-text .text p {
                font-size: 14px;
            }

            .product-texts-container .product-text .text h6, .product-text .text h3 {
                font-size: 16px;
                font-weight: 600;
                margin: 0 0 10px 0;
            }

        .product-texts-container .product-text .icon {
            display: block;
            text-align: center;
            padding: 30px;
            padding-top: 0;
        }

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .product-texts-container .product-text .text {
        height: 300px;
    }
}

@media screen and (max-width: 321px) {
    .product-texts-container .product-text .text p {
        font-size: 13px;
    }
}

.lead-page-title {
    font-size: 32px;
    font-weight: 800;
    color: #3B4146;
    text-align: center;
}

#wa-button {
    display: none !important;
}

.form {
    padding: 50px 30px;
    background: no-repeat #fff 90% bottom url(/Assets/Images/seyahat-saglik-bg.webp);
    box-shadow: 0 0 10px #ccc;
    margin: 15px 70px;
}

    .form .section {
        display: flex;
        flex-direction: column;
        position: relative;
        padding: 0 50px;
        width: 60%;
    }

        .form .section .section-number {
            position: absolute;
            left: 0;
            border-radius: 100%;
            background: #eb3323;
            color: white;
            font-weight: bold;
            width: 37px;
            height: 37px;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }

        .form .section .title {
            font-size: 19px;
            color: #eb3323;
            font-weight: bold;
            margin-bottom: 30px;
            padding-top: 5px;
            white-space: nowrap;
        }

        .form .section .step {
            display: flex;
            flex-direction: column;
            padding-bottom: 30px;
            position: relative;
        }

            .form .section .step .line {
                position: absolute;
                left: -32.5px;
                top: 0;
                height: 100%;
                width: 2px;
                background: #c6c6c6;
            }

                .form .section .step .line::after {
                    content: url(/Assets/Images/gri-tik.png);
                    position: absolute;
                    left: -8px;
                    width: 22px;
                    height: 29px;
                    padding-top: 3px;
                    background: #fff;
                }

            .form .section .step.success .line::after {
                content: url(/Assets/Images/yesil-tik.png);
            }

            .form .section .step .line::before {
                content: '';
                position: absolute;
                width: 2px;
                height: 0;
                background: #34a502;
                transition: all 0.5s ease;
            }

            .form .section .step.success .line::before {
                height: 100%;
            }

            .form .section .step .description {
                font-size: 12px;
                color: #374247;
                text-align: justify;
                margin-bottom: 10px;
            }

                .form .section .step .description.red {
                    font-size: 14px;
                    color: #eb1305;
                }


            /* Date Step */
            .form .section .step.date-step {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-between;
            }

                .form .section .step.date-step .line {
                    top: -25px;
                    height: calc(100% + 25px);
                }

                    .form .section .step.date-step .line::after {
                        top: 62px;
                    }

                .form .section .step.date-step.active .line::before {
                    height: 62px;
                }

                .form .section .step.date-step .datepicker {
                    width: 48%;
                    margin-bottom: 15px;
                }

                    .form .section .step.date-step .datepicker label {
                        display: flex;
                        align-items: baseline;
                    }

                        .form .section .step.date-step .datepicker label img {
                            height: 20px;
                            width: auto;
                            margin-right: 5px;
                        }

                .form .section .step.date-step .description {
                    width: 100%;
                }

            /* /Date Step */

            /* Insurer Step */
            .form .section .step.insurer-step {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-between;
            }

                .form .section .step.insurer-step .line::after {
                    top: 8px;
                }

                .form .section .step.insurer-step.active .line::before {
                    height: 8px;
                }

                .form .section .step.insurer-step .datepicker, .form .section .step.insurer-step .textbox, .form .section .step.insurer-step .twitter-typeahead {
                    width: 48%;
                    margin-bottom: 15px;
                }

            /* /Insurer Step */

            /* Location Step */
            .form .section .step.location-step .line {
                top: -25px;
                height: calc(100% + 25px);
            }

                .form .section .step.location-step .line::after {
                    top: 21px;
                }

            .form .section .step.location-step.active .line::before {
                height: 21px;
            }

            /* /Location Step */

            /* Person Step */
            .form .section .step.person-step {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-between;
            }

                .form .section .step.person-step .line {
                    top: -25px;
                    height: calc(100% + 25px);
                }

                    .form .section .step.person-step .line::after {
                        top: 34px;
                    }

                .form .section .step.person-step.active .line::before {
                    height: 34px;
                }

                .form .section .step.person-step .person {
                    position: relative;
                    width: 100%;
                    display: flex;
                    justify-content: space-between;
                    flex-wrap: wrap;
                    margin-bottom: 15px;
                }

                    .form .section .step.person-step .person .datepicker, .form .section .step.person-step .person .textbox {
                        width: 48%;
                        margin-bottom: 15px;
                    }

                    .form .section .step.person-step .person .remove-btn {
                        position: absolute;
                        right: -35px;
                        padding: 0;
                        height: 45px;
                        display: flex;
                        align-items: center;
                        background: transparent;
                    }

                .form .section .step.person-step .add-btn {
                    display: flex;
                    align-items: center;
                    color: #374247;
                    padding: 15px;
                    text-transform: none;
                    font-size: 14px;
                    background: transparent;
                }

                    .form .section .step.person-step .add-btn svg {
                        color: #eb1305;
                        margin-right: 5px;
                    }

                .form .section .step.person-step .btn:hover, .form .section .step.person-step .btn:focus {
                    text-decoration: none;
                }

            /* /Person Step */

            /* Phone Step */
            .form .section .step.phone-step .form-policy-container {
                margin-top: 30px;
            }

            .form .section .step.phone-step .line::after {
                top: 7px;
            }

            .form .section .step.phone-step.active .line::before {
                height: 7px;
            }

            /* /Phone Step */

            /* Final Step */
            .form .section .step.final-step .line {
                height: 0;
            }

            .form .section .step.final-step .btn {
                width: 50%;
            }

/* /Final Step */

/* Page Loading */
.travel-page-loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: rgb(255 255 255 / 78%);
    z-index: 9999;
    flex-direction: column;
}

    .travel-page-loading .text {
        font-size: 20px;
        font-weight: 800;
    }

    .travel-page-loading img {
        height: 100px;
        width: auto;
    }

    .travel-page-loading.show {
        display: flex;
    }
/* /Page Loading */

/* Sms Popup */
.sms-popup .title {
    font-weight: 800;
    margin: 0;
    color: #374247;
}

.sms-popup p {
    padding: 0;
}

.sms-popup .popup-inner {
    padding: 30px;
}

    .sms-popup .popup-inner .description {
        padding: 10px 0 30px 0;
        font-size: 14px;
        color: #374247;
    }

    .sms-popup .popup-inner .textbox-group {
        display: flex;
        align-items: baseline;
    }

        .sms-popup .popup-inner .textbox-group .textbox {
            margin-right: 15px;
            margin-bottom: 30px;
        }

        .sms-popup .popup-inner .textbox-group .time {
            font-weight: 600;
        }

            .sms-popup .popup-inner .textbox-group .time span {
                letter-spacing: 2px;
            }

    .sms-popup .popup-inner .msg {
        position: relative;
        padding: 30px 0 15px 30px;
        color: #eb3323;
        font-weight: 800;
    }

        .sms-popup .popup-inner .msg:before {
            content: '';
            position: absolute;
            left: 0;
            background: no-repeat url(/Assets/Images/Icon/warning-icon.svg);
            width: 22px;
            height: 22px;
        }
/* /Sms Popup */

.page-banner {
    max-width: 1170px;
    margin: auto;
}

    .page-banner img {
        height: auto;
        width: 100%;
    }

        .page-banner img.desktop {
            display: block;
        }

        .page-banner img.mobile {
            display: none;
        }

/* Nav */
.page-nav {
    display: flex;
    padding: 15px 5px;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(102, 143, 255, 0.08);
    justify-content: space-between;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    max-width: 1170px;
    margin: auto;
    background-color: #fff;
    z-index: 2;
    align-items: center;
    width: 100%;
}

    .page-nav a {
        padding: 0 20px;
        color: #3B4146;
        border-radius: 5px;
        flex-grow: 1;
        text-align: center;
        border-right: 1px solid #DBDBDB;
    }

        .page-nav a:last-child {
            border: 0;
        }

        .page-nav a.active {
            color: #3074FF;
        }

    .page-nav .btn-solid {
        color: #fff !important;
        font-size: 14px;
        padding: 10px 5px;
    }
/* /Nav */

@media (max-width: 767px) {
    .form {
        margin: 0;
        padding: 0;
        background: #fff;
        box-shadow: none;
    }

        .form .section {
            width: 100%;
            padding: 0 0 0 50px;
        }

            .form .section .step.person-step {
                padding-right: 20px;
            }

                .form .section .step.person-step .person .remove-btn {
                    right: -30px;
                }

                    .form .section .step.person-step .person .remove-btn svg {
                        height: 20px;
                    }

    .sms-popup .popup-inner .textbox-group .time {
        align-self: flex-start;
    }

    .lead-page-title {
        font-size: 22px;
        margin-top: 0;
        margin-bottom: 30px;
    }

    .page-nav {
        overflow-x: auto;
        -webkit-mask-image: linear-gradient(to right, white calc(100% - 50px), transparent 100%);
        padding: 5px 25px 5px 5px;
    }

        .page-nav a {
            font-size: 10px;
            padding: 3px 20px;
            white-space: nowrap;
        }

        .page-nav .btn-solid {
            font-size: 10px;
            padding: 10px 10px;
        }

    .page-banner img.desktop {
        display: none;
    }

    .page-banner img.mobile {
        display: block;
    }
}

