/* Minification failed. Returning unminified contents.
(309,44): run-time error CSS1046: Expect comma, found '0'
(309,48): run-time error CSS1046: Expect comma, found '/'
(310,41): run-time error CSS1046: Expect comma, found '0'
(310,45): run-time error CSS1046: Expect comma, found '/'
(311,36): run-time error CSS1046: Expect comma, found '0'
(311,40): run-time error CSS1046: Expect comma, found '/'
(701,15): run-time error CSS1030: Expected identifier, found '.'
(701,28): run-time error CSS1031: Expected selector, found ')'
(701,28): run-time error CSS1025: Expected comma or open brace, found ')'
(798,36): run-time error CSS1046: Expect comma, found '0'
(798,40): run-time error CSS1046: Expect comma, found '/'
 */
.btn-solid {
    background-color: #37424A;
    color: #fff;
}

    .btn-solid:not([disabled]):hover,
    .btn-solid:not([disabled]):focus {
        text-decoration: none !important;
        background-color: #F0F0F0;
        color: #000;
    }

.btn-ghost {
    background-color: #fff;
    border: 1px solid #3074FF;
    color: #3074FF;
}

    .btn-ghost:not([disabled]):hover,
    .btn-ghost:not([disabled]):focus {
        text-decoration: none !important;
        background-color: #3074FF;
        color: #fff;
    }

.btn-success {
    background-color: #419641;
    border: 1px solid #419641;
    color: #fff;
}

    .btn-success:not([disabled]):hover,
    .btn-success:not([disabled]):focus {
        text-decoration: none !important;
        background-color: #419641;
        color: #fff;
    }

.btn-solid,
.btn-ghost,
.btn-success {
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    padding: 15px 25px;
    border: 0;
    letter-spacing: 1px;
}

    .btn-solid[disabled],
    .btn-ghost[disabled],
    .btn-success[disabled] {
        opacity: .6;
    }

/*#region CORPORATE-BUTTON*/

.corporate-button {
    display: flex;
    align-content: center;
    justify-content: center;
    padding: 10px;
    background-color: white;
    text-align: center;
    color: inherit;
    border: none;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    border-radius: 9px;
}

    .corporate-button.active,
    input:checked + .corporate-button {
        box-shadow: 0 0px 6px 3px #4372f6;
    }

    .corporate-button:hover,
    .corporate-button:focus {
        cursor: pointer;
        text-decoration: none;
        color: dimgray;
        fill: dimgray;
    }

    .corporate-button:active {
        transform: scale(0.98);
    }

/*#endregion CORPORATE-BUTTON*/

/*#region CORPORATE-LINK*/

.corporate-link {
    color: inherit;
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    text-decoration: none !important;
}

    .corporate-link:not(.active):hover,
    .corporate-link:not(.active):focus-within,
    .corporate-link:not(.active):hover > svg,
    .corporate-link:not(.active):focus-within > svg {
        color: #1e49a2;
        fill: #1e49a2;
    }

    .corporate-link:not(.active):active {
        transform: scale(0.98);
    }

/*#endregion CORPORATE-LINK*/



.btn-link {
    color: #878E94;
    font-weight: 700;
    text-decoration: none;
    padding: 0;
    border: 0;
}

    .btn-link:hover, .btn-link:active, .btn-link:focus, .btn-link:visited {
        text-decoration: none;
        outline: none;
    }

    .btn-link:hover {
        text-decoration: underline;
    }

    .btn-link:active {
        font-weight: 800;
    }

    .btn-link.icon-link .fa {
        margin-left: 3px;
        font-size: 12px;
    }

    .btn-link,
    .btn-link.active,
    .btn-link:active,
    .btn-link[disabled] {
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none
    }

        .btn-link,
        .btn-link:active,
        .btn-link:focus,
        .btn-link:hover {
            border-color: transparent
        }

            .btn-link[disabled]:focus,
            .btn-link[disabled]:hover {
                color: #777;
                text-decoration: none
            }

            .btn-link img {
                vertical-align: sub;
            }

/* Btn Loading */
.btn-solid .loading, .btn-ghost .loading {
    display: none;
}

.btn-loading {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

    .btn-loading .loading {
        display: block;
        margin-left: 10px;
        -webkit-animation: fa-spin 1s steps(8) infinite;
        animation: fa-spin 1s steps(8) infinite;
    }

        .btn-loading .loading:before {
            content: "\f110";
            font-family: FontAwesome, sans-serif;
        }
/* /Btn Loading */


/* 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;
}

.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 */

.v-select {
    position: relative;
}

.t-select > div {
    position: relative;
}

.t-select.error .vs__dropdown-toggle {
    border-color: #fe5050;
}

.t-select.error label {
    color: #fe5050;
}

.t-select.error .error-message {
    margin-top: 5px;
    font-size: 11px;
    color: #fe5050;
}


/*#region LABEL*/
.v-select + label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 14px;
    padding: 0 6px;
    margin: 0px;
    cursor: text;
    color: #6C7379;
    font-size: 16px;
    letter-spacing: .3px;
    font-weight: 400;
    background: #fff;
    box-shadow: white 0 0 4px 2px;
    transition: all .2s;
}

.v-select:has(.vs__selected) + label,
.v-select.vs--open + label {
    top: -8px;
    font-size: 13px;
    transform: none;
}

.v-select.vs--open + label {
    color: #3074ff;
}

/*#endregion LABEL*/

/*#region DROPDOWN-SEARCH*/

.vs__dropdown-toggle {
    position: relative;
    display: flex;
    padding: 12px 20px;
    border-radius: 5px;
    border: 1px solid #a5a5a5;
    background-color: #fff;
}

.vs__actions {
    position: absolute;
    width: 45px;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.vs__clear {
    position: absolute;
    left: -10px;
    background: none;
    border: none;
    fill: #6c7379;
}

.vs__open-indicator {
    fill: #a5a5a5;
    transition: transform 0.1s linear 0s;
}

.vs__actions .fa-spinner {
    display: none;
}


.vs__selected-options {
    display: flex;
    flex: 1 1 100%;
    align-items: center;
    gap: 4px;
    overflow: hidden;
}

.vs__selected {
    font-size: 17px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

input.vs__search {
    flex-grow: 1;
    width: 0;
    outline: none;
    border: none;
    color: #3B4146;
    font-size: 17px;
    text-transform: none;
    font-weight: bold;
    transition: all .1s;
    letter-spacing: 1px;
    line-height: 24px; /*yükseklik ayarı için değiştir.*/
    background: none;
}
/*#endregion DROPDOWN-SEARCH*/

/*#region LIST*/

.vs__dropdown-menu {
    position: absolute;
    width: 100%;
    max-height: 150px;
    overflow: auto;
    top: 100%;
    z-index: 1;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 4px 30px rgb(0 0 0 / 10%);
}

.vs__dropdown-option {
    padding: 5px 10px;
    margin: 4px 0;
    color: #71818D;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
}

.vs__dropdown-option--highlight {
    background-color: rgba(48, 116, 255, 0.1);
}

.vs__dropdown-option em {
    display: none;
    margin-left: 5px;
    opacity: 0.8
}

.vs__dropdown-option--selected {
    color: black;
}

    .vs__dropdown-option--selected:not(:hover) em:first-of-type {
        display: inline-block;
        color: #3074ff;
    }

    .vs__dropdown-option--selected:hover em:last-of-type {
        display: inline-block;
        color: red;
    }

/*#endregion LIST*/

/*#region OPEN*/

.v-select.vs--open .vs__dropdown-toggle {
    border-color: #3074ff;
}

    .v-select.vs--open .vs__dropdown-toggle .vs__actions {
        background-color: #3074ff;
    }

        .v-select.vs--open .vs__dropdown-toggle .vs__actions .vs__open-indicator {
            fill: white;
            transform: rotateZ(180deg);
        }

    .v-select.vs--open .vs__dropdown-toggle .vs__selected-options {
        flex-wrap: wrap;
    }

        .v-select.vs--open .vs__dropdown-toggle .vs__selected-options .vs__selected {
            display: inline;
        }

.v-select:not(.vs--open) .vs__dropdown-toggle .vs__actions svg {
    filter: drop-shadow(0.5px 0px 0px white) drop-shadow(0px -0.5px 0px white) drop-shadow(-0.5px 0px 0px white) drop-shadow(0px 0.5px 0px white);
}

/*#endregion OPEN*/

/*#region LOADING*/

.v-select.vs--loading .vs__dropdown-toggle .vs__actions .vs__open-indicator {
    display: none;
}

.v-select.vs--loading .vs__dropdown-toggle .vs__actions .fa-spinner {
    font-size: 24px;
    color: #3074ff;
    opacity: 0.8;
    display: block;
}

/*#endregion LOADING*/

/*#region MULTIPLE*/

.v-select.vs--multiple .vs__dropdown-toggle .vs__selected-options .vs__selected {
    position: relative;
    padding: 1px 4px;
    border: solid 1px rgba(128, 128, 128, 0.2);
    background-color: rgba(128, 128, 128, 0.1);
    border-radius: 5px;
    font-size: 15px;
    flex-shrink: 0;
}

    .v-select.vs--multiple .vs__dropdown-toggle .vs__selected-options .vs__selected:hover,
    .v-select.vs--multiple .vs__dropdown-toggle .vs__selected-options .vs__selected:focus-within {
        border-color: rgba(255, 0, 0, 0.2);
        background-color: rgba(255, 0, 0, 0.1);
    }

    .v-select.vs--multiple .vs__dropdown-toggle .vs__selected-options .vs__selected .vs__deselect {
        position: absolute;
        opacity: 0;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

        .v-select.vs--multiple .vs__dropdown-toggle .vs__selected-options .vs__selected .vs__deselect * {
            display: none;
        }

/*#endregion MULTIPLE*/

@media (max-width: 767px) {
    .vs__dropdown-toggle {
        padding: 10px 15px;
    }

    .vs__selected {
        font-size: 14px;
        line-height: 27px;
    }
}


/*#region FILE-INPUT*/

.file {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-size: 16px;
    color: #6C7379;
    font-weight: 600;
    transition: all .2s;
    letter-spacing: .3px;
}

    .file input {
        position: absolute;
        z-index: -1;
        appearance: none;
        margin: 0;
        opacity: 0;
    }


    .file .file-custom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 6px 5px 20px;
        user-select: none;
        background-color: white;
        border: solid 1px #a5a5a5;
        border-radius: 5px;
        font-size: 16px;
    }

        .file .file-custom::before {
            content: attr(data-label);
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .file .file-custom.no-file::before {
            color: #6C7379;
            font-weight: 400;
        }

        .file .file-custom::after {
            display: block;
            background-color: #37424A;
            border-radius: 5px;
            padding: 8px 24px;
            content: "Dosya Seç";
            color: white;
            letter-spacing: 1px;
            font-size: 17px;
            font-weight: 700;
            white-space: nowrap;
        }

    .file.error .file-custom {
        border-color: #fe5050
    }

        .file.error .file-custom::before {
            color: #fe5050
        }

    .file .error-message {
        display: none;
        margin-top: 5px;
        color: #fe5050;
        font-size: 11px;
        letter-spacing: .5px;
        font-weight: 400;
    }

    .file.error .error-message {
        display: inline;
    }


/*#endregion FILE-INPUT*/

.m-cancellation-banner {
    display: none;
}

.w-cancellation-banner {
    display: flex;
}

    .w-cancellation-banner .desc {
        padding-left: 60px;
        padding-right: 65px;
        background-color: #f0f0f0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .w-cancellation-banner .desc h1 {
            color: #f11300;
            font-weight: bold;
            margin: 0;
        }

        .w-cancellation-banner .desc p {
            color: #3d484e;
            margin-top: 10px;
            font-size: 14px;
        }

    .w-cancellation-banner .banner {
        max-width: 630px;
    }

.form-area {
    max-width: 485px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    margin-left: 30px;
    padding-right: 35px;
}

    .form-area .checkbox-btns {
        align-self: flex-start;
        margin-top: 15px; 
    }

        .form-area .checkbox-btns > span {
            font-size: 12px;
            color: #8b8c8c;
        }

    .form-area .chkbox {
        color: #8b8c8c;
        margin-bottom: 10px;
    }

    .form-area textarea {
        height: 140px;
    }

    .form-area .form-control {
        border-color: #afafaf;
    }

    .form-area .info-msg {
        font-size: 10px;
        color: #8b8c8c;
        margin-top: 5px;
    }

    .form-area .btn {
        margin-right: auto;
        margin-top: 25px;
    }

    .form-area .save {
        position: relative;
        width: 142px;
        height: 46px;
        padding: 10px;
        text-align: center;
        display: block;
        border-radius: 23px;
        font-size: 15px;
        line-height: 1.87;
        letter-spacing: 0.15px;
        margin-top: 30px;
        cursor: pointer;
        transition: background-color 400ms;
    }

        .form-area .save:hover {
            background-color: #37424A;
        }

    .form-area .btn-addendum {
        background-color: #37424A;
        color: #fff;
        font-weight:bold;
    }

    .form-area #textcode {
        margin: 0 5px;
    }

    .form-area .plate-desc {
        margin-top: 5px;
        text-align: justify;
        color: #8b8c8c;
        font-size: 12px;
    }

    .form-area p.title {
        font-size: 16px;
        font-weight: bold;
        color: #8b8c8c;
        margin-top: 25px;
        margin-bottom: 5px;
    }

        .form-area p.title:first-child {
            margin-top: 0;
        }

    .form-area .checkbox-btns .btns {
        display: flex;
        justify-content: space-between;
        margin-top: 12px;
    }

    .textbox{
        width:100%;
    }

input[type=checkbox], input[type=radio] {
    border: 1px solid #ccc;
    box-shadow: inset 0 0 3px #ccc;
}

    input[type=checkbox]:checked, input[type=radio]:checked {
        background-color: #129be3;
        border-color: #129be3;
    }

    input[type=checkbox]:after, input[type=radio]:after {
        border: solid white;
        border-width: 0 2px 2px 0;
    }

    input[type=checkbox][disabled] {
        opacity: 0.5;
        filter: alpha(opacity=10); /* For IE8 and earlier */
        cursor: not-allowed;
    }

.form-area .other-inputs {
    padding-top: 25px;
}

.form-area .license {
    display: flex;
}

    .form-area .license #licensetext {
        width: 100px;
    }

    .form-area .license #licensecode {
        width: 150px;
    }

.form-area .license-file {
    position:relative;
    margin-top: 30px;
}

    .form-area .license-file label {
        cursor:pointer;
        height: 42px;
    }

        .form-area .license-file label span {
            width: 225px;
            min-width: 225px;
            height: 42px;
            left: 225px;
            padding: 10px 20px 0 20px;
            border-radius: 23px;
            border: solid 1px #afafaf;
            font-size: 12px;
            font-weight: 500;
            line-height: 1.75;
            letter-spacing: -0.08px;
            text-align: left;
            color: #8b8c8c;
            position: absolute;
        }

            .form-area .license-file label span:before {
                content: "RUHSAT FOTOĞRAFI YÜKLE";
                padding: 10px 30px;
                border-radius: 50px;
                line-height: 1.42857143;
                background-color: #37424A;
                font-size: 13px; 
                font-weight: bold;
                color: #fff;
                position: absolute;
                left: -225px;
                bottom: 0px;
                vertical-align: middle;
            }

.form-area .ruhsat-info-container {
    display: flex;
    margin: 15px 0;
}

    .form-area .ruhsat-info-container .ruhsat-info-text {
        align-self: end;
        font-size: 12px;
        max-width: 300px;
        position: relative;
        line-height: 16px;
        margin-left: 15px;
        margin-bottom: -8px;
    }

    .form-area .ruhsat-info-container .ruhsat-info-img {
        position: relative;
    }

        .form-area .ruhsat-info-container .ruhsat-info-img:after {
            font-family: "FontAwesome";
            content: '\f0da';
            color: #ccc;
            position: absolute;
            right: -10px;
            bottom: -2px;
            font-size: 18px;
        }


.form-area .other-inputs .plate .plate-codes {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .form-area .other-inputs .plate .plate-codes .select-btn {
        position: relative;
        width: 100%;
    }

        .form-area .other-inputs .plate .plate-codes .select-btn span {
            color: #f51300;
            position: absolute;
            top: 15px;
            right: 15px;
        }

    .form-area .other-inputs .plate .plate-codes select {
        cursor: pointer;
    }

.form-area .other-inputs .notary {
    height: 50px;
    margin-top: 50px;
}

.form-area .other-inputs .petition {
    height: 50px;
    margin-top: 30px;
}

.form-area .other-inputs input[type="file"] {
    display: none;
}

.form-area .other-inputs .notary label span, .form-area .other-inputs .petition label span {
    width: 250px;
    min-width: 250px;
    height: 50px;
    padding: 15px 26px 0 26px;
    border-radius: 23px;
    border: solid 1px #afafaf;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: -0.08px;
    text-align: left;
    color: #8b8c8c;
    position: absolute;
}

    .form-area .other-inputs .notary label span:after, .form-area .other-inputs .petition label span:after {
        content: "YÜKLE";
        width: 142px;
        height: 50px;
        padding: 11px 49px 17px;
        border-radius: 23px;
        background-color: #24a7ea;
        font-size: 16px;
        font-weight: 800;
        line-height: 1.87;
        letter-spacing: 0.15px;
        text-align: center;
        color: #fff;
        position: absolute;
        right: -150px;
        bottom: 0px;
        vertical-align: middle;
    }

.form-area .other-inputs p a {
    color: #24a7ea;
    cursor: pointer;
}
.fileSuccess {
    color: green !important;
    margin-top: 0 !important;
    line-height: initial;
}
.fileFailed{
    margin-top:0 !important;
    line-height:initial;
    color:red !important;
}
.fileUploadSuccess {
    color: green !important;
    border: 3px solid green !important;
}
.errorSuccess{
    color:red !important;
    border:3px solid red !important;
}

.isDisabled {
    pointer-events: none;
    opacity: 0.5;
}

.complaint .twitter-typeahead {
    width: 100%;
}

@media only screen and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) {
    #addendum-change.container {
        padding-left: 0px;
        padding-right: 0px;
    }

    .w-cancellation-banner {
        display: none;
    }

    .m-cancellation-banner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .m-cancellation-banner img {
            width: 100%;
            height:auto;
        }

        .m-cancellation-banner .desc {
            margin-left: 25px;
            margin-right: 25px;
            text-align: center;
        }

            .m-cancellation-banner .desc h1 {
                font-size: 24px;
                font-weight: bold;
                line-height: 1.13;
                color: #f11300;
            }

            .m-cancellation-banner .desc p {
                font-size: 14px;
                font-weight: 500;
                line-height: 1.29;
                letter-spacing: -0.21px;
                color: #3d484e;
            }

        .m-cancellation-banner .separate {
            width: 53px;
            height: 3px;
            object-fit: contain;
            background-color: #f51305;
            margin-top: 20px;
        }

    .form-area {
        width: auto;
        margin: 20px 15px 0 15px;
        padding: 20px;
        border-radius: 25px;
        border: solid 1px #afafaf;
    }

        .form-area .checkbox-btns .btns {
            margin-left: 0px;
        }

        .form-area .info-msg {
            font-size: 8px;
        }

        .form-area .other-inputs .plate .plate-codes select {
            min-width:95px;
            height: 40px;
            font-size: 14px;
            padding: 10px;
        }

        .form-area .other-inputs .plate .plate-codes input {
            height: 40px;
            font-size: 14px;
            padding: 10px;
        }

        .form-area .other-inputs .notary label span, .form-area .other-inputs .petition label span {
            width: 165px;
            min-width: 165px;
            height: 40px;
            padding: 8px;
            font-size: 10px;
            font-weight: 500;
            line-height: 1.75;
            letter-spacing: -0.08px;
            color: #8b8c8c;
            position: absolute;
        }

            .form-area .other-inputs .notary label span:after, .form-area .other-inputs .petition label span:after {
                content: "YÜKLE";
                width: 75px;
                height: 40px;
                padding: 8px;
                border-radius: 23px;
                background-color: #24a7ea;
                font-size: 14px;
                font-weight: 800;
                line-height: 1.87;
                letter-spacing: 0.15px;
                text-align: center;
                color: #fff;
                position: absolute;
                right: -80px;
                bottom: 0px;
                vertical-align: middle;
            }

        .form-area .ruhsat-info-container {
            flex-direction: column;
        }

            .form-area .ruhsat-info-container .ruhsat-info-text {
                align-self: start;
                margin-bottom: 0;
                margin-top: 10px;
                margin-left: 0;
            }

            .form-area .ruhsat-info-container .ruhsat-info-img:after {
                content: '\f0d7';
                left: 177px;
                bottom: -18px;
                top: auto;
            }

        .form-area .license-file label{
            height: 75px;
        }
            .form-area .license-file label span {
                left: 0;
                top: 42px;
            }
                .form-area .license-file label span:before {
                    top: -42px;
                    height: 38px;
                    left:0;
                }
}

