/* Minification failed. Returning unminified contents.
(1004,44): run-time error CSS1046: Expect comma, found '0'
(1004,48): run-time error CSS1046: Expect comma, found '/'
(1005,41): run-time error CSS1046: Expect comma, found '0'
(1005,45): run-time error CSS1046: Expect comma, found '/'
(1006,36): run-time error CSS1046: Expect comma, found '0'
(1006,40): run-time error CSS1046: Expect comma, found '/'
(3296,42): run-time error CSS1046: Expect comma, found '203'
(3296,49): run-time error CSS1046: Expect comma, found ')'
(3969,48): run-time error CSS1034: 
(3969,48): run-time error CSS1042: Expected function, found ','
(3969,52): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
(4361,48): run-time error CSS1034: 
(4361,48): run-time error CSS1042: Expected function, found ','
(4361,52): run-time error CSS1062: Expected semicolon or closing curly-brace, 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 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%;
        }
}
*/

.campaign-list {
    display: flex;
    justify-content: center;
    padding: 0 0 40px 0;
}

    .campaign-list .campaign {
        justify-content: center;
        display: flex;
        border-radius: 5px;
    }

        .campaign-list .campaign .image {
            max-height: 310px;
        }

        .campaign-list .campaign .left {
            position: relative;
            display: flex;
            width: 50%;
            background-color: #37424A;
            flex-flow: wrap;
            padding: 0 85px;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow-y: clip;
        }

            .campaign-list .campaign .left:before {
                content: "";
                border-radius: 100%;
                background: #37424A;
                height: 125%;
                width: 10%;
                position: absolute;
                left: -20px;
            }

            .campaign-list .campaign .left .text {
                color: #fff;
                font-size: 16px;
            }

            .campaign-list .campaign .left .campaign-title {
                color: #fff;
                font-weight: bold;
                font-size: 24px;
            }

        .campaign-list .campaign .image img {
            height: auto;
        }

    .campaign-list .slick-dots {
        right: auto;
        bottom: 10px;
    }

    .campaign-list .campaign .left .button {
        width: 60%;
        display: grid;
        text-align: center;
    }

.campaign .left .button a {
    width: 100%;
    color: #fff;
    background-color: #36A9E1;
}

.campaigns-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px auto 50px auto;
}

    .campaigns-container .top {
        display: flex;
        justify-content: center;
        width: 100%;
        align-items: flex-end;
        position: relative;
        margin-bottom: 15px;
    }

        .campaigns-container .top h3 {
            font-size: 28px;
            font-weight: 600;
            margin: 0;
        }

        /*.campaigns-container .top .all-campaigns {
            position: absolute;
            right: 30px;
        }*/
    .campaigns-container .all-campaigns {
        display: flex;
        width: 100%;
        padding: 0 25px;
        justify-content: end;
    }
    .campaigns-container .campaign-list {
        display: flex;
        justify-content: center;
        width: 100%;
        position: relative;
    }

@media(max-width:1200px) {
    .campaign-list .campaign .image img {
        height: auto;
        /*width: initial;*/
        max-width: initial;
    }

    .campaign-list .campaign .left {
        padding: 0 25px;
    }
    .campaigns-container .campaign-list{
        padding: 0 10px 40px 10px !important;
    }
}

@media(max-width:1000px) {
    .campaign-list .campaign .left{
        padding: 0 20px;
    }
    .campaign-list .campaign .left .campaign-title {
        font-size: 20px;
    }

    .campaign-list .campaign .left .text {
        font-size: 14px;
    }
    .campaign-list .campaign .left .button{
        width:auto;
    }
}

@media (max-width:767px) {
    .campaign-list {
        padding: 0 15px 30px 15px;
    }

        .campaign-list .campaign {
            max-height: none;
            display: block !important;
        }

            .campaign-list .campaign .mobile-campaigns-photo {
                display: block;
            }

            .campaign-list .campaign .desktop-campaigns-photo {
                display: none;
            }


            .campaign-list .campaign .image {
                width: auto;
            }

            .campaign-list .campaign .left {
                overflow-x: clip;
                overflow-y: inherit !important;
                width: auto;
                padding: 0 !important;
                position: relative;
                gap: 30px;
                z-index: 1
            }

                .campaign-list .campaign .left:before {
                    left: auto;
                    border-radius: 50% !important;
                    background: #37424A;
                    height: 1000px;
                    width: 2000px;
                    top: -35px;
                    z-index: -1;
                }

                .campaign-list .campaign .left .campaign-title {
                    font-size: 22px;
                    line-height: 20px;
                }

                .campaign-list .campaign .left .text {
                    font-size: 16px;
                }
}

@media (max-width:500px) {
    .campaign-list .campaign .left:before {
        width: 1450px;
    }
}

.container{
    padding: 0 15px !important;
}
.desktop-banner {
    position: relative;
}

.desktop-banner-text {
    text-align: center;
    position: absolute;
    top: 50%;
    font-size: 32px;
    right: 29%;
    transform: translate(50%, -50%);
}
.mobile-banner-text{
    display:none;
}
.starting-health {
    display: flex;
    margin-top: 30px;
    padding: 25px;
    padding-bottom: 5px !important;
    border: solid 1px #c9c9c9;
    border-radius: 5px;
}
        .starting-health .group-photo img {
            width: 400px;
            height: auto;
        }

    .starting-health .explanation-health {
        text-align: center;
        padding: 25px 80px 25px 80px;
    }

        .starting-health .explanation-health span {
            font-size: 25px;
            font-weight: bold;
        }

        .starting-health .explanation-health p {
            margin-top: 15px;
            /*text-align-last:center;*/ /* �stteki spana ayr� div verip dive text align center verip exp-health kald�r�rlmas� laz�m*/
        }

.devamini-oku {
    display: none;
}

.gizle {
    display: none;
}

.health-type-text {
    text-align: center;
}

    .health-type-text h1 {
        font-size: 32px;
        font-weight: bold;
        color: #3b4146;
    }

.health-insurance-types {
    display: flex;
    justify-content: center;
    gap: 20px;
}

    .health-insurance-types div {
        display: flex;
        width: 50%;
        flex-direction: column;
        border-radius: 5px;
        background-image: linear-gradient(82deg, rgba(255, 5, 30, 0.45) 5%, rgba(241, 161, 0, 0.55) 47%, rgba(244, 164, 17, 0.63) 94%);
        align-items: center;
        justify-content:space-between;
    }

        .health-insurance-types div span {
            margin-top: 15px;
            font-size: 25px;
            font-weight: bold;
            font-stretch: normal;
            font-style: normal;
            line-height: 1.2;
            letter-spacing: normal;
            text-align: center;
            color: #3b4146;
        }

        .health-insurance-types div a {
            margin: 15px 0;
            padding: 10px 0;
            object-fit: contain;
            border-radius: 5px;
            border: solid 1.5px #3074ff;
            background-color: #fff;
            color:#707070;
            width:80%;
            text-align:center;
        }

        .health-insurance-types div:last-child {
            background-image: linear-gradient(to right,rgba(120,181,250,0.6), rgba(149,134,253,0.6));
        }

.info-part {
    margin-top: 20px;
    padding: 40px;
    border-radius: 5px;
    border: solid 1px #c9c9c9;
}

    .info-part .info-part-container {
        display: flex;
        margin-bottom: 35px;
        justify-content: space-between;
    }

        .info-part .info-part-container .info-part-text {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 50%;
        }

            .info-part .info-part-container .info-part-text span {
                color: #393939;
                font-size: 32px;
                font-weight: 800;
            }

            .info-part .info-part-container .info-part-text p {
                font-size: 22px;
                font-weight: 500;
                color: #3b4146;
            }

            .info-part .info-part-container .info-part-photo img {
                width: 480px;
            }

.health-insurances {
    display: flex;
    justify-content: center;
    gap: 20px;
}

    .health-insurances .tamamlayici {
        border-radius: 5px;
        width: 50%;
        border: solid 8px rgba(251,193,5,0.1);
    }

        .health-insurances .tamamlayici .tamamlayici-title {
            text-align: center;
            color: #3b4146;
            background-color: #FEF8EB;
        }

            .health-insurances .tamamlayici .tamamlayici-title span {
                padding-right: 10px;
                font-size: 25px;
                font-weight: bold;
                color: #3b4146;
            }

        .health-insurances .tamamlayici .tamamlayici-title .health-insurance-tick {
            display: inline-flex;
            padding: 2px 0 0 10px;
            float: left;
        }

    .health-insurances .ozel-saglik .ozel-title .health-insurance-tick {
        padding: 2px 0 0 10px;
        display: inline-flex;
        float: left;
    }

    .health-insurances .tamamlayici .tamamlayici-infos p {
        font-size: 16px;
        line-height: 1.33;
        text-align: center;
        border-bottom: 1px solid #c9c9c9;
        color: #3b4146;
        padding: 25px 30px;
    }

        .health-insurances .tamamlayici .tamamlayici-infos p:last-child {
            border: none;
        }

    .health-insurances .ozel-saglik {
        border-radius: 5px;
        width: 50%;
        border: solid 8px rgba(48,116,255,0.1);
    }

        .health-insurances .ozel-saglik .ozel-title {
            text-align: center;
            color: #3b4146;
            background-image: linear-gradient(to right, rgba(120,181,250,0.1), rgba(149,134,253,0.1));
        }

            .health-insurances .ozel-saglik .ozel-title span {
                font-size: 25px;
                font-weight: bold;
                color: #3b4146;
                padding-right: 10px;
            }

            .health-insurances .ozel-saglik .ozel-infos p {
                font-size: 16px;
                line-height: 1.33;
                text-align: center;
                border-bottom: 1px solid #c9c9c9;
                color: #3b4146;
                padding: 25px 30px;
            }

                .health-insurances .ozel-saglik .ozel-infos p:nth-child(3) {
                    padding: 15px 30px;
                }

                .health-insurances .ozel-saglik .ozel-infos p:last-child {
                    border: none;
                }

.info-part .healt-text {
    margin-top: 25px;
    border-radius: 25px;
    background-image: linear-gradient(to right, rgba(120,181,250,0.15), rgba(149,134,253,0.15));
    padding: 15px 55px;
}

    .info-part .healt-text p {
        font-size: 16px;
        color: #3b4146;
        text-align: center;
    }

.faq-health {
    margin-top: 50px;
    border-radius: 5px;
    padding: 25px;
    background-image: linear-gradient(283deg, rgba(48, 116, 255, 0.1), rgba(48, 116, 255, 0.1), rgba(247, 9, 136, 0.1), rgba(255, 19, 5, 0.1));
}

    .faq-health .faq-first-part {
        justify-content: center;
        display: flex;
        margin-top: 10px;
        gap: 20px;
    }

    .faq-health .faq-second-part {
        justify-content: center;
        display: flex;
        margin-top: 20px;
        gap: 20px;
    }

    .faq-health .panel .panel-title a .panel-title-text {
        padding-right: 55px;
    }

.mobile-content {
    display: inline-block;
    width: 50%;
    height: fit-content;
    border-radius: 5px;
    background-color: #fff;
}

    .mobile-content .panel {
        display: flex;
        border-radius: 5px;
    }

.panel .panel-title a {
    display: inline-table;
}

.mobile-content .panel .tik {
    display: inline-block;
}

    .mobile-content .panel .tik img {
        width: 100px;
        height: 85px;
    }

.mobile-content .panel .panel-heading {
    place-self: center;
    width: -webkit-fill-available;
    margin-left: 25px;
}

.faq-health .mobile-content .panel .panel-heading .panel-title a {
    text-decoration: none;
}

.mobile-content .panel-collapse {
    padding: 10px 30px 10px 30px;
}

.steps {
    display: flex;
    overflow-x: auto;
}

    .steps .step {
        display: flex;
        flex-shrink: 0;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        width: 375px;
        height: 265px;
        margin: 20px 5px;
        padding: 25px;
        text-align: center;
        border-radius: 5px;
        box-shadow: 0px 0px 20px rgb(203 203 203);
    }

        .steps .step .box-title {
            display: flex;
            width: -webkit-fill-available;
            line-height: 18px;
            margin-right: auto;
        }

            .steps .step .box-title .box-title-text {
                margin-left: 20px;
                font-size: 22px;
                color: #3b4146;
                font-weight: bold;
            }

.box-title .number {
    color: #ff9f97;
    font-weight: 800;
    font-size: 70px;
    line-height: 18px;
    margin-right: auto;
    opacity: 0.7;
}

.box-title div:last-child {
    display: flex;
    text-align: left;
    position:relative;
    bottom:10px;
}

.steps .step .desc {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #3b4146;
}

.saglik-text {
    font-size: 36px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.22;
    letter-spacing: normal;
    text-align: left;
    color: #3b4146;
    margin-top: 60px;
}

        .saglik-text div .sigortaladim {
            color: #f51300;
        }
.slick-arrow {
    z-index: 1;
    border: none;
}

.prev-arrow {
    font-size: 23px;
    left: 0;
    width: 21.1px;
    height: 20.6px;
    object-fit: contain;
    background-color: transparent;
    color: #a5a5a5;
}

.next-arrow {
    font-size: 23px;
    right: 0;
    height: 20.6px;
    object-fit: contain;
    background-color: transparent;
    color: #a5a5a5;
}

.ads-container {
    position: relative;
    justify-content: center;
    display: flex;
    opacity: 0.83;
    border-radius: 5px;
    border: solid 0.5px #c9c9c9;
    background-image: linear-gradient(to left, rgba(254, 20, 60, 0.82) 2%, rgba(249, 23, 77, 0.67) 48%, rgba(244, 164, 17, 0.63) 95%);
}

        .ads-container .ads .ads-info {
            left: 40px;
            top: 20px;
            position: absolute;
            background-image: linear-gradient(to right, #fe143c 2%, #f9174d 39%, #f4a411 95%);
            border-radius: 5px;
            box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
            color: #fff;
            font-size: 22px;
            padding: 5px 20px;
            transform: rotate(-5deg);
        }

            .ads-container .ads .ads-info a {
                text-decoration: none;
                color: #fff;
            }

        .ads-container .ads .ads-offer {
            padding: 20px;
            font-size: 30px;
            font-weight: bold;
            font-stretch: normal;
            font-style: normal;
            line-height: 1.4;
            letter-spacing: normal;
            text-align: center;
            color: #fff;
        }

.lead-page-container {
    margin-top: 35px;
}   
    .lead-page-container .lead-page-form-container {
        max-width: 1140px;
        padding: 30px 0;
    }
.campaigns-mobile {
    display: none;
}

#faq-section .title {
    display: none;
}
.faq-wrapper .title{
    margin-left:15px;
    text-align:left;
}
.slick-list {
    padding: 0 !important;
}
.wrapper {
    max-width: 1100px;
    width: 100%;
    position: relative;
    display:flex;
    align-items: center;
    gap: 10px;

}

    .wrapper i {
        top: 50%;
        height: 50px;
        width: 50px;
        cursor: pointer;
        font-size: 1.25rem;
        position: absolute;
        text-align: center;
        color:#707070;
        transform: translateY(-50%);
    }

        .wrapper i:active {
            transform: translateY(-50%) scale(0.85);
        }

        .wrapper i:first-child {
            left: -40px;
        }

        .wrapper i:last-child {
            right: -40px;
        }

    .wrapper .carousel {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: calc((91% / 3) - 12px);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        border-radius: 8px;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel.no-transition {
    scroll-behavior: auto;
}

.carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

    .carousel.dragging .card {
        cursor: grab;
        user-select: none;
    }

.carousel .card {
    scroll-snap-align: start;
    padding: 55px 30px !important;
    border-radius: 15px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
    border: solid 0.5px #c9c9c9;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 20px 5px;
    background: #fff;
}
.carousel .card .box-title .box-title-text {
    margin-left: 20px;
    font-size: 20px;
    color: #3b4146;
    font-weight: bold;
}
.wrapper .carousel .card .box-title {
    margin-right:-30px !important;
    display: flex;
    width: -webkit-fill-available;
    line-height: 18px;
}
.wrapper .carousel .card .desc {
    height: 100%;
    position:relative;
    top:20%;
    line-height:1.22;
    color: #3b4146;
}
    .carousel .card .img {
        background: #8B53FF;
        height: 148px;
        width: 148px;
        border-radius: 50%;
    }

.card .img img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
}

.carousel .card h2 {
    font-weight: 500;
    font-size: 1.56rem;
    margin: 30px 0 5px;
}

@media screen and (min-width:767px) and (max-width:1200px) {
/*    .container {
        margin: auto !important;
        width: -webkit-fill-available;
    }*/

    .starting-health .explanation-health {
        padding: 0;
    }

        .starting-health .explanation-health span {
            font-size: 20px;
            font-weight: bold;
        }

        .starting-health .explanation-health p {
            margin-top: 10px;
        }

    .info-part .info-part-container .info-part-text span {
        font-size: 26px;
    }

    .health-insurances .tamamlayici .tamamlayici-infos p {
        font-size: 14px;
    }

    .info-part .info-part-container .info-part-text p {
        font-size: 20px;
    }

    .info-part .info-part-container .info-part-photo img {
        width: 400px;
    }

    .health-insurances .ozel-saglik .ozel-infos p:nth-child(3) {
        padding: 7px 30px;
    }

    .health-insurances .ozel-saglik .ozel-infos p {
        font-size: 14px;
    }
    .ads-container .ads {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .ads-container .ads .ads-info {
            position: static;
            margin-top: 20px;
        }
    .wrapper .carousel .card .box-title{
        margin-right:-20px !important;
    }
    .carousel .card{
        padding-right: 15px !important;
        padding-left:15px !important;
    }
    .carousel .card .box-title .box-title-text {
        font-size: 18px;
    }
}

@media screen and (max-width:1000px){
    .container {
        margin: auto !important;
        width: -webkit-fill-available;
    }
    .wrapper .carousel{
        width:93%;
        position:relative;
        left:3%;
    }
    .wrapper i:first-child{
        left:-20px;
    }
    .wrapper i:last-child{
        right:-20px;
    }
    .carousel .card .box-title .box-title-text{
        font-size:16px;
    }
}

@media screen and (min-width:500px) {
    
    .mobile-banner-text {
        font-size: 32px !important;
    }
}
@media screen and (max-width:860px) {
    .mobile-content .panel .tik img {
        width: 80px;
        height: 70px;
    }
    .panel-title{
        font-size:14px;
    }
}
@media screen and (min-width:340px) and (max-width:767px) {
    .desktop-banner-text {
        display: none;
    }

    .mobile-banner {
        position: relative;
        margin: 0 -15px;
    }

    .mobile-banner-text {
        display: block;
        position: absolute;
        top: 0;
        font-size: 26px;
        transform: translate(4%, 15%);
    }

    .show {
        display: block !important;
    }

    .show-2 {
        display: block !important;
    }

    .hidden {
        display: none !important;
    }

    .gizle {
        text-align: right;
        font-size: 16px;
        color: #3074ff;
        font-weight: bold;
    }

    .container {
        margin: initial;
    }

    .starting-health {
        box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.21);
        background-color: rgba(201, 201, 201, 0.6);
    }

    .devamini-oku {
        display: block;
        text-align: right;
        font-size: 16px;
        color: #3074ff;
        font-weight: bold;
    }
    .starting-health .explanation-health {
        padding: 0;
    }

        .starting-health .explanation-health span {
            font-size: 18px;
            font-weight: bold;
        }

        .starting-health .explanation-health p {
            margin-top: 10px;
            text-align: start;
        }

    .health-insurances .tamamlayici .tamamlayici-infos p {
        font-size: 14px;
    }

    .health-insurances .ozel-saglik .ozel-infos p:nth-child(3) {
        padding: 7px 30px;
    }

    .health-insurances .ozel-saglik .ozel-infos p {
        font-size: 14px;
    }

    .starting-health .group-photo {
        display: none;
    }


    .info-part {
        padding: 0;
        border: none;
    }

        .info-part .info-part-container {
            flex-direction: column-reverse;
        }

            .info-part .info-part-container .info-part-photo img {
                width: 100%;
            }

            .info-part .info-part-container .info-part-text {
                margin-top:30px;
                width: initial;
                text-align: center;
            }

                .info-part .info-part-container .info-part-text p {
                    display: none;
                }

    .health-insurances {
        flex-direction: column;
    }

        .health-insurances .tamamlayici {
            width: initial;
        }

        .health-insurances .ozel-saglik .ozel-title {
            padding: 5px 0;
        }

        .health-insurances .tamamlayici .tamamlayici-title {
            padding: 5px 0;
        }

        .health-insurances .ozel-saglik {
            width: initial;
        }

        .health-insurances .tamamlayici .tamamlayici-title .health-insurance-tick {
            display: inline-flex;
            float: left;
            padding-left: 38px;
        }

        .health-insurances .ozel-saglik .ozel-title .health-insurance-tick {
            display: inline-flex;
            padding-left: 38px;
            float: left;
        }

    .health-insurance-types div {
        padding: 0 10px;
    }

        .health-insurance-types div a {
            padding: 10px 9px;
            width: -webkit-fill-available;
            border-radius: 20px;
            text-align: center;
        }

        .health-insurance-types div span {
            font-size: 18px;
        }

    .info-part .healt-text {
        padding: 15px 20px;
    }

    .healt-text p:first-child {
        display: block !important;
    }

    .info-part .healt-text .healt-text-sep {
        display: block !important;
        margin-top: 20px;
        text-align: center;
    }

        .info-part .info-part-container .info-part-text span {
            font-size: 20px;
        }

    .ins {
        display: none;
    }

    .health-type-text h1 {
        font-size: 22px;
    }

    .health-insurances .tamamlayici .tamamlayici-title span {
        font-size: 20px;
        padding-right: 38px;
    }

    .health-insurances .ozel-saglik .ozel-title span {
        padding-right: 38px;
        font-size: 20px;
    }

    .faq-health {
        margin: 0 -15px !important;
        border-radius: 0;
        margin-top: 30px !important;
    }

        .faq-health .faq-first-part {
            display: block;
        }

        .faq-health .mobile-content .panel .panel-heading .panel-title a {
            text-decoration: none;
        }

        .faq-health .panel-bold-text {
            font-weight: bold;
        }

        .faq-health .panel .panel-title a .panel-title-text {
            padding-right: 10px;
            font-weight: 500;
        }

        .faq-health .faq-second-part {
            display: block;
        }

    .mobile-content .panel-collapse {
        padding: 10px;
    }

        .mobile-content .panel-collapse .panel-body {
            color: #707070;
            border-top: 1px solid #c9c9c9;
            padding-top: 10px;
        }

    .mobile-content {
        display: block;
        width: initial;
        margin-bottom: 20px
    }

    .faq-health .faq-second-part .mobile-content:last-child {
        margin-bottom: 0;
    }
    .panel-title{
        font-size:16px;
    }
    .mobile-content .panel .tik img {
        width: 50px;
        height: auto;
    }

    .mobile-content .panel .tik {
        margin-right: 5px;
    }

    .tss {
        display: none;
    }

    .oss {
        display: none;
    }

    .ads-container .ads {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .ads-container .ads .ads-info {
            position: static;
            margin-top: 20px;
        }

        .ads-container .ads .ads-offer {
            padding: 5px 20px 0 20px;
            font-size: 22px;
        }

    .saglik-text div {
        font-size: 22px;
        text-align-last: center;
    }

    .lead-page-container .lead-page-form-container {
        padding: 0;
        margin-bottom: 25px;
        box-shadow: none !important;
    }

        .lead-page-container .lead-page-form-container .lead-form {
            padding: 0;
        }

    .lead-page-container {
        padding: 0;
    }

    .campaigns-mobile {
        display: block;
        border-radius: 5px;
        box-shadow: 0 2px 45px 0 rgba(0, 0, 0, 0.05);
        border: solid 1px rgba(59, 65, 70, 0.12);
        background-color: #fff;
        margin: 20px 0;
    }

            .campaigns-mobile .campaigns-mobile-container .mobile-content-container .panel .panel-heading .panel-title a {
                text-decoration: none;
            }

            .campaigns-mobile .campaigns-mobile-container .mobile-content-container .panel {
                border-radius: 5px;
                padding-bottom: 0;
            }

    .mobile-content .panel .panel-heading {
        margin: 0;
    }

    .mobile-content-container .panel-heading {
        border-top: 1px solid rgb(163, 163, 163,0.5);
        padding-top: 10px;
    }

    .mobile-content-container .panel-collapse .panel-body {
        padding: 5px 15px;
        font-size: 15px;
        color: #707070;
    }

    .campaigns-mobile-container .mobile-content-container:first-child .panel {
        padding-bottom: 0;
        padding-top: 5px;
    }

    .campaigns-mobile-container .mobile-content-container:last-child .panel {
        padding-bottom: 15px;
    }

    .campaigns-mobile-container .mobile-content-container:first-child .panel .panel-heading {
        border-top: 0;
    }

    #hidden-p {
        display: none;
    }

    #hidden-p2 {
        display: none;
    }

    .faq-wrapper {
        margin-top: 40px;
        margin-bottom: 20px;
    }

        .faq-wrapper .title {
            margin-left: 0;
            margin-bottom: 0;
            text-align: center;
        }

    #faq-section.faq-wrapper {
        margin-top: 0;
    }

    .lead-page-container .lead-page-form-container .lead-form .textbox, .lead-page-container .lead-page-form-container .lead-form .datepicker {
        margin-top: 5px;
    }

    .wrapper {
        display: none;
    }
}

@media screen and (max-width: 420px) {
    .health-insurances .tamamlayici .tamamlayici-title span {
        font-size: 17px;
    }

    .health-insurances .ozel-saglik .ozel-title span {
        font-size: 17px
    }
}

@media screen and (max-width: 380px) {
    .health-insurances .tamamlayici .tamamlayici-title .health-insurance-tick {
        padding-left: 8px;
    }

    .health-insurances .ozel-saglik .ozel-title .health-insurance-tick {
        padding-left: 8px;
    }

    .health-insurances .tamamlayici .tamamlayici-title span {
        padding-right: 0;
    }

    .health-insurances .ozel-saglik .ozel-title span {
        padding-right: 0;
    }
}
@media screen and (min-width:2px) and (max-width:340px) {
    .desktop-banner-text {
        display: none;
    }
    .mobile-banner{
        position:relative;
        margin:0 -15px;
    }
    .mobile-banner-text {
        display: block;
        position: absolute;
        top: 0;
        font-size: 22px;
    }

    .container {
        margin: initial;
    }

    .show {
        display: block !important;
    }

    .show-2 {
        display: block !important;
    }

    .hidden {
        display: none !important;
    }

    .gizle {
        font-size: 16px;
        color: #3074ff;
        font-weight: bold;
        text-align: right;
    }

    .devamini-oku {
        display: block;
        text-align: right;
        font-size: 16px;
        color: #3074ff;
        font-weight: bold;
    }

    .starting-health {
        box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.21);
        padding-left: 10px;
        background-color: rgba(201, 201, 201, 0.6);
    }

        .starting-health .explanation-health {
            padding: 0;
        }

            .starting-health .explanation-health span {
                font-size: 18px;
                font-weight: bold;
            }

            .starting-health .explanation-health p {
                margin-top: 10px;
                text-align: left;
            }

    .health-insurances .tamamlayici .tamamlayici-infos p {
        font-size: 14px;
    }

    .health-insurances .ozel-saglik .ozel-title {
        padding: 5px 0;
    }

    .health-insurances .tamamlayici .tamamlayici-title {
        padding: 5px 0;
    }

    .health-insurances .ozel-saglik .ozel-infos p:nth-child(3) {
        padding: 7px 30px;
    }

    .health-insurances .ozel-saglik .ozel-infos p {
        font-size: 14px;
    }

    .health-insurances .tamamlayici .tamamlayici-title .health-insurance-tick {
        padding-left: 8px;
        display: inline-flex;
        float: left;
    }

    .health-insurances .ozel-saglik .ozel-title .health-insurance-tick {
        display: inline-flex;
        float: left;
        padding-left: 8px;
    }

    .health-insurances .tamamlayici .tamamlayici-title span {
        padding-right: 0;
        font-size:16px;
    }

    .starting-health .group-photo {
        display: none;
    }


    .info-part {
        padding: 0;
        border: none;
    }

        .info-part .info-part-container {
            flex-direction: column-reverse;
        }

            .info-part .info-part-container .info-part-photo img {
                width: 100%;
            }

            .info-part .info-part-container .info-part-text {
                width: initial;
                text-align: center;
                margin-top: 30px;
            }

                .info-part .info-part-container .info-part-text p {
                    display: none;
                }

    .health-type-text h1 {
        font-size: 22px;
    }

    .health-insurances {
        flex-direction: column;
    }

        .health-insurances .tamamlayici {
            width: initial;
        }

        .health-insurances .ozel-saglik {
            width: initial;
        }

    .health-insurance-types div {
        justify-content: space-between;
        padding: 0 10px;
    }

        .health-insurance-types div a {
            padding: 10px 9px;
            width: -webkit-fill-available;
            border-radius: 20px;
            text-align: center;
            font-size: 13px;
        }

        .health-insurance-types div span {
            font-size: 18px;
        }

    .info-part .healt-text {
        padding: 15px 20px;
        text-align:center;
    }

        .info-part .healt-text .healt-text-sep {
            display: block !important;
            margin-top: 20px;
            text-align: center;
        }

        .info-part .info-part-container .info-part-text span {
            font-size: 18px;
        }

    .ins {
        display: none;
    }

    .health-insurances .ozel-saglik .ozel-title span {
        font-size: 20px;
    }

    .faq-health {
        margin: 0 -15px !important;
        border-radius: 0;
        margin-top: 30px !important;
    }

        .faq-health .faq-first-part {
            display: block;
        }

        .faq-health .mobile-content .panel .panel-heading .panel-title a {
            text-decoration: none;
        }

        .faq-health .faq-second-part {
            display: block;
        }

    .mobile-content {
        display: block;
        width: initial;
        margin-bottom: 20px
    }
    .panel-title {
        font-size: 16px;
    }
    .faq-health .faq-second-part .mobile-content:last-child {
        margin-bottom: 0;
    }

    .mobile-content .panel .tik img {
        width: 50px;
        height: auto;
    }

    .mobile-content .panel .tik {
        margin-right: 5px;
    }

    .faq-health .panel-bold-text {
        font-weight: bold;
    }

    .faq-health .panel .panel-title a .panel-title-text {
        font-weight: 500;
        padding-right: 10px;
    }

    .mobile-content .panel-collapse {
        padding: 10px;
    }

        .mobile-content .panel-collapse .panel-body {
            border-top: 1px solid #c9c9c9;
            padding-top: 10px;
        }

    .tss {
        display: none;
    }

    .oss {
        display: none;
    }

    .ads-container .ads {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .ads-container .ads .ads-info {
            position: static;
            margin-top: 20px;
        }

    .saglik-text div {
        font-size: 20px;
        text-align-last: center;
    }

    .lead-page-container .lead-page-form-container {
        padding: 0;
        margin-bottom: 25px;
        box-shadow: none !important;
    }

        .lead-page-container .lead-page-form-container .lead-form {
            padding: 0;
        }

    .lead-page-container {
        padding: 0;
    }

    .mobile-content .panel .panel-heading {
        margin: 0;
    }

    .campaigns-mobile {
        display: block;
        border-radius: 5px;
        box-shadow: 0 2px 45px 0 rgba(0, 0, 0, 0.05);
        border: solid 1px rgba(59, 65, 70, 0.12);
        background-color: #fff;
        margin: 20px 0;
    }

            .campaigns-mobile .campaigns-mobile-container .mobile-content-container .panel .panel-heading .panel-title a {
                text-decoration: none;
            }

            .campaigns-mobile .campaigns-mobile-container .mobile-content-container .panel {
                border-radius: 5px;
                padding-bottom: 0;
            }

        .ads-container .ads .ads-offer {
            padding: 5px 20px 0 20px;
            font-size: 22px;
        }

    .mobile-content-container .panel-heading {
        border-top: 1px solid rgb(163, 163, 163,0.5);
        padding-top: 10px;
    }

    .mobile-content-container .panel-collapse .panel-body {
        padding: 5px 15px;
        font-size: 15px;
        color: #707070;
    }

    .campaigns-mobile-container .mobile-content-container:first-child .panel {
        padding-bottom: 0;
        padding-top: 5px;
    }

    .campaigns-mobile-container .mobile-content-container:last-child .panel {
        padding-bottom: 15px;
    }

    .campaigns-mobile-container .mobile-content-container:first-child .panel .panel-heading {
        border-top: 0;
    }

    #hidden-p {
        display: none;
    }

    #hidden-p2 {
        display: none;
    }
    .faq-wrapper {
        margin-top: 40px;
        margin-bottom: 20px;
    }

        .faq-wrapper .title {
            margin-left: 0;
            margin-bottom: 0;
            text-align: center;
        }

    #faq-section.faq-wrapper {
        margin-top: 0;
    }
    .lead-page-container .lead-page-form-container .lead-form .textbox, .lead-page-container .lead-page-form-container .lead-form .datepicker {
        margin-top: 5px;
    }
    .wrapper {
        display: none;
    }
}

.landing_logos {
    display: flex;
    justify-content: flex-end;
    margin: 10px;
}

    .landing_logos .landing_logo {
        height: 40px;
        width: auto;
    }

.landing_banner .w_landing_banner {
    width: 100%;
    display: block;
    height: auto;
}

.landing_banner .m_landing_banner {
    width: 100%;
    display: none;
    height: auto;
}

.w_fast_menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .w_fast_menu .menu_box {
        width: 300px;
        height: 222px;
        margin: 50px;
        padding: 15px 30px;
        border-radius: 10px;
        box-shadow: 0px 11px 24px 0 rgba(102, 102, 102, 0.4);
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

        .w_fast_menu .menu_box span {
            margin: 16px;
            font-size: 24px;
            font-weight: bold;
            line-height: 1.33;
            text-align: justify;
            color: #30434d;
        }

        .w_fast_menu .menu_box a {
            height: 54px;
            padding: 15px 23px 22px 29px;
            margin-bottom: -30px;
            border: none;
            border-radius: 25px;
            background-image: linear-gradient(to top, rgba(245, 19, 0, 1), #f8001d);
            font-size: 18px;
            font-weight: bold;
            text-align: justify;
            color: #ffffff;
            white-space: nowrap;
        }

.m_fast_menu {
    display: none;
}

.content_bc {
    background-color: #f6f5f4;
}

    .content_bc .container {
        padding-top: 50px;
    }

        .content_bc .container .content_element a {
            display: flex;
            align-items: center;
            color: #f51401;
        }

            .content_bc .container .content_element a.collapsed {
                color: #4b4a4a;
            }

.landing_payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px;
    margin-bottom: 0;
    margin-top: 0px;
}

    .landing_payment p {
        max-width: 550px;
        margin: 69px 63px 63px 106px;
        font-size: 36px;
        font-weight: 800;
        line-height: 0.89;
        text-align: center;
        color: #38424b;
    }

    .landing_payment .w_payment_banner {
        display: block;
    }

    .landing_payment .m_payment_banner {
        display: none;
        height: auto;
    }

.svg_arrow {
    width: 14px;
    height: 26px;
    color: #f51300;
    margin-right: 10px;
}

.mx-20 {
    margin: 0 20px;
}

.mx-40 {
    margin: 0 40px;
}

h1 {
    font-size: 35px;
    font-weight: 800;
    color: rgb(55, 66, 74);
}

h2 {
    font-weight: 800;
    color: rgb(55, 66, 74);
    font-size: 35px;
}

.w-road {
    display: block;
}

.m-road {
    display: none;
}

.c-red {
    color: #f51300;
}

.bc-gray {
    background-color: #f3f3f3;
}

.bc-gray-change {
    background-color: #f3f3f3;
}

.gray-box p {
    font-size: 18px;
}

.mt-2rem {
    margin-top: 2rem;
}

.mt-4rem {
    margin-top: 4rem !important;
}

.mt-8rem {
    margin-top: 8.5rem !important;
}

.mb-2rem {
    margin-bottom: 2rem;
}

.my-25 {
    margin: 0px 25px;
}

.ml-y12 {
    margin-left: 12%;
}

.p-0 {
    padding: 0;
}

.pt-4 {
    padding-top: 3rem;
}

.py-4 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.pl-manuel {
    padding-left: 2.5rem;
}

.px-4 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.d-inline-flex {
    display: inline-flex !important;
}

.break-line {
    display: none;
}

.btn-customize {
    margin: 20px 0;
}

    .btn-customize a {
        color: white;
        font-weight: bold;
        background-color: #4363ec;
        border-radius: 5px;
        padding: 15px 45px 15px 45px;
        font-size: 16px;
    }

.icon-box {
    border-bottom: 3px solid #dedede;
    min-height: 155px;
    margin-top: 2rem;
}

    .icon-box:nth-child(4), .icon-box:nth-child(5) {
        border-bottom: none;
        margin-top: 2rem;
    }

.white-box {
    background-color: #ffffff;
    height: 200px;
    margin-top: 30px;
}

.road-map-container {
    margin-left: 12%;
    display: flex;
    flex-wrap: wrap;
}

.road-map-box {
    width: 33%;
}

    .road-map-box .white-box {
        margin-right: 20px;
    }

.white-box .white-box-img-1 {
    width: 22%
}

.white-box .white-box-img-2 {
    width: 25%
}

.white-box .white-box-img-3 {
    width: 25%
}

.white-box .white-box-img-4 {
    width: 27%
}

.white-box .white-box-img-5 {
    width: 25%
}

.white-box .white-box-img-6 {
    width: 25%
}

    .white-box .white-box-img-1 img,
    .white-box .white-box-img-2 img,
    .white-box .white-box-img-3 img,
    .white-box .white-box-img-4 img,
    .white-box .white-box-img-5 img,
    .white-box .white-box-img-6 img {
        width: 100%;
        height: auto;
    }

.white-box .white-box-p {
    padding: 0px 25px 0px 40px;
}

.img-tire {
    width: 25%;
    position: absolute;
    left: -35px;
    top: 340px;
}

    .img-tire img {
        width: 100%;
        height: auto;
    }

.experience-road {
    margin-top: 130px;
    margin-bottom: 70px;
}

.row-box {
    position: relative;
}

    .row-box .row-box-picture-right {
        position: absolute;
        width: 50%;
        top: -100px;
        right: -55px;
    }

    .row-box .row-box-picture-left {
        /*position: absolute;*/
        width: 22%;
        top: 373px;
        left: -55px;
    }

.red-box {
    width: 59%;
    margin: 0% 0% 0% 14%;
    background-color: #f80023;
    color: white;
    padding: 20px 35px;
    font-size: 18px;
    border-radius: 3px;
}

    .red-box p {
        font-size: 19px;
    }

h2 .vector-arrow {
    position: relative;
    top: 30px;
    left: -40px;
}

.w-road .first-white-box,
.w-road .second-white-box {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    /*margin: 0% 5% 0% 14%;*/
    background-color: #ffffff;
    color: black;
    padding: 20px 35px;
    font-size: 18px;
    border-radius: 3px;
}

.first-white-box .red-number {
    font-weight: 800;
    font-size: 35px;
}

.icon-img-1 {
    width: 30%;
}

.icon-img-2 {
    width: 24%;
}

.icon-img-3 {
    width: 26%;
}

.icon-img-4 {
    width: 29%;
}

.icon-img-5 {
    width: 26%;
}

    .icon-img-1 img,
    .icon-img-2 img,
    .icon-img-3 img,
    .icon-img-4 img,
    .icon-img-5 img {
        width: 100%;
    }

.icon-text {
    width: 100%;
    font-size: 19px;
}

.yol-yardim .w-road .desc {
    margin-top: 42px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

    .yol-yardim .w-road .desc .icons {
        display: flex;
        flex-wrap: wrap;
        width: 55%;
    }

        .yol-yardim .w-road .desc .icons h1 {
            width: 100%;
            margin-top: 0;
            padding-left: 40px;
        }

        .yol-yardim .w-road .desc .icons .box {
            flex-basis: 39%;
            padding: 15px 35px;
            display: flex;
            flex-direction: column;
            font-weight: 600;
        }

            .yol-yardim .w-road .desc .icons .box:nth-child(2) {
                flex-basis: 38%;
                border-bottom: 2px solid #22222242;
            }

            .yol-yardim .w-road .desc .icons .box:nth-child(3) {
                flex-basis: 30%;
                border-bottom: 2px solid #22222242;
            }

            .yol-yardim .w-road .desc .icons .box:nth-child(4) {
                flex-basis: 32%;
                border-bottom: 2px solid #22222242;
            }

            .yol-yardim .w-road .desc .icons .box img {
                height: 58px;
                margin-bottom: 10px;
                object-fit: contain;
                width: max-content;
            }

    .yol-yardim .w-road .desc .gray-box {
        width: 42%;
        margin: 0 0 0 25px;
        background-color: #efeff0;
        padding: 20px;
        border-radius: 3px;
        text-align: center;
        height: 270px;
    }



#exhaust-gas .w-campaign-info .title {
    max-width: 273px;
    position: relative;
    font-size: 35px;
    font-weight: 800;
    line-height: 1.17;
    letter-spacing: -0.9px;
    color: #f91300;
}

    #exhaust-gas .w-campaign-info .title span {
        position: absolute;
        bottom: -30px;
        font-size: 75px;
        font-weight: 900;
        line-height: 0.81;
        letter-spacing: -1.88px;
    }

#exhaust-gas .w-campaign-info .boxes {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    #exhaust-gas .w-campaign-info .boxes .box {
        max-width: 341px;
        height: 214px;
        padding: 42px 35px 0 15px;
        border-radius: 5px;
        box-shadow: 0px 19px 51px 0 rgba(102, 102, 102, 0.09);
        background-color: #d7dadd59;
    }

        #exhaust-gas .w-campaign-info .boxes .box p {
            font-size: 17px;
            font-weight: 500;
            line-height: 1.41;
            letter-spacing: -0.34px;
            color: #374248;
        }

            #exhaust-gas .w-campaign-info .boxes .box p span {
                font-weight: bold;
                color: #f91300;
            }

                #exhaust-gas .w-campaign-info .boxes .box p span.phone {
                    font-weight: 900;
                }

#exhaust-gas .m-campaign-info {
    display: none;
}

#exhaust-gas .roadside-asistance {
    display: flex;
    flex-direction: column;
}

    #exhaust-gas .roadside-asistance .title h2 {
        font-size: 36px;
        font-weight: 800;
        line-height: 1.24;
        letter-spacing: -0.9px;
    }

        #exhaust-gas .roadside-asistance .title h2 span {
            color: #f91300;
        }

    #exhaust-gas .roadside-asistance .title p {
        font-size: 26.5px;
        font-weight: 500;
        line-height: 1.34;
        letter-spacing: -0.66px;
        color: #374248;
    }

    #exhaust-gas .roadside-asistance .desc {
        margin-top: 42px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

        #exhaust-gas .roadside-asistance .desc .icons {
            display: flex;
            flex-wrap: wrap;
            max-width: 642px;
        }

            #exhaust-gas .roadside-asistance .desc .icons .box {
                flex-basis: 33.3%;
                max-width: 214px;
                padding-right: 40px;
                padding-bottom: 15px;
                padding-top: 15px;
                display: flex;
                flex-direction: column;
            }

                #exhaust-gas .roadside-asistance .desc .icons .box:nth-child(1),
                #exhaust-gas .roadside-asistance .desc .icons .box:nth-child(2),
                #exhaust-gas .roadside-asistance .desc .icons .box:nth-child(3) {
                    border-bottom: 2px solid #22222242;
                }

                #exhaust-gas .roadside-asistance .desc .icons .box img {
                    height: 58px;
                    margin-bottom: 10px;
                    object-fit: contain;
                    width: max-content;
                }

    #exhaust-gas .roadside-asistance .call-center {
        max-width: 302px;
        padding: 19px 13px 24px 14px;
        box-shadow: 0px 19px 51px 0 rgba(102, 102, 102, 0.09);
        background-color: #d7dadd69;
    }

        #exhaust-gas .roadside-asistance .call-center p {
            font-size: 21px;
            font-weight: 500;
            line-height: 1.5;
            letter-spacing: -0.42px;
            text-align: center;
            color: #374248;
            margin-bottom: 15px;
            max-width: 275px;
        }

            #exhaust-gas .roadside-asistance .call-center p .phone {
                font-size: 34px;
                font-weight: 800;
                line-height: 0.93;
                text-align: left;
                color: #f51d0b;
            }

#exhaust-gas .panel-body ul {
    margin-left: 20px;
}

    #exhaust-gas .panel-body ul li {
        list-style-type: disc;
        margin-bottom: 10px;
        font-size: 16px;
    }

        #exhaust-gas .panel-body ul li p {
            margin-left: 10px;
            margin-bottom: 5px;
        }

#pet11-page .pet-container {
    padding-right: 0;
    padding-left: 0;
    overflow-x: auto;
}

#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;
        }

/*#region PRICE-TABLE*/

#pet11-page .price-table-container {
    display: flex;
    justify-content: space-evenly;
    gap: 8px;
}

    #pet11-page .price-table-container > div {
        border: 1px solid #a5adb0;
        border-radius: 10px;
    }

    #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.bold {
            font-weight: bold;
        }

        #pet11-page .price-table-container table tr:last-child td {
            border-bottom: 0;
        }

        #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: 5px;
        }

            #pet11-page .price-table-container table tr td:first-child {
                border-left: 0;
            }

            #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 th {
            padding: 5px;
            vertical-align: middle;
            border-top: 0;
            color: #374248;
            border-bottom: 1px solid #ccc;
        }


    #pet11-page .price-table-container .slick-next:before,
    .m-road .price-table-container .slick-next:before {
        content: "\f054";
        color: #898e91;
        font-family: 'FontAwesome';
    }

    #pet11-page .price-table-container .slick-prev:before,
    .m-road .price-table-container .slick-prev:before {
        content: "\f053";
        color: #898e91;
        font-family: 'FontAwesome';
    }

@media only screen and (max-device-width:767px) and (-webkit-min-device-pixel-ratio:2) {
    #pet11-page .price-table-container {
        margin: 0 25px;
    }

        #pet11-page .price-table-container > div {
            border: none;
        }

            #pet11-page .price-table-container > div table tr td {
                padding: 10px;
            }
}

/*#endregion PRICE-TABLE*/

/*#region CONTENT-WHY*/
#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;
                    }
/*#endregion CONTENT-WHY*/


#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
            }

.plan2-page #companyBrands, .garaj11-page #companyBrands {
    margin-top: 50px;
}

.anlasmali-sigortalar-container {
    text-align: center;
}

.anlasmali-sigortalar-text {
    text-align: center;
}

.brandNamePet {
    display: inline-block;
}

.tamamlayici-page .discount-price-tables {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

    .tamamlayici-page .discount-price-tables .title {
        text-align: center;
        color: #3B4146;
        font-size: 28px;
        font-weight: 600;
        margin: auto;
        width: 100%;
        margin-bottom: 15px;
    }

    .tamamlayici-page .discount-price-tables p {
        width: 100%;
        padding: 0 10px 10px;
    }

.tamamlayici-page .scroll-div-table {
    overflow-x: auto;
    width: 100%;
}

.tamamlayici-page .discount-price-tables h4 {
    font-weight: bold;
    font-size: 18px;
    padding-left: 10px;
    margin-bottom: 15px;
    color: #3B4146;
    margin-top: 15px;
}

.tamamlayici-page .discount-price-tables table {
    width: 100%;
    border: 1px solid #ccc;
}

    .tamamlayici-page .discount-price-tables table tr td {
        padding: 10px;
        border-bottom: 0.5px solid #ccc;
    }

    .tamamlayici-page .discount-price-tables table tr th {
        padding: 10px;
        text-align: left;
        border-bottom: 0.5px solid #ccc;
    }

    .tamamlayici-page .discount-price-tables table tr td.text-right {
        text-align: center;
    }

.tamamlayici-page .discount-price-tables .dask-table table tr td.text-right {
    min-width: 75px;
}

.tamamlayici-page .discount-price-tables table tr td.text-center {
    text-align: center;
}

.tamamlayici-page .discount-price-tables .table1, .discount-price-tables .table2 {
    width: 50%;
    padding: 0 30px;
    margin-bottom: 15px;
}

.tamamlayici-page .discount-price-tables .table3 {
    width: 100%;
    padding: 0 30px;
}


@media only screen and (max-device-width: 920px) and (-webkit-min-device-pixel-ratio: 2) {
    .w-road .first-white-box, .w-road .second-white-box {
        place-content: center;
        margin: 0;
    }

    .mt-8rem {
        margin-top: 30px !important;
    }
}

@media only screen and (max-device-width: 1200px) and (-webkit-min-device-pixel-ratio: 2) {
    .row-box .row-box-picture-left {
        top: 400px;
    }
}

@media only screen and (max-device-width:767px) and (-webkit-min-device-pixel-ratio:2) {
    #pet11-page .pet-container {
        border: 0;
        border-radius: 0;
    }

    #pet11-page .price-table-container {
        border: 1px solid #a5adb0;
        border-radius: 30px;
    }

    #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 .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: 0 auto 15px auto;
        }

        #pet11-page .content-veterinary .veterinary-list {
            max-width: 100%;
        }
}

@media only screen and (max-device-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
    .row-box .row-box-picture-left {
        top: 373px;
    }
}

@media (min-device-width:568px) and (max-device-width:768px) and (-webkit-min-device-pixel-ratio: 2) {
    h1, h2 {
        font-size: 22px;
        line-height: 1.5;
        letter-spacing: -0.55px;
        text-align: center;
    }

    .landing_logos .landing_logo {
        height: 40px;
        width: auto;
    }

    .w_fast_menu .menu_box span {
        font-size: 14px;
    }

    .w_fast_menu .menu_box a {
        font-size: 14px;
        margin-bottom: -30px;
    }

    .icon-text-1 {
        line-height: 2;
    }

    .icon-text-2 {
        line-height: 5;
    }

    .icon-text-3 {
        line-height: 5;
    }

    .icon-text-4 {
        line-height: 2;
    }

    .icon-text-5 {
        line-height: 5;
    }

    .white-box {
        height: auto;
        border: 3px solid #dedede;
        border-radius: 15px;
        padding: 15px 30px 0px 30px;
        text-align: center;
        margin: 15px 0px;
        min-height: 180px; /*
        height: 180px;
        margin-top: 5px;
        padding-top: 2%;
        font-size: 12px;*/
    }

        .white-box .white-box-img-1 {
            width: 15%
        }

        .white-box .white-box-img-2 {
            width: 17%
        }

        .white-box .white-box-img-3 {
            width: 18%
        }

        .white-box .white-box-img-4 {
            width: 19%
        }

        .white-box .white-box-img-5 {
            width: 18%
        }

        .white-box .white-box-img-6 {
            width: 19%
        }

        .white-box .box-p-1 {
            margin-left: 7%;
        }

        .white-box .box-p-2 {
            margin-left: 5%;
        }

        .white-box .box-p-3 {
            margin-left: 4%;
        }

        .white-box .box-p-4 {
            margin-left: 3%;
        }

        .white-box .box-p-5 {
            margin-left: 4%;
        }

        .white-box .box-p-6 {
            margin-left: 3%;
        }

    .img-tire {
        display: none;
    }

    .pl-manuel {
        padding-left: 0;
    }

    .break-line {
        display: block;
    }

    .red-box {
        width: 100%;
    }

        .red-box p {
            font-size: 14px;
        }

    .icon-box {
        min-height: initial;
        border-bottom: 3px solid #dedede !important;
    }

        .icon-box img {
            width: 100%;
        }

    .mobile-left {
        padding-right: 43%;
    }

    .mx-65 {
        margin: 0;
    }

    .ml-y8 {
        margin-left: -8%;
    }

    .bc-gray-change {
        background-color: #ffffff;
    }

    #pet11-page .w-campaign-info {
        padding-bottom: 100px;
    }

    .w-road {
        display: none;
    }

    .m-road {
        display: block;
    }

        .m-road .desc {
            width: 100%;
        }

            .m-road .desc .gray-box {
                width: 100%;
                margin: 0 !important;
                height: auto;
                background-color: #efeff0;
                padding: 20px;
                border-radius: 3px;
                text-align: center;
            }

            .m-road .desc .icons {
                width: 100%;
            }

                .m-road .desc .icons .box {
                    display: flex;
                    flex-wrap: wrap;
                    flex-basis: 100% !important;
                    flex-direction: row;
                    align-items: center;
                    max-width: 100%;
                    padding-left: 20px;
                    padding-right: 0px;
                    padding-bottom: 10px;
                    padding-top: 15px;
                    border-bottom: 2px solid #22222242;
                }

                    .m-road .desc .icons .box img {
                        height: 38px;
                        margin-bottom: 0;
                        max-width: 50px;
                        margin-right: 20px;
                    }

        .m-road .row-box .second-white-box {
            border: 3px solid #dedede;
            border-radius: 15px;
            padding: 15px 30px;
        }

        .m-road .row-box .first-white-box {
            margin: 0;
            text-align: center;
            margin-top: 35px;
        }

            .m-road .row-box .first-white-box .red-number {
                font-size: 25px;
            }

    .row-box .row-box-picture-left {
        left: 0;
        top: 260px;
        position: absolute;
    }

    .m-road .row-box .vector-arrow {
        position: absolute;
        right: 30px;
        top: 230px;
        width: 11%;
        height: auto;
    }
}

@media only screen and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) {
    h1, h2 {
        font-size: 20px;
        line-height: 1.5;
        letter-spacing: -0.55px;
        text-align: center;
    }

    .landing_logos .landing_logo {
        height: 24px;
        width: auto;
    }

    .landing_banner {
        margin-top: 15px;
    }

        .landing_banner .w_landing_banner {
            display: none;
        }

        .landing_banner .m_landing_banner {
            display: block;
        }

    .w_fast_menu {
        display: none;
    }

    .m_fast_menu {
        display: flex;
        flex-direction: column
    }

        .m_fast_menu .menu_box {
            height: 70px;
            border-bottom: 1px solid #f3f3f3;
            display: flex;
            align-items: center;
        }

            .m_fast_menu .menu_box a {
                display: flex;
                justify-content: space-around;
                align-items: center;
                width: 100%;
            }

                .m_fast_menu .menu_box a img {
                    width: 54px;
                    height: 50px;
                }

                .m_fast_menu .menu_box a span {
                    font-size: 15px;
                    font-weight: bold;
                    line-height: 0.93;
                    letter-spacing: -0.15px;
                    text-align: justify;
                    color: #30434d;
                }

    .content_bc .container .content_element a {
        font-size: 15px;
    }

    .landing_payment p {
        margin: 40px 10px;
        font-size: 20px;
    }

    .landing_payment .w_payment_banner {
        display: none;
    }

    .landing_payment .m_payment_banner {
        display: block;
    }

    .icon-text-1 {
        line-height: 4;
    }

    .icon-text-2 {
        line-height: 5;
    }

    .icon-text-3 {
        line-height: 5;
    }

    .icon-text-4 {
        line-height: 2;
    }

    .icon-text-5 {
        line-height: 5;
    }


    .white-box {
        height: auto;
        border: 1px solid #dedede;
        border-radius: 15px;
        padding: 15px 30px;
        margin: 15px 0px;
        text-align: center;
        min-height: 180px;
    }

        .white-box .white-box-img-1 {
            width: 10%;
            margin: auto auto 5% auto;
        }

        .white-box .white-box-img-2 {
            width: 12%;
            margin: auto auto 5% auto;
        }

        .white-box .white-box-img-3 {
            width: 13%;
            margin: auto auto 5% auto;
        }

        .white-box .white-box-img-4 {
            width: 14%;
            margin: auto auto 5% auto;
        }

        .white-box .white-box-img-5 {
            width: 13%;
            margin: auto auto 5% auto;
        }

        .white-box .white-box-img-6 {
            width: 14%;
            margin: auto auto 5% auto;
        }

        .white-box .box-p-1 {
            padding: 0;
        }

        .white-box .box-p-2 {
            padding: 0;
        }

        .white-box .box-p-3 {
            padding: 0;
        }

        .white-box .box-p-4 {
            padding: 0;
        }

        .white-box .box-p-5 {
            padding: 0;
        }

        .white-box .box-p-6 {
            padding: 0;
        }

    .img-tire {
        display: none;
    }

    .pl-manuel {
        padding-left: 0;
    }

    .break-line {
        display: block;
    }

    .red-box {
        width: 100%;
        margin: initial;
        padding: 20px 20px;
    }

        .red-box p {
            font-size: 14px;
        }

    .mobile-left {
        padding-right: 43%;
    }

    .icon-box {
        min-height: 100px;
        border-bottom: 3px solid #dedede !important;
        display: flex;
    }

        .icon-box img {
            width: 100%;
        }

    .icon-img-1 {
        width: 17%;
        margin-right: 7%;
    }

    .icon-img-2 {
        width: 16%;
        margin-right: 8%;
    }

    .icon-img-3 {
        width: 17%;
        margin-right: 7%;
    }

    .icon-img-4 {
        width: 19%;
        margin-right: 7%;
    }

    .icon-img-5 {
        width: 17%;
        margin-right: 8%;
    }

    .mx-65 {
        margin: 0;
    }

    .ml-y8 {
        margin-left: -8%;
    }

    .bc-gray-change {
        background-color: #ffffff;
    }

    .pr-0 {
        padding-right: 0;
    }

    .gray-box p {
        font-size: 16px;
    }

    .w-road {
        display: none;
    }

    .m-road {
        display: block;
    }

        .m-road .desc {
            width: 100%;
        }

            .m-road .desc .gray-box {
                width: 100%;
                margin: 0 !important;
                height: auto;
                background-color: #efeff0;
                padding: 20px;
                border-radius: 3px;
                text-align: center;
            }

            .m-road .desc .icons {
                width: 100%;
            }

                .m-road .desc .icons .box {
                    display: flex;
                    flex-wrap: wrap;
                    flex-basis: 100% !important;
                    flex-direction: row;
                    align-items: center;
                    max-width: 100%;
                    padding-left: 20px;
                    padding-right: 0px;
                    padding-bottom: 10px;
                    padding-top: 15px;
                    border-bottom: 1px solid #22222242;
                    font-weight: 600;
                }

                    .m-road .desc .icons .box img {
                        height: 38px;
                        margin-bottom: 0;
                        max-width: 50px;
                        margin-right: 20px;
                    }



        .m-road .row-box .row-box-picture-right {
            position: absolute;
            width: 68%;
            /*top: 0px;*/
            right: -70px;
        }

        .m-road .row-box .vector-arrow {
            position: absolute;
            right: 30px;
            top: 285px;
            width: 11%;
            height: auto;
        }

        .m-road .row-box .row-box-picture-left {
            position: absolute;
            width: 28%;
            top: 275px;
            left: -25px;
        }

        .m-road .row-box .first-white-box {
            margin: 0;
            text-align: center;
            margin-top: 35px;
        }

            .m-road .row-box .first-white-box .red-number {
                font-size: 25px;
            }

        .m-road .row-box .second-white-box {
            border: 3px solid #dedede;
            border-radius: 15px;
            padding: 15px 30px;
        }


    #exhaust-gas .container {
        padding-left: 0px;
        padding-right: 0px;
    }

    #exhaust-gas .w-campaign-info {
        display: none;
    }

    #exhaust-gas .m-campaign-info {
        display: block;
        margin-left: 15px;
        margin-right: 15px;
    }

        #exhaust-gas .m-campaign-info .title {
            font-size: 23px;
            font-weight: 800;
            line-height: 1.13;
            letter-spacing: -0.58px;
            text-align: center;
            color: #f91300;
        }

        #exhaust-gas .m-campaign-info .boxes {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            padding: 20px 14px 31px 13px;
            box-shadow: 0px 5px 10px 0 rgba(25, 45, 51, 0.15);
            background-color: #ffffff;
            margin-top: 5px;
        }

            #exhaust-gas .m-campaign-info .boxes a {
                max-width: 140px;
                height: 30px;
                padding: 9px 13px 10px 17px;
                border-radius: 14.1px;
                background-image: linear-gradient(to top, rgba(245, 19, 0, 1), #f80017);
                font-size: 10.5px;
                font-weight: bold;
                line-height: 1.19;
                letter-spacing: 1px;
                text-align: center;
                color: #ffffff;
                position: absolute;
                bottom: -15px;
                white-space: nowrap;
            }

            #exhaust-gas .m-campaign-info .boxes .box {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }

                #exhaust-gas .m-campaign-info .boxes .box .line {
                    width: 219px;
                    height: 2px;
                    display: inline-flex;
                    background-color: #f3f3f3;
                }

                #exhaust-gas .m-campaign-info .boxes .box p {
                    font-size: 13px;
                    font-weight: 500;
                    line-height: 1.31;
                    letter-spacing: -0.26px;
                    text-align: center;
                    color: #374248;
                    margin-top: 20px;
                    margin-bottom: 15px;
                    margin-right: 14px;
                    margin-left: 13px;
                }

                    #exhaust-gas .m-campaign-info .boxes .box p span {
                        font-weight: bold;
                        color: #f91300;
                    }

                        #exhaust-gas .m-campaign-info .boxes .box p span.phone {
                            font-weight: 900;
                        }

    #exhaust-gas .roadside-asistance {
        justify-content: center;
        align-items: center;
    }

        #exhaust-gas .roadside-asistance .title {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

            #exhaust-gas .roadside-asistance .title h2 {
                font-size: 22px;
                line-height: 1.14;
                letter-spacing: -0.55px;
                text-align: center;
                max-width: 247px;
            }

                #exhaust-gas .roadside-asistance .title h2 span {
                    display: block;
                }

            #exhaust-gas .roadside-asistance .title p {
                padding: 20px 30px;
                font-size: 14px;
                font-weight: 500;
                line-height: 1.52;
                letter-spacing: -0.36px;
                text-align: center;
                box-shadow: 0px 19px 51px 0 rgba(102, 102, 102, 0.09);
                background-color: #d7dadd;
            }

        #exhaust-gas .roadside-asistance .desc {
            margin-top: 15px;
        }

            #exhaust-gas .roadside-asistance .desc .icons {
                flex-direction: column;
            }

                #exhaust-gas .roadside-asistance .desc .icons .box {
                    flex-direction: row;
                    align-items: center;
                    max-width: 100%;
                    padding-left: 0px;
                    padding-right: 0px;
                    padding-bottom: 10px;
                    padding-top: 15px;
                    margin-left: 20px;
                    margin-right: 20px;
                    border-bottom: 2px solid #22222242;
                }

                    #exhaust-gas .roadside-asistance .desc .icons .box img {
                        height: 38px;
                        margin-bottom: 0;
                        max-width: 50px;
                        margin-right: 20px;
                    }

        #exhaust-gas .roadside-asistance .call-center {
            display: none;
        }

    #exhaust-gas .conditions {
        margin-top: 50px;
        padding-top: 20px;
        padding-bottom: 120px;
        padding-left: 20px;
        padding-right: 20px;
    }

        #exhaust-gas .conditions h1 {
            font-size: 22px;
            line-height: 1.18;
            letter-spacing: -0.55px;
        }

        #exhaust-gas .conditions p {
            font-size: 13px;
            font-weight: bold;
            line-height: 1.08;
            letter-spacing: -0.2px;
        }
}

@media only screen and (max-device-width: 470px) and (-webkit-min-device-pixel-ratio: 2) {
    .m-road .row-box .row-box-picture-right {
        top: 20px;
    }
}
/* ipad mod */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio:2 ) {
    .white-box {
        height: auto;
        font-size: 12px;
        display: flex;
        border: 3px solid #dedede;
        border-radius: 15px;
        padding: 15px 30px;
        margin: 15px 0px;
        text-align: center;
        min-height: 180px;
    }

        .white-box .white-box-img {
            width: 15%;
        }

        .white-box .white-box-p {
            font-size: 19px;
        }

    .icon-box {
        border-bottom: 3px solid #dedede !important;
        display: flex;
    }

        .icon-box img {
            width: 60%;
            margin: 0.8rem;
        }

    .icon-img-2 {
        margin-right: 30px;
    }

    .icon-img-3 {
        margin-right: 15px;
    }

    .icon-img-4 {
        margin-right: 5px;
    }

    .icon-img-5 {
        margin-right: 15px;
    }

    .icon-text {
        line-height: 2;
    }

    .ml-y8 {
        margin-left: -4%;
    }

    .red-box {
        width: 100%;
        margin: initial;
    }

    .yol-yardim .w-road .desc .gray-box {
        width: 40%;
        margin: 0 0 0 25px;
        background-color: #efeff0;
        padding: 20px;
        border-radius: 3px;
        text-align: center;
        height: auto;
    }

    .ipad-isVisible {
        display: block;
    }

    .ipad-unVisible {
        display: none;
    }

        .white-box .white-box-img-1 {
            width: 10%;
            margin: auto auto 5% auto;
        }

        .white-box .white-box-img-2 {
            width: 12%;
            margin: auto auto 5% auto;
        }

        .white-box .white-box-img-3 {
            width: 13%;
            margin: auto auto 5% auto;
        }

        .white-box .white-box-img-4 {
            width: 14%;
            margin: auto auto 5% auto;
        }

        .white-box .white-box-img-5 {
            width: 13%;
            margin: auto auto 5% auto;
        }

        .white-box .white-box-img-6 {
            width: 14%;
            margin: auto auto 5% auto;
        }

            .white-box .white-box-img-1 img,
            .white-box .white-box-img-2 img,
            .white-box .white-box-img-3 img,
            .white-box .white-box-img-4 img,
            .white-box .white-box-img-5 img,
            .white-box .white-box-img-6 img {
                width: 70%;
                height: auto;
            }

        .white-box .box-p-1 {
            padding: 0;
        }

        .white-box .box-p-2 {
            padding: 0;
        }

        .white-box .box-p-3 {
            padding: 0;
        }

        .white-box .box-p-4 {
            padding: 0;
        }

        .white-box .box-p-5 {
            padding: 0;
        }

        .white-box .box-p-6 {
            padding: 0;
        }

    .img-tire {
        display: none;
    }

    .m-road .row-box .row-box-picture-right {
        position: absolute;
        width: 55%;
        top: -60px;
        right: -70px;
    }

    .m-road .row-box .vector-arrow {
        position: absolute;
        right: 180px;
        top: 265px;
        width: 7%;
        height: auto;
    }

    .m-road .row-box .row-box-picture-left {
        position: absolute;
        width: 30%;
        top: 210px;
        left: -25px;
    }

    .m-road .row-box .first-white-box {
        margin: 0;
        text-align: center;
        margin-top: 35px;
    }

        .m-road .row-box .first-white-box .red-number {
            font-size: 25px;
        }

    .m-road .row-box .second-white-box {
        border: 3px solid #dedede;
        border-radius: 15px;
        padding: 15px 30px;
    }
}



@media only screen and (max-device-width: 375px) and (-webkit-min-device-pixel-ratio: 2) {
    .landing_payment .m_payment_banner {
        width: 130%;
    }
}

@media only screen and (max-device-width: 350px) and (-webkit-min-device-pixel-ratio: 2) {
    .m-road .row-box .row-box-picture-left {
        top: 300px;
    }

    .m-road .row-box .vector-arrow {
        top: 300px;
    }
}

