

/* Start:/local/css/customs-calculator.css?17582256787164*/
.customs-calc {
    padding: 40px 180px !important;;
    background-color: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.customs-calc_title {
    margin-bottom: 32px;
    font-family: "Oswald", Arial, sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
}

.customs-calc_descr {
    margin-bottom: 32px;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #666666;
}

.customs-calc .form-fields {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid #DDDDDD;
}

.customs-calc .form-fields .form-col {
    min-width: 450px;
}

.customs-calc .form .form-group {
    margin: 0;
}

.customs-calc .form-radiobox__label {
    color: #999999;
}

.customs-calc .form-radiobox__input:checked+.form-radiobox__label {
    color: #666666;
}

.customs-calc .form-group__items {
    display: flex;
    flex-direction: row;
}

.customs-calc .form-group__items .form-radiobox:first-child {
    margin-right: 24px;
}

.customs-calc .form-output {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.form-output__wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.customs-calc .form-output__title {
    margin-right: 40px;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #666666;
}

.customs-calc .form-output__val {
    font-weight: 700;
    font-style: Bold;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #666666;
    text-transform: uppercase;
}


.customs-calc .form-group.form-group__individual {
    margin-bottom: 35.2px;
}

.customs-calc .form-group.form-group__price {
    margin-bottom: 32px;
}

.customs-calc .form-group.form-group__engine {
    margin-bottom: 15px;
}

.customs-calc .form-group.form-group__volume {
    margin-bottom: 32px;
}

.customs-calc .form-res .error {
    margin-bottom: 15px;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #F25353;
}

.customs-calc .form-group.error .form-control {
    border-color: #F25353;
}

.customs-calc .form-control {
    padding: 12px 24px;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #666666;
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: none;
}

.customs-calc .form-group.form-group__age select,
.customs-calc .form-group.form-group__engine select {
    background-image: url('/local/images/select-arrow.png');
    background-repeat: no-repeat;
    background-size: 8px 6px;
    background-position: calc(100% - 16px);
}

.customs-calc .form-group.form-group__age select,
.customs-calc .form-group.form-group__age .custom-dropdown,
.customs-calc .form-group.form-group__engine select,
.customs-calc .form-group.form-group__engine .custom-dropdown {
    position: relative;
}

.customs-calc .form-group.form-group__age .custom-dropdown::after,
.customs-calc .form-group.form-group__engine .custom-dropdown::after {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    right: 20px;
    width: 8px;
    height: 6px;
    background-image: url('/local/images/select-arrow.png');
    background-repeat: no-repeat;
}

.customs-calc .form-group.form-group__age select:focus,
.customs-calc .form-group.form-group__engine select:focus {
    background-image: url('/local/images/select-arrow-open.png');
}

.customs-calc .form-group.form-group__age .custom-dropdown.open::after,
.customs-calc .form-group.form-group__engine .custom-dropdown.open::after  {
    transform: rotate(180deg);
}

@media screen and (max-width: 1400px) {
    .customs-calc {
        padding: 32px !important;
    }
}

@media screen and (max-width: 1120px) {
    .customs-calc {
         padding: 32px 12px !important;
    }
}

@media screen and (max-width: 1024px) {
    .customs-calc_title {
        margin-bottom: 12px;
        font-size: 20px;
    }

    .customs-calc_descr {
        margin-bottom: 24px;
        font-size: 14px;
    }

    .customs-calc .form-fields {
        flex-direction: column;
    }

    .customs-calc .form-group.form-group__individual,
    .customs-calc .form-group.form-group__price,
    .customs-calc .form-group.form-group__age,
    .customs-calc .form-group.form-group__engine,
    .customs-calc .form-group.form-group__volume {
        margin-bottom: 16px;
    }

    .customs-calc .form-fields {
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .customs-calc .form-fields .form-col {
        min-width: auto;
    }
}

@media screen and (max-width: 768px) {
    .customs-calc .form-output {
        flex-direction: column-reverse;
    }

    .customs-calc .form-output button {
        margin-bottom: 24px;
    }

    .form-output__wrapper {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .customs-calc .form-output__title {
        margin: 0 0 12px 0;
    }

    .customs-calc .form-control {
        padding: 12px 24px 12px 12px;
    }
}

@media screen and (max-width: 768px) {
    .customs-calc .form-group__items {
        flex-direction: column;
    }

    .customs-calc .form-group__items .form-radiobox:first-child {
        margin-right: 0;
    }
}


.custom-dropdown {
    position: relative;
    width: 100%;
}

.custom-dropdown .dropdown-toggle {
    padding: 10px;
    border: 1px solid #e5e5e5;
    background: #f8f8f8;
    cursor: pointer;
    border-radius: 3px;
    font-size: 16px;
    line-height: 28px;
}

.custom-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    background: #ffffff;
    list-style: none;
    padding: 8px 24px;
    margin: 0;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.custom-dropdown .dropdown-menu li {
    padding: 8px 0;
    color: #666666 !important;
    cursor: pointer;
}

.custom-dropdown .dropdown-menu li:hover {
    color: #666666 !important;
    font-weight: bold;
}

.custom-dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-value {
    display: none;
}

@media (min-width: 769px) {
    .native-select {
        display: none !important;
    }
    .custom-dropdown {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .native-select {
        display: block !important;
    }
    .custom-dropdown {
        display: none !important;
    }
}

/* End */
/* /local/css/customs-calculator.css?17582256787164 */
