.header-top a {
    font-weight: 600;
}
.header-top,
header {
    border-bottom: solid 2px #cbcbcb;
}
.header-bottom-flex {
    justify-content: flex-start;
    align-items: center;
}
.header-bottom {
    padding: 10px 0;
}
header .logo {
    width: auto;
    max-width: 300px;
}
header .navigation {
    margin-left: 20px;
}
header.header {
    top: -42px;
}
header.header .header-top {
    height: 40px;
}
header span.new {
    margin-right: 15px;
}
.header-top {
    font-size: 14px;
}
header span.header-login a {
    border-radius: 10px;
    padding: 10px 20px;
    color: #fff;
    display: inline-block;
}
header span.header-login {
    margin-left: auto;
}

.range-row {
    margin-top: 100px;
}

.range-wrap {
    position: relative;
    margin: 0 auto 3rem;
}
.range {
    width: 100%;
}
.bubble {
    background: #fff;
    color: #000;
    padding: 10px 20px;
    position: absolute;
    border-radius: 4px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    box-shadow: 0px 0 3px 2px #ddd;
    top: -90px;
    box-sizing: content-box;
    min-width: 180px;
}

.bubble .triangle {
    background-color: #fff;
    border-start-end-radius: 100%;
    bottom: -15px;
    box-shadow: -2px 3px 4px #ddd;
    height: 30px;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    transform: rotate(-45deg);
    width: 30px;
}
.bubble .bubble-title {
    font-size: 18px;
    color: rgba(229, 114, 33, 1);
    margin-top: 10px;
    display: inline-block;
    font-weight: 500;
}

input[type="range"] {
    width: 100%;
    height: 28px; /* thumbHeight + (2 x thumbBorderWidth)*/
    -webkit-appearance: none; /*remove the line*/
    outline: none;
    /*background-color:cyan;*/
    border: 0; /*for firefox on android*/
    padding: 0 8px; /*for IE*/
    margin: 8px 0;
}

/*chrome and opera*/
input[type="range"]::-webkit-slider-runnable-track {
    background: #ccc; /*trackColor*/
    height: 4px; /*trackHeight*/
    border-radius: 4px; /*trackHeight*/
    transition: 0.3s;
}

input[type="range"]:hover::-webkit-slider-runnable-track,
input[type="range"]:focus::-webkit-slider-runnable-track {
    background: #777; /*activeTrackColor*/
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: darkOrange; /*thumbColor*/
    width: 28px; /* thumbHeight + (2 x thumbBorderWidth)*/
    height: 28px; /* thumbHeight + (2 x thumbBorderWidth)*/
    border-radius: 50%;
    margin-top: -12px; /* -[thumbHeight + (2 x thumbBorderWidth) - trackHeight]/2*/
    cursor: pointer;
    border: 4px solid #fff; /*border-width should be equal to thumbBorderWidth if you want same border width across all browsers and border-color should match the background*/
    transition: 0.3s;
}

input[type="range"]:hover::-webkit-slider-thumb,
input[type="range"]:focus::-webkit-slider-thumb {
    background: darkOrange; /*activeThumbColor*/
}

/*firefox*/
input[type="range"]::-moz-focus-outer {
    border: 0;
}

input[type="range"]::-moz-range-track {
    background: #ccc; /*trackColor*/
    height: 4px; /*trackHeight*/
    border-radius: 4px; /*trackHeight*/
    /*background isn't animatable, so can't use transition*/
}

input[type="range"]:hover::-moz-range-track,
input[type="range"]:focus::-moz-range-track {
    background: #777; /*activeTrackColor*/
}

input[type="range"]::-moz-range-thumb {
    background: darkOrange; /*thumbColor*/
    width: 20px; /*thumbHeight*/
    height: 20px; /*thumbHeight*/
    border-radius: 50%;
    cursor: pointer;
    border: 4px solid #fff; /*border-width = thumbBorderWidth, border-color should match the background*/
}

input[type="range"]:hover::-moz-range-thumb,
input[type="range"]:focus::-moz-range-thumb {
    background: darkOrange; /*activeThumbColor*/
}

input[type="range"]::-moz-range-progress {
    background: darkOrange; /*thumbColor*/
    border-radius: 4px; /*trackHeight*/
    height: 4px; /*trackHeight*/
}

input[type="range"]:hover::-moz-range-progress,
input[type="range"]:focus::-moz-range-progress {
    background: darkOrange; /*activeThumbColor*/
}

/*edge and IE*/
input[type="range"]::-ms-track {
    background: #ccc; /*trackColor*/
    height: 4px; /*trackHeight*/
    border-radius: 4px; /*trackHeight*/
    border: none;
    color: transparent;
}

input[type="range"]:hover::-ms-track,
input[type="range"]:focus::-ms-track {
    background: #777; /*activeTrackColor*/
}

input[type="range"]::-ms-thumb {
    background: darkOrange; /*thumbColor*/
    width: 20px; /*thumbHeight*/
    height: 20px; /*thumbHeight*/
    border-radius: 50%;
    border: none;
    margin: 0 4px 0; /*0 thumbBorderWidth 0*/
    box-shadow: 0 0 0 4px #fff; /*0 0 0 thumbBorderWidth #fff, box-shadow color should match the background*/
    /*cursor:pointer; doesn't work*/
}

input[type="range"]:hover::-ms-thumb,
input[type="range"]:focus::-ms-thumb {
    background: darkOrange; /*activeThumbColor*/
}

input[type="range"]::-ms-tooltip {
    display: none; /*tooltip makes thumb sliding lagy*/
}

input[type="range"]::-ms-fill-lower {
    background: darkOrange; /*thumbColor*/
    border-radius: 4px; /*trackHeight*/
}

input[type="range"]:hover::-ms-fill-lower,
input[type="range"]:focus::-ms-fill-lower {
    background: darkOrange; /*activeThumbColor*/
}

.vertically-stacked-slider {
    padding: 8px;
}

.vertically-stacked-slider > input[type="range"] {
    padding: 0;
}

.horizontally-stacked-slider {
    display: flex;
    align-items: center;
}

.horizontally-stacked-slider > .title {
    flex: 1;
    padding: 8px;
}

.horizontally-stacked-slider > input[type="range"] {
    flex: 1;
}
.tooltip {
    text-align: center;
}

.tooltip .title {
    font-size: 18px;
}
.tooltip .price {
    color: rgba(229, 114, 33, 1);
    font-size: 21px;
    font-weight: 700;
    margin-top: 10px;
}
.tooltip .body {
    font-size: 14px;
    margin: 10px 0;
}
.tooltip a {
    color: #fff;
    background: rgba(229, 114, 33, 1);
    border-radius: 10px;
    padding: 10px 20px;
    display: inline-block;
}

.home-filter {
    overflow: hidden;
    position: relative;
}
.home-filter img {
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    height: 600px;
}
.new-overlay {
    width: 37%;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(169, 169, 169, 0.2);
}

.new-overlay::after {
    content: "";
    position: absolute;
    right: -199px;
    width: 0;
    height: 0;
    border-bottom: 601px solid rgba(169, 169, 169, 0.2);
    border-right: 199px solid transparent;
}
.bottom-body {
    position: absolute;
    z-index: 99;
    width: 37%;
    margin-left: 2%;
    margin-top: 6vw;
}
.bottom-subtitle {
    font-size: 18px;
    color: #3c3c3c;
}
.bottom-title {
    color: #202020;
    font-size: 48px;
    font-weight: 700;
    margin: 40px 0;
}
.home-filter .bottom-button a {
    background: rgba(229, 114, 33, 1);
    color: #fff;
    display: inline-block;
    padding: 10px 10px;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 15px;
}
.bottom-button a i {
    float: right;
    margin-top: 5px;
}

.model_occasions .container {
    display: flex;
    flex-wrap: wrap;
}
.occasion-left {
    width: 70%;
    margin-right: 5%;
    margin-top: 2%;
}
.occasion-right {
    width: 25%;
    margin-top: 2%;
}
.right-table {
    top: 110px;
}
.fotorama__stage__shaft {
    cursor: initial;
}
.desc-placeholder {
    border: solid 2px #cbcbcb;
    margin: 2% 0;
    border-radius: 10px;
}
.desc-title {
    border-bottom: solid 2px #cbcbcb;
    padding: 10px;
    color: #555555;
    font-size: 18px;
    font-weight: 600;
}
.desc-body iframe {
    width: 100%;
    max-width: 100%;
}

.right-table {
    color: #555555;
}
.right-table {
    box-sizing: border-box;
}
.right-table {
    border: solid 2px #cbcbcb;
    border-radius: 10px;
    overflow: hidden;
}
.right-contact {
    color: #fff;
    background: rgba(229, 114, 33, 1);
    padding: 20px;
}
.form_wrapper .resolve input#math {
    position: relative;
    top: -3px;
}
.form_wrapper .resolve.captcha_form_part {
    margin-bottom: 9px;
}

.form_submit_box {
    display: flex;
    justify-content: center;
}
.right-contact span {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}
.right-contact a {
    display: inline-block;
    width: 100%;
    background: #fff;
    color: #000;
    border-radius: 5px;
    padding: 15px 20px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}
.right-price,
.right-address,
.right-print,
.right-shares {
    box-sizing: border-box;
    padding: 20px;
}
.left-address {
    box-sizing: border-box;
    padding: 0;
}

.left-price {
    font-size: 32px;
    font-weight: 600;
    padding: 0;
    padding-bottom: 0;
}
.right-print i,
.right-shares i {
    font-size: 26px;
    margin-right: 10px;
}
.right-print,
.right-shares {
    display: flex;
    align-items: center;
}
.right-shares span i {
    margin-right: 0;
    margin-left: 10px;
}
.right-shares .fa-square-facebook {
    color: #4267b2;
}
.right-shares .fa-square-twitter {
    color: #1da1f2;
}
.right-shares .fa-square-pinterest {
    color: #e60023;
}
.right-shares {
    border-top: solid 2px #cbcbcb;
}
.attributes-list {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
}
.attributes-list > div {
    width: 33%;
    color: #555555;
    margin: 10px 0;
}
.occasion-box {
    width: 31.33%;
    border: solid 2px #cbcbcb;
    border-radius: 10px;
    overflow: hidden;
    margin: 1%;
}
.occasion-box img {
    max-width: 100%;
}
.module_693 {
    color: #555555;
    margin: 50px 0;
    width: 100%;
    float: left;
}

.module_693 .module_title,
.module_693 > div {
    text-align: center;
}
.module_693 .module_title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 40px;
}

.module_693 i {
    font-size: 42px;
    color: rgba(229, 114, 33, 1);
    margin-right: 10px;
}
.module_693 .col_50 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    padding: 50px 0;
}
.module_693 .col_50 span {
    margin-right: 10px;
    display: flex;
    align-items: center;
}
.module_693 .col_50:nth-of-type(2) span a {
    display: flex;
    align-items: center;
}
.module_693 .col_50:nth-of-type(1) span a {
    background: rgba(229, 114, 33, 1);
    color: #fff;
    border-radius: 10px;
    padding: 10px 20px;
}
.module_693 .col_50:nth-of-type(1) {
    border-right: solid 2px rgba(229, 114, 33, 1);
}
.module_693 .col_50:nth-of-type(2) {
    border-left: solid 2px rgba(229, 114, 33, 1);
}
.form_wrapper div.input.select>label:nth-of-type(1) {
    margin-top: 10px;
}
.form_wrapper div.input.textarea>label:nth-of-type(1) {
    margin-top: 10px;
}
.occasion-box .occasion-price {
    font-weight: 600;
    margin: 10px 0;
    margin-bottom: 0;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.captcha_form_part span {
    font-weight: 400;
}

.captcha_form_part input {
    margin-bottom: 0;
    height: 1.75rem;
}
.occasion-box .occasion-price i {
    float: right;
    color: rgba(229, 114, 33, 1);
    cursor: pointer;
    font-size: 32px;
}
.request_occasions #main {
    background: #fff;
}
.occasion-box .occasion-img img {
    display: block;
}

.occasion-price,
.occasion-address,
.occasion-desc,
.occasion-attr,
.occasion-category {
    box-sizing: border-box;
    padding: 0 10px;
}
.occasion-desc {
    margin-bottom: 10px;
    font-size: 14px;
}
.occasion-category span {
    color: #fff;
    background: rgba(229, 114, 33, 1);
    border-radius: 5px;
    padding: 5px 10px;
    display: inline-block;
}
.occasion-category {
    margin-bottom: 10px;
}

.desc-body .attribute_box {
    display: flex;
    align-items: center;
}
.desc-body .attribute_box img,
.desc-body .attribute_box strong {
    margin-right: 5px;
}
.request_occasions .attribute_box strong::before,
.request_occasions .attribute_box strong {
    display: none;
}
.occasion-box .occasion-attr {
    margin-top: 10px;
}
.occasion-box .occasion-attr img {
    width: 25px;
}
.occasion-box .attribute_box {
    display: flex;
    align-items: center;
    font-size: 12px;
    width: auto;
    margin-right: 10px;
    margin-bottom: 10px;
}
.occasion-box .occasion-attr {
    display: flex;
    flex-wrap: wrap;
}
.request_occasions .services-search span button.submit {
    background: rgba(229, 114, 33, 1);
}
.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.latest_occasions .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.latest_occasions {
    padding-bottom: 10px;
}
.latest_occasions .latest-ocassions-header {
    font-size: 26px;
    color: #555555;
    margin: 0 0 30px !important;
}
.occasions-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.view-all a {
    color: #fff;
    background: rgba(229, 114, 33, 1);
    border-color: rgba(229, 114, 33, 1);
}

.right-shares {
    display: none;
}

@media only screen and (max-width: 1280px) {
    .bottom-title {
        font-size: 32px;
    }
    .bottom-body .bottom-button a {
        font-size: 18px;
    }
    .bottom-body {
        margin-top: 11vw;
    }
    .new-overlay::after {
        right: -198px;
    }
}
@media only screen and (max-width: 1024px) {
    .new-overlay::after {
        display: none;
    }
    .new-overlay {
        width: 100%;
    }
    .bottom-body {
        width: 100%;
        margin: 0;
    }
    .home-filter {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    .home-filter > div {
        text-align: center;
    }
    .bottom-body .bottom-button {
        text-align: center;
    }
    .new-overlay {
        background: rgba(169, 169, 169, 0.4);
    }
    .header-top .container {
        box-sizing: border-box;
        padding-right: 50px !important;
    }
    .close_mobile_menu,
    #default_layout #open_mobile_menu {
        font-size: 36px;
        top: -2px !important;
        transition: 0.05s;
    }
    body#default_layout.compress .header-bottom-flex {
        padding-right: 45px !important;
    }
    .header-bottom-flex {
        transition: 0.05s;
    }

    .compress .close_mobile_menu,
    #default_layout.compress #open_mobile_menu {
        top: 10px !important;
    }
    #default_layout .header-bottom-flex .logo img {
        margin-top: 3px;
    }
    #default_layout .close_mobile_menu {
        top: 2px !important;
    }
    .occasions-container {
        width: 100%;
        float: left;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .owl-carousel .occasion-box {
        width: auto;
        margin: auto;
    }
    .owl-nav {
        display: flex;
        justify-content: center;
        font-size: 32px;
        margin-top: 20px;
        color: rgba(229, 114, 33, 1);
    }
    .bee-row {
        float: left;
    }

    header.header .header-top {
        display: none;
    }

    .header-login {
        display: none;
    }

    .close_mobile_menu, #default_layout #open_mobile_menu {
        top: 10px !important;
    }

    .home-filter img {
        height: 300px;
    }

    header.header {
        top: 0;
    }

    .bottom-body .bottom-button a {
        max-width: 100% !important;
    }

    .latest_occasions {
        padding: 30px 0;
    }

    .owl-carousel .owl-stage {
        width: 100% !important;
    }

    .owl-carousel .owl-item {
        width: 100% !important; 
        margin: 0 0 15px !important;
    }

    .range-row {
        margin-bottom: 30px;
    }

    .copyrights .logicake-footer-ico {
        margin: 10px 0;
    }

    .copyrights a {
        float: left;
        width: 100%;
        margin: 5px 0;
    }

    .footer-col p {
        justify-content: center;
    }

    .slide-title p {
        left: 0 !important;
    }

    .occasion-box {
        width: 100%;
    }

    #mobile_menu ul li.active > a {
        background: #fd7d22 !important;
    }

    .occasion-left {
        width: 100%;
        margin: 30px 0;
    }

    .attributes-list > div {
        width: 100%;
    }

    .occasion-right {
        width: 100%;
        margin: 0 0 30px;
    }
    
    .form_wrapper button {
        margin-top: 15px;
    }

}
