/* Minification failed. Returning unminified contents.
(1008,44): run-time error CSS1046: Expect comma, found '0'
(1008,48): run-time error CSS1046: Expect comma, found '/'
(1009,41): run-time error CSS1046: Expect comma, found '0'
(1009,45): run-time error CSS1046: Expect comma, found '/'
(1010,36): run-time error CSS1046: Expect comma, found '0'
(1010,40): run-time error CSS1046: Expect comma, found '/'
 */
.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 */

.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;
    }
}

.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-link.blue {
                color: #3074FF;
            }

/* 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 */


/* 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;
}

/* 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;
        }
}

.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;
        }
}

.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;
    }
}


.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;
        }
}

.blog-items-wrapper {
    padding: 50px 0;
    margin-bottom: 50px;
}

    .blog-items-wrapper .top {
        display: flex;
        justify-content: center;
        width: 100%;
        align-items: flex-end;
        position: relative;
    }

        .blog-items-wrapper .top .title {
            color: #3B4146;
            font-size: 28px;
            font-weight: 600;
            margin: auto;
            margin-bottom: 15px;
        }

        .blog-items-wrapper .top .link-icon {
            position: absolute;
            right: 15px;
        }

    .blog-items-wrapper .blog-items-inner > .container {
        padding: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .blog-items-wrapper .blog-item-container {
        display: flex;
        flex-direction: column;
        flex-basis: 30%;
        border: 0;
        margin: 15px;
        border-radius: 0 !important;
    }


        .blog-items-wrapper .blog-item-container .blog-item-text-container {
            padding: 15px 0 0;
            background: #fff;
        }

        .blog-items-wrapper .blog-item-container .blog-item-img img {
            border-radius: 5px;
        }

        .blog-items-wrapper .blog-item-container .blog-item-text-container h6, .blog-item-container .blog-item-text-container h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0 0 15px 0;
            height: 40px;
            line-height: 22px;
            letter-spacing: 0.5px;
        }


        .blog-items-wrapper .blog-item-container .blog-item-icon {
            display: block;
            text-align: center;
            padding: 30px;
            padding-top: 0;
        }

    .blog-items-wrapper .blog-items-showall-button {
        padding-top: 30px;
    }

    .blog-items-wrapper .slick-dots {
        position: relative;
        margin: 5px 0;
    }

    .blog-items-wrapper .slick-dotted.slick-slider {
        margin-bottom: 0;
    }

.blog-item-container .blog-item-text-container h6 a {
    color: #3B4146;
}

    .blog-item-container .blog-item-text-container h6 a:hover {
        text-decoration: none;
    }

    .blog-item-container .blog-item-text-container h6 a:active {
        font-weight: bold;
    }

.product-texts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.blog-item-container {
    border-width: 0;
    background: white;
    color: #37424a;
    overflow: hidden;
    border: 1px solid;
    margin-bottom: 25px;
}


    .blog-item-container .detail-btn {
        color: #37424a;
        font-size: 14px;
        float: right;
        margin-top: 15px;
    }

    .blog-item-container .blog-item-text-container h6, .blog-item-container .blog-item-text-container .date {
        font-size: 12px;
        font-weight: 400;
    }

    .blog-item-container .blog-item-text-container h6, .blog-item-container .blog-item-text-container h3 {
        font-size: 18px;
        font-weight: 600;
        margin: 5px 0 10px;
    }

    .blog-item-container .blog-item-text-container p {
        font-size: 14px;
        font-weight: normal;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .blog-item-container:hover .img-on-hover-scale img {
        -moz-transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
        transform: scale(1.05);
    }

    .blog-item-container .blog-item-text-container {
        padding: 15px;
    }

    .blog-item-container .blog-item-icon {
        display: block;
        text-align: right;
        padding: 40px;
        padding-top: 0;
    }


@media screen and (max-width: 1200px) {
    .blog-items-wrapper .blog-item-container .blog-item-img img {
        margin-top: 0;
    }
}

@media screen and (max-width: 767px) {
    .blog-items-wrapper .top .link-icon {
        display: none;
    }

    .blog-items-wrapper .top .title {
        font-size: 24px;
    }

    .blog-items-wrapper .blog-items-inner > .container {
        border: 0;
    }
    .blog-items-wrapper .blog-item-container .blog-item-text-container h6, .blog-item-container .blog-item-text-container h3 {
        font-size: 16px;
        height:auto;
    }
}

.lead-page-title {
    font-size: 32px;
    font-weight: 800;
    color: #3B4146;
    text-align: center;
}

#wa-button {
    display: none !important;
}

.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 */

/* Lead Page */
.lead-page-container {
    margin-bottom: 50px;
}

    .lead-page-container .lead-page-form-container {
        position: relative;
        max-width: 940px;
        overflow: hidden;
        padding: 30px 50px;
    }
    .lead-page-container .lead-page-form-container.evcil-hayvan{
        max-width:1140px;
    }

        .lead-page-container .lead-page-form-container .description {
            font-size: 18px;
            text-align: center;
        }


            .lead-page-container .lead-page-form-container .description strong {
                display: block;
                margin-top: 15px;
            }

        .lead-page-container .lead-page-form-container .lead-form {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 30px;
        }

            .lead-page-container .lead-page-form-container .lead-form .textbox, .lead-page-container .lead-page-form-container .lead-form .datepicker {
                width: 48%;
            }

            .lead-page-container .lead-page-form-container .lead-form .chkbox {
                width: 100%;
            }
            .kvkk-text label.error{
                color: #eb1305;
            }
            .lead-page-container .lead-page-form-container .lead-form .btn-solid {
                margin: 15px auto 0;
            }

/* Sms Form */
.sms-popup {
    flex-grow: 1;
}

    .sms-popup p {
        margin: 0 0 20px;
    }

        .sms-popup p button {
            margin-top: 20px;
        }

    .sms-popup .sms-code {
        display: flex;
        flex-wrap: wrap;
        max-width: 380px;
    }

        .sms-popup .sms-code .textbox {
            width: 100%;
            flex-direction: row;
            justify-content: space-between;
            margin-bottom: 30px;
        }

            .sms-popup .sms-code .textbox input {
                text-align: center;
                letter-spacing: 10px;
            }

        .sms-popup .sms-code label {
            font-weight: bold;
        }

        .sms-popup .sms-code .sms-time {
            margin-left:auto;
            text-align: right;
            font-weight: bold;
            color: #F51300;
        }

            .sms-popup .sms-code .sms-time img {
                width: auto;
            }

        .sms-popup .sms-code .bottom {
            margin: auto;
        }
/* /Sms Form */

/* Foreign Page */
.foreign-list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

    .foreign-list .foreign-support-img img {
        height: 40px;
        width: auto;
    }

    .foreign-list h5 {
        line-height: 1;
        margin-left: 10px;
        font-size: 20px;
    }

.foreign-table img {
    width: auto;
    height: 60px;
}

.foreign-table .table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    text-align: center;
}

    .foreign-table .table tr th {
        text-align: center;
    }

        .foreign-table .table tr td.last, .foreign-table .table tr th.last {
            border-right: 2px solid #808080;
        }

    .foreign-table .table > thead:first-child > tr:first-child > th {
        border-top: 0;
    }

    .foreign-table .table > thead > tr > th {
        vertical-align: bottom;
        border-bottom: 2px solid #ddd;
        padding: 8px;
        line-height: 1.42857143;
    }

    .foreign-table .table > tbody > tr > td, .foreign-table .table > tbody > tr > th, .foreign-table .table > tfoot > tr > td, .foreign-table .table > tfoot > tr > th, .foreign-table .table > thead > tr > td, .foreign-table .table > thead > tr > th {
        padding: 8px;
        line-height: 1.42857143;
        vertical-align: top;
        border-top: 1px solid #ddd;
    }
/* /Foreign Page */
/* PET 11 */

/*#pet11-page .w-campaign-info {
    display: none;
    background: no-repeat bottom url('/Assets/Images/pet11-nedir-bg-mobile.webp');
    background-size: contain;
    padding-bottom: 150px;
    text-align: center;
}

    #pet11-page .w-campaign-info .title {
        font-size: 22px;
        font-weight: 800;
        line-height: 1.17;
        letter-spacing: -0.9px;
        color: #f91300;
        text-align: center;
    }

    #pet11-page .w-campaign-info p, #pet11-page .w-campaign-info small {
        display: block;
        margin: 15px 0;
        font-size: 10px;
    }

    #pet11-page .w-campaign-info small {
        font-size: 8px;
    }

    #pet11-page .w-campaign-info #btnShowMore {
        font-size: 14px;
        font-weight: normal;
        padding: 5px 10px;
        display: inline-block;
    }

        #pet11-page .w-campaign-info #btnShowMore .fa {
            display: none;
        }

#pet11-page .price-table-container {
    border: 1px solid #a5adb0;
    border-radius: 30px;
}

    #pet11-page .price-table-container table {
        border-top: 0;
        border-bottom: 0;
        margin-bottom: 0;
        overflow: hidden;
        width: 100%;
    }

        #pet11-page .price-table-container table tr td {
            border-bottom: 1px solid #ccc;
            border-left: 1px solid #ccc;
            border-top: 0;
            color: #374248;
            font-size: 12px;
            vertical-align: middle;
            padding: 10px;
        }

            #pet11-page .price-table-container table tr td .btn-solid {
                padding: 5px 8px;
                font-size: 12px;
                width: 100%;
            }

        #pet11-page .price-table-container table tr:last-child td {
            border-bottom: 0;
        }

        #pet11-page .price-table-container table tr td:first-child {
            border-left: 0;
        }

    #pet11-page .price-table-container.mobile {
        display: none;
        margin: 0 25px;
    }

        #pet11-page .price-table-container.mobile .slick-next:before,
        .m-road .price-table-container .slick-next:before {
            content: "\f054";
            color: #898e91;
            font-family: 'FontAwesome';
        }

        #pet11-page .price-table-container.mobile .slick-prev:before,
        .m-road .price-table-container .slick-prev:before {
            content: "\f053";
            color: #898e91;
            font-family: 'FontAwesome';
        }

    #pet11-page .price-table-container.desktop {
        display: block;
    }

#pet11-page .content-why {
    display: flex;
    margin-top: 50px;
}

    #pet11-page .content-why img {
        width: 30%;
        align-self: flex-start;
    }

    #pet11-page .content-why .inner {
        display: flex;
        flex-wrap: wrap;
    }

        #pet11-page .content-why .inner .title {
            width: 100%;
            text-align: right;
            font-size: 36px;
        }

        #pet11-page .content-why .inner .box {
            display: flex;
            flex-wrap: wrap;
        }

            #pet11-page .content-why .inner .box .left-side {
                flex: 1.5;
                margin: 0 30px;
                font-size: 14px;
                position: relative;
            }

                #pet11-page .content-why .inner .box .left-side #btnEmergencyList {
                    margin-top: 15px;
                    border: 1px solid rgb(16, 170, 245);
                }

                #pet11-page .content-why .inner .box .left-side p {
                    margin-bottom: 15px;
                }

                #pet11-page .content-why .inner .box .left-side ul {
                    margin-left: 25px;
                }

                    #pet11-page .content-why .inner .box .left-side ul li {
                        list-style-type: disc;
                        font-weight: bold;
                    }

            #pet11-page .content-why .inner .box .right-side {
                flex: 1;
                padding: 30px 15px 50px 15px;
                background-color: #e9f7fe;
                font-size: 12px;
                margin-top: 100px;
            }

                #pet11-page .content-why .inner .box .right-side strong {
                    display: block;
                    margin-bottom: 15px;
                }

                #pet11-page .content-why .inner .box .right-side ul {
                    margin-left: 15px;
                }

                    #pet11-page .content-why .inner .box .right-side ul li {
                        list-style-type: disc;
                    }

            #pet11-page .content-why .inner .box .left-side #emergencyList {
                display: none;
                position: absolute;
                left: 0;
                border-radius: 15px;
                box-shadow: 0 0 6px #ccc inset;
                padding: 25px;
                background: #fff;
            }

                #pet11-page .content-why .inner .box .left-side #emergencyList .title {
                    color: #10aaf5;
                    font-size: 16px;
                    font-weight: bold;
                    text-align: center;
                    margin: 0;
                    margin-bottom: 15px;
                }

                #pet11-page .content-why .inner .box .left-side #emergencyList #btnEmergencyListClose {
                    position: absolute;
                    right: 15px;
                    cursor: pointer;
                    color: #aaa;
                    top: 10px;
                }

                    #pet11-page .content-why .inner .box .left-side #emergencyList #btnEmergencyListClose:hover {
                        color: #333;
                    }

                #pet11-page .content-why .inner .box .left-side #emergencyList ol {
                    margin-left: 25px;
                }

                    #pet11-page .content-why .inner .box .left-side #emergencyList ol li {
                        font-weight: normal;
                        list-style: decimal;
                        font-size: 12px;
                        margin-bottom: 10px;
                        color: #374248;
                    }

#pet11-page .content-how {
    margin-top: -60px;
    display: flex;
    margin-bottom: 100px;
}

    #pet11-page .content-how .m {
        display: none;
    }

    #pet11-page .content-how .d {
        display: block;
    }

#pet11-page .content-what {
    display: flex;
    flex-wrap: wrap;
}

    #pet11-page .content-what .title {
        width: 100%;
        text-align: right;
        font-size: 36px;
    }

    #pet11-page .content-what .number {
        flex: 1;
        border-right: 2px solid #a5adb0;
        padding: 0 30px;
        text-align: center;
    }

        #pet11-page .content-what .number:last-child {
            border-right: 0;
        }

        #pet11-page .content-what .number img {
            display: block;
            margin: 15px auto;
            height: auto;
        }

#pet11-page .content-knowing .title {
    color: #f91300;
    font-size: 36px;
}

#pet11-page .content-knowing .inner {
    border-radius: 30px;
    box-shadow: 0 0 10px #ccc;
    padding: 30px 15px;
}

#pet11-page .content-knowing ul {
    display: flex;
    flex-wrap: wrap;
}

    #pet11-page .content-knowing ul li {
        list-style: disc;
        max-width: 40%;
        margin: 5px 5%;
    }

#pet11-page .content-veterinary {
    background: no-repeat right top 50% url('/Assets/Images/pet11-veterinary-bg.webp');
    padding: 50px 0 250px 50px;
}

    #pet11-page .content-veterinary .title {
        width: 100%;
        font-size: 36px;
        margin-bottom: 20px;
    }

    #pet11-page .content-veterinary .city, #pet11-page .content-veterinary .district {
        display: inline-block;
        margin-right: 15px;
    }

    #pet11-page .content-veterinary .veterinary-list {
        max-width: 40%;
    }

        #pet11-page .content-veterinary .veterinary-list .veterinary {
            margin: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f3f1f3;
        }

            #pet11-page .content-veterinary .veterinary-list .veterinary .klinik {
                color: #10aaf5;
                font-weight: bold;
                font-size: 22px;
            }

            #pet11-page .content-veterinary .veterinary-list .veterinary .adres, #pet11-page .content-veterinary .veterinary-list .veterinary .telefon {
                color: #374248;
                margin: 5px
            }*/
/* PET 11 */
@media (max-width:767px) {
    .page-banner img.mobile {
        display: block;
    }

    .page-banner img.desktop {
        display: none;
    }

    .lead-page-container {
        padding: 30px 30px 50px;
        background: #f6f6f6;
        margin-bottom: 0;
    }

        .lead-page-container .lead-page-form-container {
            padding: 30px;
        }

            .lead-page-container .lead-page-form-container .description {
                font-size: 16px;
                margin-bottom: 15px;
            }

            .lead-page-container .lead-page-form-container .lead-form {
                padding: 0;
            }

                .lead-page-container .lead-page-form-container .lead-form .textbox, .lead-page-container .lead-page-form-container .lead-form .datepicker {
                    width: 100%;
                }

    .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;
        }
    .foreign-table{
        overflow-x:auto;
    }
        .foreign-table .table > tbody > tr > td, .foreign-table .table > tbody > tr > th, .foreign-table .table > tfoot > tr > td, .foreign-table .table > tfoot > tr > th, .foreign-table .table > thead > tr > td, .foreign-table .table > thead > tr > th{
            min-width:85px;
        }
}
/*@media only screen and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) {
    #pet11-page .w-campaign-info {
        display: flex;
    }

        #pet11-page .w-campaign-info #moreContent {
            display: none;
        }

    #pet11-page .price-table-container.mobile {
        display: block;
    }

    #pet11-page .price-table-container.desktop {
        display: none;
    }

    #pet11-page .content-why img {
        display: none;
    }

    #pet11-page .content-why .inner .title {
        font-size: 21px;
        text-align: center;
    }

    #pet11-page .content-why .inner .box {
        border-radius: 30px;
        box-shadow: 0 0 10px #ccc;
        flex-direction: column;
        margin: 0 20px;
    }

        #pet11-page .content-why .inner .box .left-side {
            margin: 0;
            padding: 30px 15px;
            text-align: center;
        }

            #pet11-page .content-why .inner .box .left-side ul {
                text-align: left;
            }

            #pet11-page .content-why .inner .box .left-side #btnEmergencyList {
                text-align: center;
            }

        #pet11-page .content-why .inner .box .right-side {
            margin-top: 0;
        }

    #pet11-page .content-how {
        margin-top: 30px;
        margin-bottom: 50px;
    }

        #pet11-page .content-how .m {
            display: block;
        }

        #pet11-page .content-how .d {
            display: none;
        }

    #pet11-page .content-what .title {
        font-size: 21px;
        text-align: center;
    }

    #pet11-page .content-what .number {
        min-width: 50%;
        border-right: 0;
        padding: 30px;
    }

        #pet11-page .content-what .number img {
            width: 100%;
        }

        #pet11-page .content-what .number.first {
            border-right: 1px solid #a5adb0;
            border-bottom: 1px solid #a5adb0;
        }

        #pet11-page .content-what .number.last {
            border-left: 1px solid #a5adb0;
            border-top: 1px solid #a5adb0;
        }

    #pet11-page .content-veterinary {
        padding: 50px 25px 250px 25px;
        background-position: bottom;
        background-size: contain;
    }

        #pet11-page .content-veterinary .title {
            font-size: 21px;
            text-align: center;
        }

        #pet11-page .content-veterinary .city, #pet11-page .content-veterinary .district {
            margin-bottom: 15px;
            margin: 0 auto 15px auto;
        }

        #pet11-page .content-veterinary .veterinary-list {
            max-width: 100%;
        }
}
*/
.first-part-container {
    background-image: url(/Assets/Images/brands-bg.png);
    background-position: unset;
    background-repeat: round;
    background-size: cover;
    padding: 0 30px 30px;
    margin-top: 20px;
}

.head {
    display: flex;
    justify-content: space-between;
}
    .head .left-container {
        width: 50%;
        border: 1px solid #D9D9D9;
        border-radius: 15px;
        background-color:#fff;
    }
.head .left{
    display:flex;
    padding:20px;
}
.head .left .img-container{
    height:140px;
    width:140px;
}
.head .left .img-container img{
    height:140px;
    width:140px;
    max-width:initial;
}
.head .left .texts{
    display:flex;
    flex-wrap:wrap;
    margin-top:10px;
}
.head .left .texts h1{
    font-weight:700;
    line-height:30px;
    font-size:22px;
    margin:0;
}
    .head .left-container .third-part {
        padding-left: 20px;
    }
.left-container .third-part .showing-text {
    display: none;
}
    .head .left-container .third-part span{
        line-height: 27px;
        font-size: 18px;
        font-weight: 400;
        color: #000000;
    }
    .head .left .texts span {
        line-height: 27px;
        font-size: 18px;
        font-weight: 400;
        color: #000000;
    }
    .head .preform {
        width: 43%;
        border-radius:15px;
        background-color: #fff;
    }
.preform .pre-form{
    border-radius:15px;
}
.pre-form .form {
    padding:20px 30px;
}
.preform .pre-form .form p {
    font-size:15px;
    color: #747474;
}

.pre-form.casco .title {
    display: none;
}

.main-part {
    padding: 20px 40px;
    background-color: #FFFFFF;
    margin-top: 30px;
    border-radius: 15px;
    position: relative;
}
.main-part .tik-img-container{
    position:absolute;
    top:-20px;
    left:-20px;
}
.main-part .title{
    text-align:center;
    font-size:20px;
    font-weight:700;
    line-height:30px;
}
  
.main-part .vehicle-img-container{
        display:flex;
        justify-content:end;
    }
    .main-part .vehicle-img-container img{
        width:auto;
    }
.campaign-header{
    margin:80px 0 30px;
    color:#747474;
    text-align:center;
}
.campaign-part {
    display:flex;
    justify-content:space-evenly;
}
.campaign-container {
    display: flex !important;
    justify-content: center;
    flex-wrap: wrap;
    width:25%;
    border-radius:20px;
    padding-bottom:15px;
    margin-right:30px;
    margin-left:20px;
}
.container-campaign{
    height:300px !important;
}
.campaign-part .slick-prev:before, .slick-next:before {
    color: black;
    opacity: 1;
}
.campaign-container .campaign-shadow:hover {
    box-shadow: 0px 16px 32px 0px #D6D2CC;
    cursor: pointer;
    border-radius: 20px;
}
    .campaign-container .img-container {
    height:210px;
    overflow:hidden;
    }
    .campaign-container .img-container img{
        border-radius:20px;
    }

.campaign-container .bot-side{
    margin-top:10px;
    padding-left:20px;
}
    .campaign-container .bot-side h3 {
        margin: 0 0 5px;
        font-weight: bold;
        font-size: 24px;
    }
    .campaign-container .bot-side p {
        margin: 0 0 5px;
    }
    .campaign-container .bot-side a {
        color: #5383FF;
        text-decoration: underline;
        margin-top:5px;
    }
.campaign-part .slick-dots {
    right: auto;
    margin-bottom: -10px;
}
.show-more-button {
    text-align: center;
    color: #5383FF;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom:50px;
}

.fa-arrow-down:before {
    margin-left:5px;
    content: "\f063";
}
.fa-arrow-up:before {
    margin-left: 5px;
    content: "\f062";
}
.models-header {
    color: #747474;
    margin: 50px 0;
    text-align: center;
}
.models-container {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0;
}
    .models-container .models {
        display: flex;
        flex: 0 0 33.3333%;
        justify-content: start;
        gap: 10px;
        padding-bottom: 35px;
    }

.models-container .models a{
    line-height:27px;
    font-weight:600;
    font-size:18px;
    color:#747474;
}
.brand-header{
    margin-top:50px;
}
    .brand-header h2 {
        text-align: center;
        color: #747474;
    }
.brand-header p{
    text-align:center;
}
.brand-container {
    margin-bottom:50px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0;
}
    .brand-container .brands {
        margin-top:30px;
        display: flex;
        flex: 0 0 20%;
        justify-content: center;
        gap: 10px;
    }
.brand-container .brands .img-container{
    width:140px;
    height:auto;
    max-height:160px;
}
.btn-link, .btn-link:active, .btn-link:focus, .btn-link:hover {
    color: #5383FF;
}
section#companyBrands .title a{
    color:#747474;
}

@media only screen and (max-width:767px) {
    .first-part-container {
        background-image: url(/Assets/Images/brands-bg-mobile-new.png);
        margin-right:-15px;
        margin-left:-15px;
    }
    .head .left{
        padding-bottom:0;
    }
        .head .left .texts h1{
            font-size:16px;

        }
        .head .left-container .third-part span {
            font-size: 15px;
        }
    .head .left-container .third-part {
        margin-bottom:10px;
    }
    .head .left .texts .hiding-text {
        display: none;
    }
    .left-container .third-part .showing-text {
        display: block;
    }
    .head{
        flex-flow:column;
        align-items:center;
        gap:25px;
    }
        .head .left-container {
            width: -webkit-fill-available;
        }

        .head .preform {
            width: -webkit-fill-available;
        }
    .preform .pre-form .form p{
        padding:0 15px;
        text-align:center;
    }
    .main-part .title{
        margin-top:35px;
    }
    .main-part .description{
        margin-top:25px;
    }
    .main-part .vehicle-img-container img {
        height: revert-layer;
    }
    .campaign-container {
        margin: 0;
    }
        .campaign-container .bot-side{
            margin-top:10px;
        }
    .campaign-part {
        max-height:480px;
    }
    .campaign-container .img-container {
        height: 350px;
        overflow: hidden;
    }
    .campaign-part .slick-dots{
        margin-bottom:0;
    }
    .container-campaign {
        height: auto !important;
    }
    .brand-header p{
        display:none;
    }
    .show-more-button{
        margin-top:25px;
    }
    section#companyBrands .brandItem{
        width:45%;
    }
    .models-container .models {
        flex: 0 0 100%;
        justify-content: center;
    }
        .models-container .models .img-container{
            align-self:center;
        }
        .brand-container .brands {
            flex: 0 0 50%;
        }
}
@media only screen and (max-width:450px){
    .campaign-container .img-container{
        height:auto;
    }
    .slick-dots{
        margin-bottom:20px;
    }
}
.pre-form {
    display: flex;
    flex-direction: column;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    overflow: hidden;
}

    .pre-form .title {
        font-weight: 800;
        margin-bottom: 0;
        color: #fff;
        padding: 10px 30px;
        font-size: 20px;
        text-align: left;
        letter-spacing: .5px;
        display: flex;
        align-items: center;
        margin-top: 0;
        line-height: 23px;
    }

    .pre-form .form {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        justify-content: space-between;
        padding: 10px 30px;
    }

        .pre-form .form p {
            color: #3B4146;
            font-weight: bold;
            margin-bottom: 10px;
        }

            .pre-form .form p * {
                line-height: inherit;
                font-weight: inherit;
                font-size: inherit;
                margin: 0;
            }

        .pre-form .form .btn-solid {
            width: 100%;
            padding: 10px 20px;
        }

        .pre-form .form .textbox {
            margin-bottom: 10px;
        }

            .pre-form .form .textbox input {
                padding: 10px 17px;
            }

            .pre-form .form .textbox.float-label label {
                top: 10px;
                left: 10px;
            }

            .pre-form .form .textbox.float-label.has-value label {
                top: -8px;
            }

            .pre-form .form .textbox.float-label input:focus + label {
                top: -8px;
            }

            .pre-form .form .textbox .error-text::after {
                top: -38px;
            }

    .pre-form.traffic .title {
        background: no-repeat top right url(/assets/images/red-front-cars-running-road.png);
        background-size: cover;
        height: 65px;
    }

    .pre-form.casco .title {
        background: no-repeat left center url(/assets/images/car-crash.png);
        height: 200px;
        color: #3B4146;
        align-items: start;
    }
    .pre-form.dask .title {
        background: no-repeat url(/assets/images/Lead_Form_350x65_dask_bos.jpg);
        height: 65px;
        background-size:cover;
        align-items: start;
        padding-top:20px;
    }
    .pre-form.konut .title {
        background: no-repeat url(/assets/images/Lead_Form_350x65_konut_bos.jpg);
        height: 65px;
        color: #3B4146;
        background-size: cover;
        align-items: start;
        padding-top: 20px;
    }
    .pre-form.tamamlayici .title {
        background: no-repeat url(/assets/images/lead_form_350x65tamamlayici_bos.jpg);
        height: 65px;
        color: #3B4146;
        background-size: cover;
        align-items: start;
    }
    .pre-form.ozel .title {
        background: no-repeat url(/assets/images/ozel_saglik_Lead_Form_350x65.jpg);
        height: 65px;
        color: #3B4146;
        background-size: cover;
        align-items: start;
        padding-top: 20px;
    }
    .pre-form.travel .title {
        background: no-repeat url(/assets/images/Seyahat_Saglik_sigortası_Lead_Form_350x65.jpg);
        height: 65px;
        color: #3B4146;
        background-size: cover;
        align-items: start;
    }

    .pre-form.wide {
        max-width: 1170px;
        margin: auto;
        flex-direction: row;
        margin-bottom: 30px;
    }

        .pre-form.wide .title {
            width: 60%;
            height: auto;
            background-size: contain;
            background-position: right;
            background-color: #f1f1f1;
            font-size: 30px;
            align-items: center;
        }

        .pre-form.wide .form {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            justify-content: center;
            padding: 10px 75px;
        }

            .pre-form.wide .form p {
                font-size: 24px;
            }

@media (min-width: 768px) {
    .pre-form.traffic.wide .title.lazyloaded {
        background: no-repeat top right url(/assets/images/car-crash-red.jpg);
    }
}

@media (max-width:767px) {
    .pre-form.wide {
        flex-direction: column;
        /*margin: 0 15px;*/
    }

        .pre-form.wide .title {
            width: 100%;
            height: 100px;
            font-size: 24px;
        }

        .pre-form.wide .form {
            padding: 20px;
        }

            .pre-form.wide .form p {
                font-size: 18px;
            }
}

