/*============================================================================================*/
/* 2.  CONTENT */
/*============================================================================================*/
/*-------- 2.1 Wizard --------*/
/*
ANIMATION REFERENCE

Animation Type
- fadeIn
- slideInLeft
- slideInRight
- slideInDown
- slideInUp
- zoomIn
- zoomOut
- rotateIn
- bounceIn
- bounceInLeft
- bounceInRight
- bounceInDown
- bounceInUp
- flipInX
- flipInY

Animation timing function
ease - Specifies an animation with a slow start, then fast, then end slowly (this is default)
linear - Specifies an animation with the same speed from start to end
ease-in - Specifies an animation with a slow start
ease-out - Specifies an animation with a slow end
ease-in-out - Specifies an animation with a slow start and end
*/
.step {
    animation: slideInUp;
    /* referring directly to the animation's @keyframe declaration */
    animation-duration: 0.3s;
    /* don't forget to set a duration! */
    animation-timing-function: ease;
}

input#website {
    display: none;
}

#wizard_container {
    position: relative;
    max-width: 800px;
    margin: auto;
}

/* Wizard Buttons*/
button.backward,
button.forward,
button.submit {
    border: none;
    min-width: 140px;
}

button.submit {
    background: #66cc33;
    -webkit-box-shadow: 0px 10px 40px -10px rgba(102, 204, 51, 0.5);
    -moz-box-shadow: 0px 10px 40px -10px rgba(102, 204, 51, 0.5);
    box-shadow: 0px 10px 40px -10px rgba(102, 204, 51, 0.5);
}

button.backward {
    background-color: #ddd;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    color: #555;
}

button.backward:hover {
    background-color: #ccc;
}

button[disabled] {
    display: none;
}

#top-wizard {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
}

#middle-wizard {
    padding: 30px 0;
}

#bottom-wizard {
    padding: 5px 0 30px 0;
    text-align: center;
}

.ui-widget-content a {
    color: #222222;
}

.ui-widget-header {
    background: #6C3;
}

.ui-widget-header a {
    color: #222222;
}

.ui-progressbar {
    height: 3px;
    width: 100%;
    position: relative;
    top: -1px;
    z-index: 2;
}

.ui-progressbar .ui-progressbar-value {
    height: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

/*-------- 2.2 Autocomplete Address Search --------*/
.pac-container {
    margin-top: 5px;
    border-top: none !important;
    -webkit-border-radius: 4px !important;
    -moz-border-radius: 4px !important;
    -ms-border-radius: 4px !important;
    border-radius: 4px !important;
    font-family: "Inter", Arial, sans-serif;
    color: #444;
    -webkit-box-shadow: 0 12px 35px 2px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 12px 35px 2px rgba(0, 0, 0, 0.12);
    box-shadow: 0 12px 35px 2px rgba(0, 0, 0, 0.12);
}

.pac-item-query {
    color: #444;
}

/*-------- 2.3 Inner pages --------*/
.main_title {
    text-align: center;
}

.main_title h2 {
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 42px;
    font-size: 2.625rem;
}

@media (max-width: 767px) {
    .main_title h2 {
        font-size: 32px;
        font-size: 2rem;
    }
}

.main_title p {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 0 10%;
    margin-bottom: 45px;
    color: #777;
}

@media (max-width: 767px) {
    .main_title p {
        font-size: 16px;
        font-size: 1rem;
    }
}

.parallax_window_in {
    height: 420px;
    position: relative;
    display: table;
    width: 100%;
}

#sub_content_in {
    display: table-cell;
    padding: 45px 15% 0 15%;
    vertical-align: middle;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
    #sub_content_in {
        padding: 45px 30px 0 30px;
    }
}

#sub_content_in h1 {
    color: #fff;
    font-weight: 600;
    font-size: 52px;
    font-size: 3.25rem;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    #sub_content_in h1 {
        font-size: 36px;
        font-size: 2.25rem;
    }
}

#sub_content_in p {
    color: #fff;
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 300;
}

@media (max-width: 767px) {
    #sub_content_in p {
        font-size: 21px;
        font-size: 1.3125rem;
    }
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #e31e23 !important;
}

.team-item-img {
    position: relative;
}

.team-item-img .team-item-detail {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.8);
    text-align: center;
    color: #fff;
    display: -webkit-flex;
    display: flex;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
}

.team-item:hover .team-item-detail {
    opacity: 1;
    visibility: visible;
}

.team-item-img .team-item-detail .team-item-detail-inner {
    margin: auto;
    padding: 25px;
}

.team-item-detail-inner .social {
    margin: 0 0px 25px 0px;
    padding: 0px;
}

.team-item-detail-inner .social li {
    list-style: none;
    display: inline-block;
    margin: 0px 8px;
    font-size: 24px;
    font-size: 1.5rem;
}

.team-item-detail-inner .social li a {
    color: #fff;
}

.team-item-detail-inner .social li a:hover {
    color: #d62544;
}

.team-item-info {
    padding-top: 15px;
    text-align: center;
}

.team-item-info h4 {
    margin-bottom: 0px;
}

iframe#map_iframe {
    width: 100%;
    height: 450px;
    border: 0;
    margin: 0;
}

@media (max-width: 991px) {
    iframe#map_iframe {
        height: 400px;
    }
}

.box_style_2 {
    background-color: #f8f8f8;
    padding: 25px 30px 30px 30px;
    position: relative;
    margin-bottom: 25px;
}

.box_style_2 .form-control {
    background-color: #fff !important;
}

ul.contacts_info {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

ul.contacts_info li {
    margin-bottom: 15px;
}

ul.contacts_info li:last-child {
    margin-bottom: 0;
}


/*============================================================================================*/
/* 3.  COMMON */
/*============================================================================================*/
/*-------- 3.1 Misc --------*/
.bg_color_gray {
    background-color: #f8f8f8;
}

.modal-content {
    border: 1px solid transparent;
}

.list_block p {
    margin-bottom: 20px;
    font-weight: 500;
}

.list_block ul {
    padding: 0;
    margin: 0 0 20px 0;
}

.list_block ul li {
    display: block;
    margin: 0 0 5px 0;
}

.list_block ul li.last-child {
    margin-right: 0;
}

/*-------- 3.2 Datepicker --------*/
.daterangepicker td.in-range {
    background-color: #ffd9e5 !important;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: #e31e23 !important;
}

/*-------- 3.3 Input forms --------*/
/* Input radios style */
.checkbox_radio_container {
    margin-bottom: 10px;
    position: relative;
}

.checkbox_radio_container input[type="checkbox"] {
    display: none;
}

.checkbox_radio_container input[type="radio"] {
    display: none;
}

.checkbox_radio_container label {
    cursor: pointer;
}

.checkbox_radio_container .radio,
.checkbox_radio_container .checkbox {
    display: inline-block;
    width: 25px;
    height: 25px;
    padding: 5px;
    background: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    z-index: 9;
    left: 8px;
    top: 2px;
    border: 1px solid black;
}

.checkbox_radio_container .radio:after,
.checkbox_radio_container .checkbox:after {
    content: "";
    position: absolute;
    width: 0px;
    height: 3px;
    background: #d62544;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    transform: translate(4px, 11px) rotate(-45deg);
    transform-origin: left;
    transition: all 150ms;
    transition-delay: 0ms;
}

.checkbox_radio_container .radio:before,
.checkbox_radio_container .checkbox:before {
    content: "";
    position: absolute;
    width: 0px;
    height: 3px;
    background: #d62544;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    transform: translate(1px, 6px) rotate(45deg);
    transform-origin: left;
    transition: all 150ms;
    transition-delay: 150ms;
}

.checkbox_radio_container .checkbox {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}

.checkbox_radio_container .wrapper {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    background-color: rgb(255 255 255 / 93%);
    color: #595959;
    /* OPACITY AND COLOR OF THE RADIO AND CHECKBOX */
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    padding: 10px 10px 10px 44px;
    font-weight: 500;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    /* Aligns children to each edge */
    align-items: center;
    /* Centers items vertically */
    width: 100%;
    /* Ensures label takes full width of its parent */
}

.checkbox_radio_container .label-text,
.price {
    /* Allows both elements to grow */
    display: flex;
    /* Enables flexbox properties for alignment */
}

.label-text {
    justify-content: flex-start;
    /* Aligns text to the left */
}

.price {
    justify-content: flex-end;
    /* Aligns price to the right */
}

.checkbox_radio_container input[type="checkbox"]:checked~.checkbox:before,
.checkbox_radio_container input[type="checkbox"]:checked~.radio:before,
.checkbox_radio_container input[type="radio"]:checked~.checkbox:before,
.checkbox_radio_container input[type="radio"]:checked~.radio:before {
    width: 7px;
    transition-delay: 0ms;
}

.checkbox_radio_container input[type="checkbox"]:checked~.checkbox:after,
.checkbox_radio_container input[type="checkbox"]:checked~.radio:after,
.checkbox_radio_container input[type="radio"]:checked~.checkbox:after,
.checkbox_radio_container input[type="radio"]:checked~.radio:after {
    width: 13px;
    transition-delay: 150ms;
}

.checkbox_radio_container input[type="checkbox"]:checked~.wrapper,
.checkbox_radio_container input[type="radio"]:checked~.wrapper {
    transition: all 450ms;
    background-color: #e31e23;
    color: #fff;
}

/* Checkbox style */
.container_check {
    display: block;
    position: relative;
    font-size: 14px;
    font-size: 0.875rem;
    padding-left: 30px;
    line-height: 1.3;
    margin-bottom: 10px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container_check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.container_check input:checked~.checkmark {
    background-color: #e31e23;
    border: 1px solid transparent;
}

.container_check .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #d9e1e6;
    background-color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    -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;
}

.container_check .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.container_check input:checked~.checkmark:after {
    display: block;
}

/* Input smiles review */
.review_block_smiles ul {
    padding: 0;
    margin: 0 -3px;
    list-style-type: none;
    display: flex;
    justify-content: center;
}

.review_block_smiles ul li {
    display: list-item;
    margin: 0 3px;
    width: 100%;
}

.container_smile {
    margin-bottom: 5px;
    position: relative;
}

.container_smile input[type="radio"] {
    display: none;
}

.container_smile label {
    cursor: pointer;
}

.container_smile .radio {
    position: relative;
    background-color: white;
    background-color: white;
    /* OPACITY AND COLOR */
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #d9e1e6;
    padding: 15px;
    display: block;
    text-align: center;
}

@media (max-width: 575px) {
    .container_smile .radio {
        padding: 10px;
    }
}

.container_smile .radio:after {
    font-family: 'smiles';
    font-size: 42px;
    font-size: 2.625rem;
}

@media (max-width: 1199px) {
    .container_smile .radio:after {
        font-size: 36px;
        font-size: 2.25rem;
    }
}

@media (max-width: 575px) {
    .container_smile .radio:after {
        font-size: 30px;
        font-size: 1.875rem;
    }
}

.container_smile .radio span {
    display: none;
}

.container_smile .radio.smile_1:after {
    content: '\0041';
}

.container_smile .radio.smile_2:after {
    content: '\0042';
}

.container_smile .radio.smile_3:after {
    content: '\0043';
}

.container_smile .radio.smile_4:after {
    content: '\0044';
}

.container_smile .radio.smile_5:after {
    content: '\0045';
}

.container_smile .radio {
    transition: all 450ms;
}

.container_smile .radio.smile_1:hover {
    background-color: #ff0033;
    color: #fff;
}

.container_smile .radio.smile_2:hover {
    background-color: #ff5f7f;
    color: #fff;
}

.container_smile .radio.smile_3:hover {
    background-color: #94b49b;
    color: #fff;
}

.container_smile .radio.smile_4:hover {
    background-color: #68cd7f;
    color: #fff;
}

.container_smile .radio.smile_5:hover {
    background-color: #4ccd6a;
    color: #fff;
}

.container_smile input[type="radio"]:checked~.radio {
    transition: all 450ms;
    color: #fff;
}

.container_smile input[type="radio"]:checked~.radio:after {
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    transition: all 0.6s ease;
    display: block;
    transform: rotateY(360deg);
}

.container_smile input[type="radio"]:checked~.radio.smile_1 {
    background-color: #ff0033;
}

.container_smile input[type="radio"]:checked~.radio.smile_2 {
    background-color: #ff5f7f;
}

.container_smile input[type="radio"]:checked~.radio.smile_3 {
    background-color: #94b49b;
}

.container_smile input[type="radio"]:checked~.radio.smile_4 {
    background-color: #68cd7f;
}

.container_smile input[type="radio"]:checked~.radio.smile_5 {
    background-color: #4ccd6a;
}

/* Common inputs */
input.form-control,
.form-select,
textarea.form-control {
    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; this is the original*/
    color: #595959;
    font-weight: 400;
    font-size: 15px;
    font-size: 0.9375rem;
    font-family: "Inter", Arial, sans-serif;
}

input.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
    border-color: rgba(247, 39, 74, 0.2);
    outline: 0;
    box-shadow: 0 0 0 0.3rem rgba(247, 39, 74, 0.05);
    color: #444;
    -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;
}

textarea.form-control {
    height: 120px !important;
}

.form-floating>label {
    color: #777;
    font-size: 15px;
    font-size: 0.9375rem;
}

/* Error label */
span.error {
    font-size: 12px;
    position: absolute;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    top: -20px;
    left: 15px;
    z-index: 10;
    height: 25px;
    line-height: 1;
    background-color: #222;
    color: #fff;
    font-weight: normal;
    display: inline-block;
    padding: 6px 8px;
}

span.error:after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 0 6px 6px 0;
    border-color: transparent #222;
    display: block;
    width: 0;
    z-index: 1;
    bottom: -6px;
    left: 20%;
}

.terms span.error {
    top: -30px;
}

/* Quantity incrementer input */
.qty-buttons {
    position: relative;
    width: 100%;
    display: inline-block;
}

.qty-buttons .form-control {
    height: calc(3.5rem + 2px);
    padding: 1rem .75rem;
}

input.qty {
    width: 100%;
}

input.qtyminus,
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: 10px;
}

input.qtyplus {
    background: url(../img/plus.svg) no-repeat center center;
    right: 35px;
}

input.qtyminus {
    background: url(../img/minus.svg) no-repeat center center;
    right: 5px;
}

/*-------- 3.4 Spacing --------*/
.add_bottom_10 {
    margin-bottom: 10px;
}

.add_bottom_15 {
    margin-bottom: 15px;
}

.add_bottom_30 {
    margin-bottom: 30px;
}

.add_bottom_45 {
    margin-bottom: 45px;
}

.add_bottom_60 {
    margin-bottom: 60px;
}

.add_bottom_75 {
    margin-bottom: 75px;
}

.add_top_10 {
    margin-top: 10px;
}

.add_top_15 {
    margin-top: 15px;
}

.add_top_20 {
    margin-top: 20px;
}

.add_top_30 {
    margin-top: 30px;
}

.add_top_60 {
    margin-top: 60px;
}

.margin_30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.margin_60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.margin_60_35 {
    padding-top: 60px;
    padding-bottom: 35px;
}

/*-------- 3.5 Help Modal --------*/
.custom-modal {
    background: #fff;
    padding: 45px;
    padding-top: 0;
    text-align: left;
    max-width: 450px;
    margin: 40px auto;
    position: relative;
    box-sizing: border-box;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
}

/* Popup close button*/
.custom-modal .mfp-close {
    color: #999;
    top: 12px;
    right: 10px;
    width: 32px;
    height: 32px;
    line-height: 32px;
}

.custom-modal .mfp-close:hover {
    color: #222;
}

.custom-modal .mfp-close:before {
    font-size: 26px;
    font-family: bootstrap-icons;
    content: "\f62a";
}

.small-dialog-header {
    text-align: center;
    padding: 45px 0 0 0;
}

.small-dialog-header h3 {
    font-size: 21px;
    font-size: 1.3125rem;
    font-weight: 500;
}

.modal-wrapper {
    position: relative;
    height: 100%;
}

/* Magnific popup */
.mfp-zoom-in {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-zoom-in .mfp-with-anim {
    opacity: 0;
    transition: all 0.2s ease-in-out;
    transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
    transform: scale(0.8);
    opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-bottom-bar {
    padding: 0 10px !important;
}

.mfp-counter {
    right: 10px !important;
    color: #fff !important;
}

.mfp-bg {
    opacity: 0.8 !important;
}

#message-help {
    margin-bottom: 5px;
    min-height: 20px;
}

#message-help .error_message {
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #e31e23;
}

.submit {
    position: relative;
}

.submit .loader {
    font-size: 18px;
    font-size: 1.125rem;
    position: absolute;
    top: 10px;
    margin-left: 10px;
}

/*-------- 3.6 Success submit --------*/
#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;
}

#success h4 {
    font-size: 18px;
    margin-top: 15px;
}

#success h4 span {
    display: block;
    font-size: 22px;
    margin-bottom: 10px;
}

@-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;
    }
}

.inlinesvg .svg svg {
    display: inline;
}

.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;
}

.icon--order-success svg circle {
    -webkit-animation: checkmark-circle 0.6s ease-in-out backwards;
    animation: checkmark-circle 0.6s ease-in-out backwards;
}


/*-------- 1.2 Buttons --------*/
a.btn_1,
.btn_1 {
    border: none;
    color: #fff;
    background: #e31e23;
    outline: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    padding: 15px 30px;
    -webkit-box-shadow: 0px 10px 40px -10px rgba(255, 0, 131, 0.5);
    -moz-box-shadow: 0px 10px 40px -10px rgba(255, 0, 131, 0.5);
    box-shadow: 0px 10px 40px -10px rgba(255, 0, 131, 0.5);
    font-weight: 600;
    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;
}

a.btn_1:hover,
.btn_1:hover {
    -webkit-filter: brightness(115%);
    filter: brightness(115%);
}

a.btn_nav {
    color: #111;
    font-size: 24px;
    font-size: 1.5rem;
}

a.btn_nav:hover {
    color: #e31e23;
}

a.btn_help {
    background-color: #ddd;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    border-radius: 25px;
    font-weight: 500;
}

a.btn_help:hover {
    background-color: #e31e23;
    color: #fff;
}

a.btn_help:focus {
    box-shadow: none;
}

.btn-close:focus {
    box-shadow: none;
    outline: none;
}