#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    background-color: #fff;
    z-index: 99999999999 !important;
}

[data-loader="circle-side"] {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    -webkit-animation: circle infinite 0.95s linear;
    -moz-animation: circle infinite 0.95s linear;
    -o-animation: circle infinite 0.95s linear;
    animation: circle infinite 0.95s linear;
    border: 2px solid #1c5dab;
    border-top-color: rgba(0, 0, 0, 0.2);
    border-right-color: rgba(0, 0, 0, 0.2);
    border-bottom-color: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    border-radius: 100%;
}

#loader_form {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    background-color: #fafafa;
    background-color: rgba(255, 255, 255, 0.6);
    z-index: 99999999999 !important;
    display: none;
}

[data-loader="circle-side-2"] {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    -webkit-animation: circle infinite 0.95s linear;
    -moz-animation: circle infinite 0.95s linear;
    -o-animation: circle infinite 0.95s linear;
    animation: circle infinite 0.95s linear;
    border: 2px solid #1c5dab;
    border-top-color: rgba(0, 0, 0, 0.2);
    border-right-color: rgba(0, 0, 0, 0.2);
    border-bottom-color: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    border-radius: 100%;
}

@-webkit-keyframes circle {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes circle {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes circle {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes circle {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.preference .main_title {
    text-align: center;
}

.preference .main_title h2 {
    font-size: 36px;
    font-size: 2.25rem;
    text-transform: uppercase;
    margin-bottom: 0;
}

.preference .main_title p {
    font-size: 21px;
    font-size: 1.3125rem;
    color: #777;
}

.preference .question_title {
    text-align: center;
    margin-bottom: 25px;
}

.preference .question_title h3 {
    font-size: 36px;
    font-size: 2.25rem;
    margin-top: 45px;
    color: #333;
}

.preference .question_title p {
    font-size: 15px;
    font-size: 0.9375rem;
    color: #777;
    margin-bottom: 0;
}

.preference a.animated_link {
    position: relative;
    text-decoration: none;
}

.preference a.animated_link:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    opacity: 1;
    left: 0;
    background-color: #0073e5;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.preference a.animated_link:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.preference a.animated_link.active {
    position: relative;
    text-decoration: none;
    color: #0073e5;
}

.preference a.animated_link.active:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    opacity: 1;
    left: 0;
    background-color: #0073e5;
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.preference a {
    color: #409fff;
    text-decoration: none;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    outline: none;
}

.preference a:hover,
.preference a:focus {
    color: #0073e5;
    text-decoration: none;
    outline: none;
}

.preference a.btn_1,
.btn_1 {
    border: none;
    color: #fff;
    background: #409fff;
    outline: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    padding: 7px 20px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    line-height: 1;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}

.preference a.btn_1:hover,
.btn_1:hover {
    background: #0073e5;
    color: #fff;
}

.preference .item label {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    display: block;
    background-color: #fff;
    padding: 45px;
    text-align: center;
    margin-bottom: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    -ms-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    position: relative;
    border: 1px solid #d9e1e6;
    font-size: 15px;
    font-size: 0.9375rem;
    color: #777;
    cursor: pointer;
}

@media (max-width: 991px) {
    .preference .item label {
        padding: 30px;
    }
}

.preference .item label strong {
    text-transform: uppercase;
    display: block;
    font-size: 18px;
    font-size: 1.125rem;
    color: #333;
}

.preference .item label:hover {
    -webkit-box-shadow: 0 2px 40px #e0e5f0;
    -moz-box-shadow: 0 2px 40px #e0e5f0;
    box-shadow: 0 2px 40px #e0e5f0;
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
}

.preference .item label img {
    display: block;
    margin: 0 auto 15px;
}

@media (max-width: 767px) {
    .preference .item label img {
        width: 80px;
        height: auto;
    }
}

.preference .item label span {
    border: 4px solid #d9e1e6;
    display: block;
    margin: 0 auto 15px;
    width: 130px;
    height: 130px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    padding: 4px;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.preference .item label figure {
    position: relative;
    width: 114px;
    height: 114px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    margin: 0;
    overflow: hidden;
}

.preference .item label figure img {
    width: 130px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}

.preference .item input[type="checkbox"]:not(old),
.preference .item input[type="radio"]:not(old) {
    visibility: hidden;
}

.preference .item input[type="checkbox"]:not(old):checked + label,
.preference .item input[type="radio"]:not(old):checked + label,
.preference .item input[type="checkbox"]:not(old):checked + span + label,
.preference .item input[type="radio"]:not(old):checked + span + label {
    display: block;
    border: 1px solid #acd373;
    -webkit-box-shadow: 0 2px 40px #e0e5f0;
    -moz-box-shadow: 0 2px 40px #e0e5f0;
    box-shadow: 0 2px 40px #e0e5f0;
}

.preference .item input[type="checkbox"]:not(old):checked + label:before,
.preference .item input[type="radio"]:not(old):checked + label:before,
.preference .item input[type="checkbox"]:not(old):checked + span + label:before,
.preference .item input[type="radio"]:not(old):checked + span + label:before {
    font-family: "FontAwesome";
    content: "\f00c";
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 24px;
    font-size: 1.5rem;
    color: #acd373;
}

.preference .item input[type="checkbox"]:not(old):checked + label span,
.preference .item input[type="radio"]:not(old):checked + label span,
.preference .item input[type="checkbox"]:not(old):checked + span + label span,
.preference .item input[type="radio"]:not(old):checked + span + label span {
    border: 4px solid #acd373;
}

.preference .item input[type="checkbox"]:not(old):checked + label figure img,
.preference .item input[type="radio"]:not(old):checked + label figure img,
.preference .item input[type="checkbox"]:not(old):checked + span + label figure img,
.preference .item input[type="radio"]:not(old):checked + span + label figure img {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    -moz-transform: translate(-50%, -50%) scale(1.2);
    -ms-transform: translate(-50%, -50%) scale(1.2);
    -o-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
}

.preference .checkbox_questions {
    position: relative;
}

.preference .checkbox_questions span.error {
    left: -5px;
    top: -35px;
}

.preference .checkbox_questions .icheckbox_square-grey {
    margin-right: 10px;
}

.preference .box_general {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    display: block;
    background-color: #fff;
    padding: 45px;
    border: 1px solid #d9e1e6;
}

@media (max-width: 991px) {
    .preference .box_general {
        padding: 30px;
    }
}

.preference input#website {
    display: none;
}

#wizard_container {
    position: relative;
    min-height: 450px;
}

.preference button.backward,
.preference button.forward,
.preference button.submit {
    border: none;
    color: #fff;
    padding: 7px 20px;
    text-decoration: none;
    transition: background 0.5s ease;
    -moz-transition: background 0.5s ease;
    -webkit-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
    display: inline-block;
    cursor: pointer;
    font-weight: 400;
    outline: none;
    min-width: 110px;
    text-align: center;
    background: #409fff;
    position: relative;
    font-size: 15px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    line-height: 1;
    padding: 10px 30px 10px 30px;
}

.preference button.backward {
    color: #ffff;
    background: #12743A;
    padding: 10px 20px 10px 30px;
}

.preference button.forward,
.preference button.submit {
    padding: 10px 30px 10px 20px;
}

.preference button[disabled] {
    display: none;
}

/*.preference button.backward:before {
    content: "\ea93";
    font-family: "icofont" !important;
    position: absolute;
    top: 8px;
    left: 12px;
    font-size: 18px;
}

.preference button.forward:before {
    content: "\ea94";
    font-family: "icofont" !important;
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 18px;
}

.preference button.submit:before {
    content: "\4e";
    font-family: "ElegantIcons";
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 18px;
}*/

.backward:hover,
.forward:hover {
    background: #0073e5;
    color: #fff;
}

.preference #middle-wizard {
    padding: 30px 0 15px 0;
}

.preference #bottom-wizard {
    padding: 30px 0 45px 0;
    text-align: center;
}

.preference .ui-widget-content a {
    color: #222222;
}

.preference .ui-widget-header {
    background: #6c3;
}

.preference .ui-widget-header a {
    color: #222222;
}

.preference .ui-progressbar {
    height: 3px;
    width: 100%;
    position: relative;
    top: -1px;
    z-index: 2;
}

.preference .ui-progressbar .ui-progressbar-value {
    height: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.preference #success {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 150px;
    margin-top: -120px;
    margin-left: -195px;
    text-align: center;
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    padding: 45px;
    border: 1px solid #d9e1e6;
    box-sizing: content-box;
}

.preference #success h4 {
    margin: 0;
}

.preference #success h4 span {
    display: block;
    font-size: 24px;
}

@-webkit-keyframes checkmark {
    0% {
        stroke-dashoffset: 50px;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@-ms-keyframes checkmark {
    0% {
        stroke-dashoffset: 50px;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes checkmark {
    0% {
        stroke-dashoffset: 50px;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 240px;
    }

    100% {
        stroke-dashoffset: 480px;
    }
}

@-ms-keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 240px;
    }

    100% {
        stroke-dashoffset: 480px;
    }
}

@keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 240px;
    }

    100% {
        stroke-dashoffset: 480px;
    }
}

.preference .inlinesvg .svg svg {
    display: inline;
}

.preference .icon--order-success svg path {
    -webkit-animation: checkmark 0.25s ease-in-out 0.7s backwards;
    animation: checkmark 0.25s ease-in-out 0.7s backwards;
}

.preference .icon--order-success svg circle {
    -webkit-animation: checkmark-circle 0.6s ease-in-out backwards;
    animation: checkmark-circle 0.6s ease-in-out backwards;
}

.preference .hero_in {
    text-align: center;
    height: 275px;
    border-bottom: 1px solid #d9e1e6;
    position: relative;
}

.preference .styled-select {
    width: 100%;
    overflow: hidden;
    height: 44px;
    background: #fff url(../img/arrow_down.svg) no-repeat right center;
    border: 1px solid #d9e1e6;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}

.preference .styled-select select {
    background: transparent;
    width: 107%;
    padding: 5px 5px 5px 15px;
    border: 0;
    height: 41px;
    color: #999;
    margin: 0;
    font-weight: 400;
    -moz-appearance: window;
    -webkit-appearance: none;
    cursor: pointer;
    outline: none;
    font-size: 16px;
    font-size: 1rem;
}

.preference .styled-select select:focus {
    color: #555;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.preference .styled-select select::-ms-expand {
    display: none;
}

.preference .styled-select select::-moz-placeholder {
    color: #999;
    opacity: 1;
}

.preference .styled-select select::-webkit-input-placeholder {
    color: #999;
}

.preference input.form-control,
.preference select.form-control,
.preference textarea.form-control {
    background: none;
    background-color: #fff;
    border: 1px solid #d9e1e6;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    color: #999;
    height: 44px;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 25px;
    padding: 6px 10px 6px 15px;
}

.preference input.form-control:focus,
.preference select.form-control:focus,
.preference textarea.form-control:focus {
    border-color: #409fff;
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    color: #555;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #195196;
    background-color: rgba(28, 93, 171, 0.03);
}

.preference span.error {
    font-size: 12px;
    position: absolute;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    top: -20px;
    left: 15px;
    z-index: 2;
    height: 25px;
    line-height: 1;
    background-color: #e34f4f;
    color: #fff;
    font-weight: normal;
    display: inline-block;
    padding: 6px 8px;
}

.preference span.error:after {
    content: "";
    position: absolute;
    border-style: solid;
    border-width: 0 6px 6px 0;
    border-color: transparent #e34f4f;
    display: block;
    width: 0;
    z-index: 1;
    bottom: -6px;
    left: 20%;
}

.preference .form-group {
    position: relative;
    margin-bottom: 25px;
}

.preference .form-group span.error {
    left: -5px;
    top: -35px;
}

.preference .form-group .icheckbox_square-grey {
    margin-right: 10px;
}

.preference .form-group.short {
    margin-bottom: 10px;
}

.preference .qty-buttons {
    position: relative;
    width: 100%;
    height: 38px;
    display: inline-block;
}

.preference input.qty {
    width: 100%;
}

.preference input.qtyminus,
.preference input.qtyplus {
    position: absolute;
    width: 35px;
    height: 40px;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    text-indent: -9999px;
    top: 2px;
}

.preference input.qtyplus {
    background: url(../img/plus.svg) no-repeat center center;
    right: 35px;
}

.preference input.qtyminus {
    background: url(../img/minus.svg) no-repeat center center;
    right: 5px;
}

.preference .rounded_slider {
    text-align: center;
}

.preference .rounded_slider p {
    margin-bottom: 0;
    color: #777;
}

.preference .rs-tooltip-text {
    font-family: "Roboto Condensed", Arial, sans-serif !important;
    font-weight: bold;
    font-size: 28px !important;
    font-size: 28px !important/16pxrem;
    color: #333;
}

.preference .rs-tooltip-text:before {
    content: "$";
}

.preference .rs-handle-dot {
    border: 1px solid #ccc !important;
    padding: 6px;
}

.preference .rs-handle-dot:after {
    border: 1px solid #fff !important;
}

.preference .rs-seperator {
    border: 1px solid #aaaaaa;
}

.preference .rs-border {
    border: 1px solid #fff !important;
}

.preference .rs-path-color {
    background-color: #f4f9ed !important;
}

.preference .rs-range-color {
    background-color: #8ec549 !important;
}

.preference .rs-bg-color {
    background-color: #ffffff;
}

.preference .rs-handle {
    background-color: #fff !important;
}

.preference .rs-handle-dot {
    background-color: #ffffff;
}

.preference .rs-handle-dot:after {
    background-color: #333 !important;
}

.preference .fileupload {
    position: relative;
    width: 100%;
    font-size: 14px;
    font-size: 0.875rem;
}

.preference input[type="file"] {
    border: 1px solid #d9e1e6;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    background-color: #fff;
    padding: 5px;
    height: auto;
    width: 100%;
    color: #999;
}

.preference input[type="file"]:focus {
    box-shadow: none;
    outline: none;
}

.preference input[type="file"]::-webkit-file-upload-button,
.preference input[type="file"].invalid::-webkit-file-upload-button,
.preference input[type="file"].valid::-webkit-file-upload-button {
    color: #fff;
    font-size: 13px;
    border: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    padding: 8px 10px 8px 38px;
    font-weight: 600;
    background: #1c5dab url(../img/upload_icon.svg) 8px center no-repeat;
    outline: none;
}

.preference input[type="file"]::-webkit-file-upload-button:focus,
.preference input[type="file"].invalid::-webkit-file-upload-button:focus,
.preference input[type="file"].valid::-webkit-file-upload-button:focus {
    box-shadow: none;
    outline: none;
}

.preference .add_bottom_15 {
    margin-bottom: 15px;
}

.preference .add_bottom_30 {
    margin-bottom: 30px;
}

.preference .add_bottom_45 {
    margin-bottom: 45px;
}

.preference .add_bottom_60 {
    margin-bottom: 60px;
}

.preference .add_bottom_75 {
    margin-bottom: 75px;
}

.preference .add_top_10 {
    margin-top: 10px;
}

.preference .add_top_15 {
    margin-top: 15px;
}

.preference .add_top_20 {
    margin-top: 20px;
}

.preference .add_top_30 {
    margin-top: 30px;
}

.preference .add_top_60 {
    margin-top: 60px;
}

.more_padding_left {
    padding-left: 40px;
}

@media (max-width: 767px) {
    .preference .more_padding_left {
        padding-left: 0;
    }
}

.preference .nomargin_top {
    margin-top: 0;
}

.preference .nopadding {
    margin: 0 !important;
    padding: 0 !important;
}

.preference .nomargin {
    margin: 0 !important;
}

.preference .margin_60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.preference .margin_60_35 {
    padding-top: 60px;
    padding-bottom: 35px;
}

@media (max-width: 575px) {
    .preference .margin_60_35 {
        padding-top: 30px;
        padding-bottom: 5px;
    }
}

.preference .margin_120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 991px) {
    .preference .margin_120 {
        padding-bottom: 60px;
        padding-top: 60px;
    }
}

@media (max-width: 575px) {
    .preference .margin_120 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.preference .margin_120_95 {
    padding-top: 120px;
    padding-bottom: 95px;
}

@media (max-width: 991px) {
    .preference .margin_120_95 {
        padding-top: 60px;
        padding-bottom: 35px;
    }
}

@media (max-width: 575px) {
    .preference .margin_120_95 {
        padding-top: 30px;
        padding-bottom: 5px;
    }
}

.preference .margin_120_0 {
    padding-top: 120px;
}

@media (max-width: 991px) {
    .preference .margin_120_0 {
        padding-top: 60px;
    }
}

@media (max-width: 575px) {
    .preference .margin_120_0 {
        padding-top: 30px;
    }
}

.preference .margin_30_95 {
    padding-top: 30px;
    padding-bottom: 95px;
}

@media (max-width: 991px) {
    .preference .margin_30_95 {
        padding-top: 15px;
        padding-bottom: 35px;
    }
}

@media (max-width: 575px) {
    .preference .margin_30_95 {
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

@media (max-width: 991px) {
    .preference .hidden_tablet {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .preference .hidden_mobile {
        display: none !important;
    }
}

.preference .delay-fast {
    animation-delay: 0.15s;
    -webkit-animation-delay: 0.15s;
}

.preference .delay-normal {
    animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
}

.preference .delay-medium {
    animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
}

.preference .delay-low {
    animation-delay: 0.9s;
    -webkit-animation-delay: 0.9s;
}