input,
button,
textarea {
    outline: none;
    box-shadow: none;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}
label {
    margin-left: 12px;
    margin-bottom: 9px;
}
label input,
label textarea {
    margin-top:9px;
}

input[type="text"],
input[type="date"],
input[type="tel"],
textarea {
    background-color: #ffffff;
    padding: 6px 12px 6px 12px;
    border-radius: 8px;
    border:1px solid rgba(0,0,0,0.3);
    font-size: 1rem;
    line-height: 140%;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 28px;
}

.btn {
    display: inline-block;
    border:0;
    border-radius: 8px;
    box-sizing: border-box;
    text-align: center;
    -webkit-transition: 0.15s ease-in-out;
    -moz-transition: 0.15s ease-in-out;
    transition: 0.15s ease-in-out;
    text-decoration: none;
    cursor: pointer;
}

.btn:hover,
.btn:focus {
    text-decoration: none;
    border: 0 !important;
}

.btn-full-width {
    width: 100%;
}

.btn-small {
    font-size: 1rem;
    padding: 7px 26px;
}

.btn-middle {
    font-size: 1rem;
    font-weight: 700;
    padding: 10px 12px;
}

.btn-white,
.btn-white:visited {
    color: #000000 !important;
    background-color: #ffffff;
}

.btn-white:hover,
.btn-white:focus {
    color: #ffffff !important;
    background-color: #FF3333;
}

.btn-white-border {
    border:1px solid rgba(0,0,0,0.7);
}

.btn-red,
.btn-red:visited {
    color: #ffffff !important;
    background-color: #FF3333;
}

.btn-red:hover,
.btn-red:focus {
    color: #ffffff !important;
    box-shadow: 0 0 0 1px #000000;
}

.btn-red-border {
    border:1px solid #ffffff(0,0,0,0.7);
}

.btn-feedback-close {
    position: absolute;
    cursor: pointer;
    font-size: 2rem;
    right: 30px;
    top: 30px;
    line-height: 100%;
}

.btn-bordered,
.btn-bordered:focus,
.btn-bordered:visited {
    position: relative;
    padding: 10px 12px ;
    border-radius: 8px;
    border: 1px solid #000000 !important;
    background-color: transparent;
    text-align: left;
    width: 100%;
}

.btn-bordered:hover {
    border: 1px solid #FF3333 !important;
    background-color: transparent !important;
}

.btn-load-more-cars::after {
    position: absolute;
    display: block;
    content: "";
    width: 16px;
    height: 8px;
    right: 12px;
    top: 18px;
    background: url(../images/acor-arrow.svg) 0 0 no-repeat;
    background-size: contain;
}
.btn-show-more-cars__title {
    margin-top:8px;
}
.btn-show-more-cars {
    text-align: center;
}
.btn-show-more-cars a,
.btn-show-more-cars a:visited,
.btn-show-more-cars a:hover {
    color: #000000;
    text-decoration: none;
}

.acor-container {
}
.acor-container .acor-body {
    margin: 0 auto;
    height: 0;
    line-height: 140%;
    background-color: #EFF1F1;
    border-radius: 0 0 8px 8px;
    box-sizing: border-box;
    overflow: hidden;
}
.acor-container .acor-body p {
    font-size: 1.125rem;
    margin: 0 24px 14px 24px;
}
.acor-container label {
    position: relative;
    cursor: pointer;
    display: block;
    padding: 7px 24px;
    margin: 0;
    box-sizing: border-box;
    border:1px solid #000000;
    border-radius: 8px;
    width: 100%;
    z-index: 100;
}

.acor-container label h4 {
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
    padding-right: 30px;
}

.acor-container label:hover {
}
.acor-container input {
    display: none;
}
.acor-container label:after {
    position: absolute;
    display: block;
    content: "";
    width: 16px;
    height: 8px;
    right: 25px;
    top:18px;
    background: url('../images/acor-arrow.svg') 0 0 no-repeat;
    background-size: contain;
}
.acor-container input:checked + label {
    background-color: #EFF1F1;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
}

.acor-container input:checked + label h4 {
    font-weight: 700;
    margin-top: 14px;
    margin-bottom: 0;
}

.acor-container input:checked + label:after {
    transition: transform 0.3s ease-in-out;
    transform: rotate(180deg);
}
.acor-container input:checked + label + .acor-body {
    height: auto;
    border:1px solid #000000;
    border-top:0;
}