@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800&display=swap');

/*=============================================
    General CSS
==============================================*/
html,
body,
#app {
    overflow-x: hidden !important;
    padding: 0 !important;
    scroll-behavior: smooth;
}

body {
    background-image: url('../img/ui/bg.jpg');
    font-size: 14px;
    line-height: 24px;
    font-family: 'Poppins', Helvetica, sans-serif;
    color: #555;
}

/* Images */
img,
video {
    height: auto;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
}

/* Links */
a {
    color: #1491f6;
    outline: none;
    text-decoration: none;
    transition: all .25s ease-in-out;
}

a:hover,
a:active,
a:focus {
    color: #111;
    outline: none;
    text-decoration: none;
}

/* Paragraphs */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333;
}

/* Buttons */
.btn {
    text-transform: capitalize;
    font-weight: 500;
    padding: 10px 20px;
}

.btn.btn-primary {
    color: #fff !important;
    cursor: pointer;
}

.btn.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn.btn-rounded {
    border-radius: 100px !important;
}

.btn.btn-small {
    font-size: 12px;
    padding: 2px 10px;
}

.btn.btn-link {
    color: #555;
}

.btn.btn-outline {
    border: 2px solid #1491f6 !important;
    color: #1491f6 !important;
    background: none !important;
}

.btn.btn-outline:hover {
    background: #1491f6;
    color: #fff;
    border-color: #1491f6;
}

.btn-link:hover {
    text-decoration: none;
}

.btn.btn-outline:focus,
.btn.btn-link:focus {
    outline: none;
    text-decoration: none;
}

/* Lists */
ul,
li {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}

/* Inputs */
.input-group input {
    height: 50px;
    border: none;
}

.input-group select:disabled {
    background-color: #e9ecef !important;
    border: none;
}

.input-group.appended .input-group-append {
    right: 0;
    padding: 16px;
    position: absolute;
    z-index: 100;
    font-size: 18px;
    color: #999;
    pointer-events: none;
}

.input-group.appended input {
    padding-right: 50px;
    margin-bottom: 10px;
    border: 1px solid #ededed;
    border-radius: 3px !important;
}

.input-group.appended select {
    background: #fff;
    border: 1px solid #ededed;
    height: 50px;
    margin-bottom: 10px;
    -moz-appearance: window;
    -webkit-appearance: none;
    cursor: pointer;
    font-weight: 400;
    color: #495057;
}

.input-group.appended input::placeholder,
textarea.form-control::-webkit-input-placeholder {
    opacity: .3;
}

textarea.form-control {
    border: 1px solid #ededed;
}

label.required::after {
    content: ' *';
    color: #ff0000;
}

/* Tooltips */
i.fa-question-circle[data-toggle="tooltip"] {
    opacity: .5;
    font-size: 12px;
}

/* Date Range Picker */
.daterangepicker {
    font-family: 'Poppins', Helvetica, sans-serif;
    margin-top: 15px;
}

.daterangepicker td.disabled,
.daterangepicker option.disabled {
    color: #ececec;
}

/* Number Picker */
.number-picker {
    position: relative;
    height: 50px;
    margin-bottom: 10px;
}

.number-picker input,
.number-picker input:focus {
    text-align: center;
    height: 50px;
    border: 1px solid #ededed;
    -moz-appearance: textfield;
    -webkit-appearance: none;
}

.number-picker input::-webkit-outer-spin-button,
.number-picker input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-step {
    cursor: pointer;
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: #999;
    user-select: none;
}

.btn-step.increment {
    right: 0;
    top: 0;
    border: 1px solid #ededed;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.btn-step.decrement {
    border: 1px solid #ededed;
    left: 0;
    top: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

/* IonRangeSlider */
.irs--flat {
    height: 40px;
    margin: auto;
    max-width: calc(100% - 25px);
}

.irs-bar,
.irs-to,
.irs-from,
.irs-single {
    background-color: #1491f6 !important;
}

.irs-to:before,
.irs-from:before,
.irs-single:before {
    border-top-color: #1491f6 !important;
}

.irs-handle>i:first-child {
    background-color: #1172c2 !important;
}

/* Pagination */
.pagination {
    justify-content: center;
    padding-top: 15px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 200;
}

.preloader.swal {
    position: unset;
    height: 150px;
    background-color: #fff;
}

.preloader .circle {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    animation: circle infinite .95s linear;
    border: 2px solid #1491f6;
    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);
    border-radius: 100%;
}

@keyframes circle {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Google ReCaptcha */
.grecaptcha-badge {
    display: none !important;
}

/* Scroll Top */
.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 90px;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    padding: 15px 17px;
}

.scroll-top:hover {
    background-color: #1491f6;
}

/* Cart */
.cart-component {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    padding: 15px 17px;
}

.cart-component:hover {
    background-color: #1491f6;
}

/* Sections */
section {
    padding-top: 50px;
}

section:last-of-type {
    padding-bottom: 70px;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
}

.section-title span {
    width: 120px;
    height: 2px;
    background-color: #e1e1e1;
    display: block;
    margin: auto;
    margin-bottom: 25px !important;
}

.section-title span em {
    width: 60px;
    height: 2px;
    background-color: #1491f6;
    display: block;
    margin: auto;
}

.section-title p {
    font-size: 16px;
    font-weight: 300;
}

.section-title.side {
    text-align: left;
    margin-bottom: 25px;
    position: relative;
}

.section-title.side span,
.section-title.side span em {
    margin: 0;
}

.section-title.side h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

/* Form Section */
.form {
    margin-bottom: 50px;
}

.form-title {
    position: relative;
    padding-left: 55px;
    margin-bottom: 20px;
    display: table;
}

.form-title h3 {
    margin: 0;
    padding: 0;
    font-size: 21px;
}

.form-title h3 strong {
    background-color: #1491f6;
    text-align: center;
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    line-height: 42px;
    text-align: center;
    position: absolute;
    left: 0;
    top: -5px;
}

.form-title p {
    color: #999;
    margin: 0;
    padding: 0;
    font-size: 12px;
    line-height: 14px;
}

/* Animations */
@keyframes pop-in {
    100% {
        transform: scale(1.1);
    }
}

@keyframes reveal {
    0% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(100%);
    }
}

@keyframes opacity {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*=============================================
    Navigation Header
==============================================*/
.header {
    position: fixed;
    width: 100%;
    padding: 20px 0;
    z-index: 150;
    transition: all .25s ease-in-out;
}

.header.sticky {
    border-bottom: 1px solid #ededed;
    background-color: #fff;
    padding: 10px 0;
}

.header ul>li>a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.header ul>li>a:hover {
    color: #fff;
    opacity: 0.7;
}

.header.sticky ul>li>a {
    color: #444;
}

.header.sticky ul>li>a:hover {
    color: #1491f6;
    opacity: 1;
}

/* Secondary Navigation */
.header li.has-dropdown>ul {
    position: absolute;
    visibility: hidden;
    top: 100%;
    background: #fff;
    min-width: 200px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    transform: scale(0.4);
    transform-origin: 10% top;
    opacity: 0;
    transition: all 0.2s ease;
    border-radius: 3px;
}

.header li.rtl.has-dropdown>ul {
    transform: translateX(-155px) !important;
    top: 125%;
}

.header li.has-dropdown:hover ul {
    padding: 0;
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    transition-duration: 0s, 0.2s, 0.2s;
}

.header li.has-dropdown>ul::before {
    bottom: 100%;
    left: 15%;
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: #fff;
    border-width: 7px;
}

.header li.rtl.has-dropdown>ul::before {
    left: unset;
    right: 15% !important;
}

.header li.has-dropdown>ul li {
    display: block;
    height: auto;
    padding: 0;
}

.header li.has-dropdown>ul li>a {
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #ededed;
    display: block;
    padding: 15px 20px;
    line-height: 1;
}

.header li.has-dropdown>ul li>a.dropdown-title {
    background: #eaeaea;
    color: #000;
    border-radius: 3px 3px 0 0;
    opacity: 1;
    cursor: default;
}

.header li.has-dropdown>ul li:hover>a.dropdown-title {
    background: #eaeaea;
    color: #000 !important;
    padding-left: 20px;
}

.header li.has-dropdown>ul li:first-child a:hover {
    border-radius: 3px 3px 0 0;
}

.header li.has-dropdown>ul li:last-child a {
    border-bottom: none;
}

.header li.has-dropdown>ul li:last-child a:hover {
    border-radius: 3px;
}

.header li.has-dropdown>ul li:hover>a {
    background-color: #f9f9f9;
    color: #1491f6;
    padding-left: 25px;
}

.header li.clone {
    display: none;
}

/* Logo */
.navbar-brand {
    background: url('../img/logo/logo-white.svg') no-repeat;
    margin-right: 15px;
    width: 45px;
    height: 45px;
}

.header.sticky .navbar-brand {
    background-image: url('../img/logo/logo.svg');
}

/* Main Navigation */
.header ul.navbar-nav>li {
    margin-top: 10px;
    padding: 0 10px 10px;
}

/* Urgent Section */
.header-icon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 5px;
}

.header-icon>li {
    min-width: 25px;
    margin-right: 8px;
    min-height: 25px;
}

.header-icon>li:last-child {
    margin-right: 0;
}

.header-icon>li>a>i {
    font-size: 20px;
    position: absolute;
    padding: 0;
}

.header-icon>li>a>span.cart-quantity {
    font-size: 11px;
    width: 15px;
    height: 15px;
    display: block;
    background-color: #1491f6;
    color: #fff;
    text-align: center;
    line-height: 17px !important;
    border-radius: 50%;
    position: relative;
    top: 10px;
    left: 10px;
}

.header-icon>li>a>span.username {
    padding-left: 25px;
}

.header-icon>li>.btn {
    border-radius: 45px;
    height: 45px;
    padding: 10px 0;
    width: 100px;
    transition: all .25s ease-in-out;
}

.header.sticky .header-icon>li>.btn {
    color: #fff;
}

.header-icon>li>.btn:hover {
    opacity: .85;
}

/*=============================================
    Navigation Footer
==============================================*/
.footer {
    background: #171717;
    color: #b7b9bb;
    padding: 60px 0 35px;
}

.footer .logo {
    width: 70px;
    margin: 20px 10px 20px 0;
}

.footer h5 {
    color: #fff;
    margin: 25px 0;
    font-size: 18px;
}

.footer ul>li>a {
    position: relative;
    color: #fff;
    opacity: 0.7;
}

.footer ul>li>a:hover {
    color: #1491f6;
    opacity: 1;
}

.footer ul.links>li {
    transition: all .3s ease-in-out;
}

.footer ul.links>li>a:hover {
    margin-left: 3px;
}

.footer ul.links>li>a:after {
    font-family: 'Font Awesome 5 Pro';
    content: "\f061";
    position: absolute;
    margin-left: 5px;
    font-weight: 600;
    font-size: 10px;
    opacity: 0;
    transition: all 0.5s ease;
}

.footer ul.links>li>a:hover:after {
    opacity: 1;
    color: #1491f6;
}

.footer ul.contacts {
    font-size: 13px;
}

.footer ul.contacts>li>a>i {
    margin-right: 5px;
}

.footer ul.socials>li {
    display: inline-block;
}

.footer ul.socials>li>a {
    display: inline-block;
    color: #171717;
    opacity: 0.5;
    margin-right: 5px;
    font-size: 16px;
    border-radius: 5px;
    text-align: center;
    background: #fff;
    width: 35px;
    height: 35px;
    line-height: 35px;
}

.footer ul.socials>li>a:hover {
    opacity: 1;
}

/* Divider */
.footer hr {
    border: solid 1px rgba(255, 255, 255, 0.1);
    margin: 75px 0 35px;
}

/* Google Play Badge */
.footer .google-play-badge {
    width: 180px;
    margin-top: 1rem;
}

/* Currency */
.footer .currency {
    display: inline-block;
    line-height: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    position: relative;
    margin-right: 10px;
}

.footer .currency:after {
    color: #fff;
    position: absolute;
    right: 10px;
    top: 0;
    font-family: 'Font Awesome 5 Pro';
    content: "\f078";
    font-weight: 900;
    font-size: 10px;
    pointer-events: none;
}

.footer .currency select {
    background: none;
    border: 0;
    border-radius: 3px;
    color: #ccc;
    font-size: 12px;
    font-weight: 500;
    -moz-appearance: window;
    -webkit-appearance: none;
    cursor: pointer;
}

.footer .currency select:focus,
.footer .currency select:hover {
    color: #1491f6;
    outline: none;
    box-shadow: none;
}

/* Copyright */
.footer ul.copyright {
    color: #555;
    font-size: 12px;
    text-align: right;
    line-height: 12px;
}

.footer ul.copyright>li {
    display: inline-block;
    margin-right: 15px;
}

.footer ul.copyright>li:first-child {
    margin-right: 20px;
}

.footer ul.copyright>li:last-child:after {
    content: '';
}

.footer ul.copyright>li span {
    color: #fff;
    opacity: 0.7;
}

.footer ul.copyright>li>a {
    color: #fff;
    opacity: 0.7;
    transition: all .25s ease-in-out;
}

.footer ul.copyright>li>a:hover {
    opacity: 1;
}

.footer ul.copyright>li:after {
    content: "|";
    font-weight: 300;
    position: relative;
    left: 10px;
}

.footer small.credit {
    float: right;
    margin-right: 15px;
    color: #5d5d5d;
}

.footer small.credit>a:hover {
    color: #1491f6;
}

/*=============================================
    Hero Banner
==============================================*/
.hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: url('../img/covers/hero.webp') center no-repeat;
    background-size: cover;
    animation: pop-in 5s .25s cubic-bezier(0, 0.5, 0, 1) forwards;
}

.hero .wrapper {
    padding: 165px 0 65px;
    background: rgba(0, 0, 0, .5);
    /* background: rgba(0, 0, 0, .5) url('../img/ui/overlay.png'); */
    display: flex;
    align-items: center;
    position: relative;
    min-height: 450px;
}

.hero h1 {
    color: #fff;
}

.hero h3 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 42px;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
}

.hero p {
    margin-bottom: 60px;
    font-size: 21px;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
}

/* Video Hero */
.hero.video .wrapper {
    text-align: left;
    height: 800px;
    z-index: 10;
}

.hero.video::before {
    content: none;
}

.hero.video .bg-video video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

/* Page Title */
.hero.page-title .wrapper {
    min-height: 450px;
}

.hero.page-title .wrapper h1 {
    color: #fff;
    font-size: 42px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 30px;
    max-width: 100vw;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero.page-title .wrapper h1::before {
    width: 80px;
    height: 4px;
    margin: auto;
    background-color: #1491f6;
    display: block;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    opacity: 1;
    content: '';
}

.hero.page-title .wrapper h1::after {
    content: '';
    background: url('../img/ui/mascot/1.svg') no-repeat;
    height: 100px;
    width: 65px;
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
}

/* Wizard */
.hero.wizard-title .container {
    margin-top: auto;
}

.hero.wizard-title .wizard {
    white-space: nowrap;
}

.hero.wizard-title .wizard>.wizard-step {
    position: relative;
    display: inline-block;
    margin-left: -5px;
    width: 33.33%;
}

.hero.wizard-title .wizard>.wizard-step>.dot {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 10px;
    left: calc(50% - 30px);
    border-radius: 50%;
    background-color: #1491f6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero.wizard-title .wizard>.wizard-step>.dot>i {
    color: #d5d5d5;
    font-size: 24px;
    z-index: 20;
}

.hero.wizard-title .wizard>.wizard-step.active>.dot>i {
    color: #1491f6;
}

.hero.wizard-title .wizard>.wizard-step>.dot:after {
    content: '';
    border-radius: 50%;
    height: 50px;
    width: 50px;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    background: #fff;
}

.hero.wizard-title .wizard>.wizard-step>.progress {
    position: relative;
    height: 5px;
    margin: 40px 0;
    border-radius: 0;
    opacity: .75;
}

.hero.wizard-title .wizard>.wizard-step.active>.progress {
    background: #1491f6;
    margin: 40px 0;
    opacity: 1;
}

.hero.wizard-title .wizard>.wizard-step:first-child>.progress {
    left: 50%;
    width: 50%;
}

.hero.wizard-title .wizard>.wizard-step:last-child>.progress {
    width: 50%;
}

.hero.wizard-title .wizard>.wizard-step>.title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.hero.wizard-title .wizard>.wizard-step>.description {
    display: block;
    font-size: 12px;
    line-height: 16px;
    color: #d0d0d0;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px;
}

/*=============================================
    Menu Section
==============================================*/
.menu {
    padding: 15px 0;
    background: #fff;
    border-bottom: 1px solid #ededed;
}

.menu.sticky {
    left: 0;
    top: 0;
    width: 100%;
    position: fixed;
    z-index: 140;
}

.menu.menu-listing ul.menu-bar>li:first-child {
    float: left;
}

.menu.menu-listing ul.menu-bar>li:nth-child(2) {
    float: right;
}

/* Sort Option */
.menu.menu-listing .sort-option {
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    width: 222px;
    margin: auto;
}

.menu.menu-listing .sort-option input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.menu.menu-listing .sort-option input:checked+label {
    box-shadow: none;
    color: rgba(0, 0, 0, 0.9);
}

.menu.menu-listing .sort-option label {
    display: inline-block;
    min-width: 70px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    text-shadow: none;
    padding: 10px 12px 8px 12px;
    line-height: 1;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease-in-out;
    margin: 0;
}

.menu.menu-listing .sort-option label:first-of-type {
    border-left: 0;
}

.menu.menu-listing .sort-option label:last-of-type {
    border-right: 0;
}

.menu.menu-listing .sort-option label:hover {
    cursor: pointer;
    color: #1491f6;
}

/* Map Collapse */
.menu.menu-listing .map-collapse {
    border-radius: 3px;
    padding: 3px 12px;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-weight: 600;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    margin: auto;
}

.menu.menu-listing .map-collapse:hover {
    color: #1491f6;
}

.menu.menu-listing .map-collapse:before {
    font-family: 'Font Awesome 5 Pro';
    content: '\f3c5';
    margin-right: 10px;
}

/* Menu Details */
.menu.menu-detail ul>li {
    display: inline-block;
    margin-right: 20px;
    font-weight: 500;
    font-size: 16px;
}

.menu.menu-detail ul>li>a {
    color: rgba(0, 0, 0, 0.5);
}

.menu.menu-detail ul>li>a:hover {
    color: #1491f6;
}

.menu.menu-detail ul>li>a.active {
    color: rgba(0, 0, 0, 0.9);
}

@media (max-width: 575px) {
    .menu.menu-detail ul>li:last-child {
        display: inline-block;
    }
}

/*=============================================
    Sidebar
==============================================*/

/* Search */
.search+.btn {
    margin-top: 15px;
    margin-bottom: 25px;
}

/* Filters*/
.filters {
    background-color: #fff;
    padding: 20px 20px 15px 20px;
    margin-bottom: 25px;
    border: 1px solid #ededed;
}

.filters>a {
    display: block;
    color: #333;
    position: relative;
    font-size: 16px;
    font-weight: 600;
}

.filters>a:before {
    font-family: 'Font Awesome 5 Pro';
    content: "\f1de";
    font-size: 20px;
    color: #999;
    position: absolute;
    right: 0;
    top: 0;
    line-height: 24px;
}

.filters .filters-type h6 {
    border-top: 1px solid #ededed;
    margin: 15px 0;
    padding: 15px 0 0 0;
    font-size: 13px;
}

.filters .filters-type ul {
    margin-bottom: 15px;
}

.filters .filters-type input[type="checkbox"] {
    margin-right: 10px;
}

.filters .filters-type small {
    float: right;
    color: #fff;
    background: #1491f6;
    padding: 0px 5px;
    line-height: 20px;
    border-radius: 5px;
    min-width: 24px;
    min-height: 20px;
    text-align: center;
}

/* Summary */
.card.summary {
    margin-bottom: 25px;
}

.card.summary .card-header {
    background: #1491f6;
    color: #fff;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 18px;
}

.card.summary label {
    font-size: 12px;
    margin-bottom: 0;
    opacity: .75;
}

.card.summary .highlight {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 5px;
}

.card.summary .card-body .highlight {
    font-size: 18px;
    font-weight: 600;
    text-align: right;
}

.card.summary .card-footer .highlight {
    font-size: 26px;
    font-weight: 700;
}

/*=============================================
    Contents
==============================================*/

/* Empty Listing */
.empty-list {
    width: 100%;
    text-align: center;
}

.empty-list.single-line {
    text-align: left;
    margin-bottom: 50px;
}

.empty-list.single-line::before {
    content: '\f059';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    margin: 0 10px;
}

.empty-list.single-line h6 {
    display: inline-block;
}

.empty-list i {
    background: #e1e1e1;
    color: #fff;
    width: 150px;
    height: 150px;
    font-size: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
}

.empty-list h6,
.empty-list p {
    margin: 0;
    color: #555;
}

/* Listing Item */
.listing-item {
    background-color: #fff;
    margin: 0 15px 30px;
    overflow: hidden;
    outline: none;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.listing-item figure {
    margin: 0;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.listing .grid-view .listing-item figure {
    height: 210px;
}

.listing-item figure small {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    right: 20px;
    top: 20px;
    text-transform: uppercase;
    color: #ccc;
    border-radius: 5px;
    padding: 7px 10px;
    line-height: 1;
    z-index: 100;
}

.listing-item figure .transportation {
    position: absolute;
    background-color: #fff;
    left: 20px;
    top: 20px;
    display: grid;
    grid-gap: 6px;
    grid-template-columns: 14px 14px 14px;
    color: #007bff;
    border-radius: 5px;
    padding: 7px 10px;
    line-height: 1;
    z-index: 100;
}

.listing-item figure .link {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -12px;
    transform: translateY(10px);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    transition: all 0.6s;
    z-index: 2;
}

.listing-item figure .link span {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    display: inline-block;
    color: #222;
    font-size: 12px;
    padding: 5px 10px;
}

.listing-item figure:hover .link {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.listing-item figure a img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    backface-visibility: hidden;
    width: 100%;
    transition: all .25s ease-in-out;
    height: 100%;
}

.listing-item figure a:hover img {
    transform: translate(-50%, -50%) scale(1);
}

.listing-item .wrapper {
    padding: 0;
    height: 180px;
    border: 25px solid transparent;
    overflow: hidden;
}

.listing-item .wrapper h3 {
    font-size: 20px;
    margin-top: 0;
}

.listing-item .wrapper p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin: 0;
}

.listing-item .wrapper .price {
    display: block;
    font-weight: 500;
    margin-top: 30px;
    color: #999;
}

.listing-item .wrapper .price strong {
    color: #32a067;
}

.listing-item small {
    text-transform: uppercase;
    color: #999;
    font-weight: 600;
}

.listing-item ul {
    padding: 20px;
    border-top: 1px solid #ededed;
    margin-bottom: 0;
}

.listing-item ul li {
    display: inline-block;
    margin: 0 5px;
}

.listing-item ul li .score {
    margin-top: -10px;
}

.listing-item ul li:first-child {
    font-size: .75rem;
}

.listing-item ul li:last-child {
    margin-right: 0;
    float: right;
}

.listing-item .badge-icon {
    height: 23px;
    width: 23px;
    margin: 0 -1px;
    font-size: 13px;
    border: solid 1px #eee;
    background: #f5f5f5;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.score strong {
    background-color: #1491f6;
    color: #fff;
    line-height: 1;
    border-radius: 10px 10px 10px 0;
    padding: 10px;
    display: inline-block;
}

.score span {
    display: inline-block;
    position: relative;
    top: 7px;
    margin-right: 10px;
    font-size: 12px;
    text-align: right;
    line-height: 1.1;
    font-weight: 500;
}

.score span em {
    display: block;
    font-weight: normal;
    font-size: 11px;
}

.star i {
    margin-right: -3px;
    color: #FFC107;
}

/* Listing Box */
.listing-thumb {
    display: block;
    margin-bottom: 25px;
    border-radius: 5px;
    overflow: hidden;
}

.listing-thumb .wrapper {
    position: absolute;
    width: 100%;
    z-index: 9;
    display: block;
    padding: 25px 20px 10px;
    color: #fff;
    left: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, #000);
    box-sizing: border-box;
}

.listing-thumb .wrapper .star i {
    color: #fff;
    font-size: 9px;
}

.listing-thumb .wrapper h3 {
    color: #fff;
    font-size: 18px;
}

.listing-thumb .wrapper p {
    color: #fff;
    margin-bottom: 0;
    font-size: 15px;
}

.listing-thumb figure {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 0;
}

.listing-thumb figure .score {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.listing-thumb figure small {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    left: 20px;
    top: 22px;
    text-transform: uppercase;
    color: #ccc;
    font-weight: 600;
    border-radius: 3px;
    padding: 7px 10px 4px 10px;
    line-height: 1;
    z-index: 10;
}

.listing-thumb figure img {
    width: 100%;
    height: 180px;
    min-height: 180px;
    transition: all .25s ease-in-out;
    transform: scale(1.1);
}

.listing-thumb:hover figure img {
    transform: scale(1);
}

/* Google Map Section */
.map-wrapper {
    height: 100%;
}

.g-map {
    width: 100%;
    height: 100%;
    min-height: 520px;
    background: #f9f9f9;
    border: solid 1px #ebebeb;
    border-radius: 5px;
}

.map-title {
    font-family: 'Poppins', Helvetica, sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
}

.infoBox {
    padding-right: 50px;
}

.infoBox>img {
    position: absolute !important;
    right: 60px !important;
    top: 10px !important;
    z-index: 100;
    width: 20px;
    height: 20px;
    display: block;
    cursor: pointer;
}

.infobox-wrapper {
    width: 240px;
    height: 270px;
    border-radius: 5px;
    background: #fff;
    z-index: 10;
    font-family: "Poppins", Helvetica, sans-serif;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .12);
}

.infobox-wrapper>img {
    border-radius: 5px 5px 0 0;
    width: 100%;
    height: 140px;
}

.infobox-wrapper h3 {
    font-size: 16px;
    line-height: 1.1;
    margin-bottom: 3px;
    width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.infobox-wrapper em {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
    display: block;
}

.infobox-wrapper span {
    display: block;
    padding: 20px 20px 0 20px;
    font-size: 13px;
    line-height: 1.2;
    color: #fff;
    position: relative;
}

.infobox-wrapper span strong {
    display: block;
    font-weight: 500;
}

.infobox-wrapper:after {
    right: 100%;
    top: 56%;
    border: solid transparent;
    content: ' ';
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-right-color: white;
    border-width: 12px;
    margin-top: -12px;
}

.infobox-wrapper .btn-detail {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #dedede;
}

.infobox-wrapper .btn-direction,
.infobox-wrapper .btn-contact {
    display: block;
    color: #1491f6;
    font-size: 13px;
    margin-bottom: 10px;
}

.infobox-wrapper .btn-direction i,
.infobox-wrapper .btn-contact i {
    margin-right: 10px;
}

.infobox-wrapper .rating {
    margin: -44px 0 0 -20px;
    float: left;
    background-color: #1491f6;
    padding: 5px 8px;
    font-size: 12px;
}

.preview {
    width: 100%;
    height: 180px;
}

/* Information Section */
.information {
    background-color: #f8f8f8;
    padding: 70px 0 !important;
}

.information .slick-arrow {
    width: 35px;
    height: 35px;
    display: inline-flex;
    background: rgba(0, 0, 0, 0.2);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
}

.information .slick-arrow:hover {
    background: #1491f6;
}

.information .gallery-carousel {
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.information .gallery-carousel::before,
.information .gallery-carousel::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    transition: opacity .25s;
    opacity: 0;
    pointer-events: none;
}

.information .gallery-carousel::before {
    content: '';
    background: rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
}

.information .gallery-carousel::after {
    content: '\f00e';
    font-family: 'Font Awesome 5 Pro';
    color: #c6c6c6;
    font-weight: 900;
    border-radius: 50%;
    background: #fff;
    font-size: 35px;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
}

.information .gallery-carousel:hover::before,
.information .gallery-carousel:hover::after {
    opacity: 1;
}

.information .gallery-carousel .slick-slide {
    outline: none;
}

.information .gallery-carousel .slick-slide img {
    height: 350px;
    margin: auto;
    width: 100%;
}

.information .gallery-thumbnail {
    display: flex;
    align-items: center;
}

.information .gallery-thumbnail .slick-list {
    width: calc(100% - 100px);
    display: inline-block;
    margin: 0 15px;
    border-radius: 5px;
}

.information .gallery-thumbnail .slick-slide {
    position: relative;
    outline: none;
    cursor: pointer;
}

.information .gallery-thumbnail img {
    height: 30px;
    width: 100%;
}

.information .info-wrapper {
    display: flex;
    flex-direction: column;
}

.information .info {
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 5px;
    background: #fff;
    flex: 1;
}

.information .info h2 {
    margin-bottom: 5px;
}

.information .info h6 {
    color: #1491f6;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.information .info-wrapper .dropup .dropdown-toggle::after {
    display: none;
}

.information .info-wrapper .dropdown-menu {
    top: -10px !important;
    width: 450px;
    padding: 1rem;
}

.information .info-wrapper .dropdown-menu::after {
    content: '';
    position: absolute;
    background: #fff;
    transform: rotate(45deg);
    top: 94%;
    right: 5%;
    width: 15px;
    height: 15px;
    border-top: 0;
    border-left: 0;
    border-bottom: 1px solid #ced4da;
    border-right: 1px solid #ced4da;
}

.information .info-wrapper .dropdown-menu .input-group input {
    border: 1px solid #ced4da !important;
}

/* Contact Section*/
table.contact td:first-child {
    width: 30px;
    vertical-align: top;
    opacity: .5;
}

/* Selection Section */
.selection-item {
    overflow: hidden;
    margin-bottom: 20px;
    padding: 0;
}

.selection-item img {
    width: 100%;
    height: 200px;
}

.selection-item .info {
    padding: 24px 0 5px;
    min-height: 200px;
}

.selection-item .info .attributes li {
    display: inline-block;
    margin-bottom: 10px;
}

.selection-item .info .attributes li:not(:last-child) {
    border-right: solid 1px #e4e4e4;
    padding-right: 13px;
    margin-right: 10px;
}

.selection-item .info .attributes i {
    color: #fff;
    background: #1491f6;
    width: 30px;
    padding: 5px 0;
    font-size: 10px;
    text-align: center;
    margin-right: 5px;
    border-radius: 15px;
}

.selection-item .info h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    font-size: 20px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.selection-item .info p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.selection-item .info a[data-toggle] {
    color: #1491f6;
    margin-bottom: 15px;
    padding: 0;
}

.selection-item .info .amenities li {
    display: inline-block;
    background: #ececec;
    color: #555555;
    padding: 0 10px;
    border-radius: 5px;
}

.selection-item .info .amenities li:not(:last-child) {
    margin: 0 5px 8px 0;
}

.selection-item .info .amenities li:last-child {
    margin-bottom: 20px;
}

.selection-item .info .amenities li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    margin-right: 5px;
    opacity: .25;
}

.selection-item .current {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.selection-item .current>span.price {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.pricing .timeline {
    margin-bottom: 10px;
    white-space: nowrap;
}

.pricing .timeline>.timeline-step {
    position: relative;
    display: inline-block;
    margin-left: -5px;
    width: 130px;
}

.pricing .timeline>.timeline-step>.dot {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 10px;
    left: calc(50% - 10px);
    border-radius: 50%;
    background-color: #1491f6;
}

.pricing .timeline>.timeline-step>.dot:after {
    content: '';
    border-radius: 50%;
    height: 10px;
    width: 10px;
    position: absolute;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    background: #fff;
}

.pricing .timeline>.timeline-step>.progress {
    position: relative;
    height: 2px;
    margin: 20px 0;
    border-radius: 0;
}

.pricing .timeline>.timeline-step>.price {
    display: block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}

.pricing .timeline>.timeline-step>.date {
    display: block;
    font-size: 12px;
    line-height: 12px;
    color: #a5a5a5;
    text-align: center;
}

.pricing .timeline .timeline-error {
    color: red;
    display: block;
    margin-bottom: 10px;
}

.pricing .timeline .timeline-error::before {
    content: '\f071';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    margin: 0 10px;
}

/* Review Section */
.reviews .review-summary {
    text-align: center;
    background-color: #1491f6;
    color: #fff;
    padding: 20px 10px;
    border-radius: 15px 15px 15px 0;
    line-height: 14px;
}

.reviews .review-summary strong {
    font-size: 42px;
    display: block;
    line-height: 42px;
}

.reviews .review-summary em {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    display: block;
    margin-bottom: 15px;
}

.reviews .review-ratings div[class^=col-] {
    padding: 0 10px;
}

.reviews .review-ratings .progress {
    margin-top: 5px;
}

.reviews .review {
    display: flex;
    margin-bottom: 25px;
}

.reviews .review .avatar {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 20px;
    border: 1px solid #ededed;
}

.reviews .review .content {
    flex: 1;
    background: #fff;
    border: 1px solid #ededed;
    padding: 15px 20px;
    border-radius: 10px;
}

.reviews .review .content .rating .fas {
    color: #ccc;
}

.reviews .review .content .rating .fas.highlight {
    color: #ffc107;
}

.reviews .review .content p {
    margin: 10px 0 0;
}

/*=============================================
    Orders
==============================================*/
.orders {
    margin-bottom: 30px;
}

.orders .nav-tabs {
    margin-bottom: 15px;
}

.orders .nav-tabs .nav-link {
    text-transform: uppercase;
    border: none;
    background: #a0a0a0;
    color: #fff;
    margin-right: 3px;
    font-weight: 500;
}

.orders .nav-tabs .nav-link.active {
    background: #1491f6;
}

.orders .nav-tabs .nav-link small {
    color: #a0a0a0;
    background: #fff;
    padding: 0px 7px;
    border-radius: 5px;
    margin-left: 5px;
}

.orders .nav-tabs .nav-link.active small {
    color: #1491f6;
}

.orders .order-item .card-body {
    padding: 0;
    overflow: hidden;
    margin-bottom: 15px;
}

.orders .order-item .thumbnail {
    width: 100%;
    height: 130px;
}

.orders .order-item .info {
    display: flex;
    height: 100%;
    justify-content: center;
    flex-direction: column;
    line-height: 20px;
}

.orders .order-item .info h5 {
    margin-bottom: 0;
    color: #1491f6;
}

.orders .order-item .action {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.orders .order-item .action .btn {
    margin: 0px 3px;
    width: 50px;
    font-size: 14px;
    padding: 5px 10px;
    background: #f7f7f7;
    color: #a6a6a6;
    border: solid 1px #e8e8e8;
}

/*=============================================
    Modal
==============================================*/

.modal#cart .modal-header {
    overflow: hidden;
}

.modal#cart .nav .nav-item {
    flex: 1 1 0px;
    justify-content: center;
}

.modal#cart .nav .nav-item .nav-link {
    align-items: center;
    color: #666;
    display: flex;
    flex-direction: column;
    font-size: .8rem;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
}

.modal#cart .nav .nav-item:not(:first-child) .nav-link::before {
    /* background: #eee; */
    border-top: dotted 4px #eee;
    content: '';
    height: 3px;
    position: absolute;
    right: 50%;
    top: 25px;
    width: 100%;
}

.modal#cart .nav .nav-item:not(:first-child) .nav-link.active::before,
.modal#cart .nav .nav-item:not(:first-child) .nav-link.highlight::before {
    /* background: #1491f6; */
    border-top-color: #1491f6;
}

.modal#cart .nav .nav-item .nav-link i {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    border: solid 2px #eee;
    color: #ccc;
    display: flex;
    height: 35px;
    justify-content: center;
    margin-bottom: .25rem;
    width: 35px;
    z-index: 10;
}

.modal#cart .nav .nav-item .nav-link.unlocked i {
    border-color: #ccc;
    color: #ccc;
}

.modal#cart .nav .nav-item .nav-link.disabled {
    pointer-events: all;
}

.modal#cart .nav .nav-item .nav-link.disabled i {
    background: #666;
}

.modal#cart .nav .nav-item .nav-link.highlight i,
.modal#cart .nav .nav-item .nav-link.active i {
    border-color: #1491f6;
    color: #1491f6;
}

.modal#cart .tab-pane img {
    height: 80px;
    width: 100%;
    border-radius: 5px;
}

.modal#cart .tab-pane p {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    font-size: 11px;
    line-height: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal#cart .tab-pane .chart {
    height: 200px;
    margin: auto;
    margin-bottom: 2rem;
    overflow: hidden;
    width: 380px;
}
