
/*#region Colors */

:root {
    --black: rgba(0,0,0,1);
    --grey: rgba(50,50,50,1);
    --light: rgba(247,247,247,1);
    --red: rgba(218,34,95,1);
    --blue: rgba(0,173,242,1);
    --white: rgba(255,255,255,1);
}

/*#endregion */

* {
    margin: 0px;
    padding: 0px;
}

html {
  scroll-behavior: smooth;
}

body {
    background: #FFF;
    font-weight: normal;
    position: relative;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    overflow-x:hidden;
}

.bg-blue {
    background: #00AEEF;
}

.bg-orange {
    background: #FEB53E;
}

.bg-red {
    background:#DA225F;
}


/*=======================================================
      WRAPPER
========================================================*/
#wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}
/*=======================================================
      HEADINGS
========================================================*/
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #000000;
}
h1 {
    font-size: 48px;
    font-family: 'Lobster Two', cursive;
    font-weight: 800;
}
h2 {
    font-size: 36px;
    font-weight:300;
}
h3 {
    font-size: 30px;
    font-weight: 800;
}
h4 {
    font-size: 22px;
    font-weight: 800;
}
h5 {
    font-size: 20px;
}
h6 {
    font-size: 16px;
}
p {
    font-weight: 500;
    color: var(--grey);
    font-size: 17px;
    line-height: 24px;
    text-rendering: optimizeLegibility;
}

p.larger {
    font-size:1.25em;
}

button {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
a {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-decoration: none !important;
}
img:not(#thei) {
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -ms-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    display: inline-block !important;
}

.profilephoto img, .profilePanel img {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

ul {
    margin-bottom: 0px;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
    color: #141414;
}
img {
    max-width: 100%;
}
.heading-block {
    margin-bottom: 30px;
}
.heading-block h3 {
    color: #000;
    font-weight: 700;
}
.p-t-b-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}
/*=======================================================
      Position Center Center 
========================================================*/
.position-center-center {
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
/*=======================================================
      BTN STYLE
========================================================*/
.btn {
    border: none;
    color: #fff;
    padding: 16px 30px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    background: #DA225F;
    position: relative;
    z-index: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn:hover {
    background: #000;
    color: #fff;
}

.btn-outline {
    border: none;
    color: #000;
    padding: 10px 30px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 0px;
    background: #FFFFFF;
    position: relative;
    z-index: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border:1px solid #EAEAEA;
}

    .btn-outline:hover {
        border-radius: 0px;
        background: #F1F1F1;
        color: #000;
    }

section {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #fff;
    padding-bottom: 50px;
}
/*=======================================================
      Content
========================================================*/
#content {
    background: #fff;
    position: relative;
    z-index: 1;
}
.container {
    max-width: 1600px;
}
header .container, footer .container {
    max-width: 1640px;
}
/*=======================================================
      Header
========================================================*/
header {
    background: #fff;
    padding: 20px 0;

}
/*=======================================================
			Header
========================================================*/
header .container {
    max-width: 1640px;
}
.head-left {
    float: left;
    width: 79%;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.log-info {
    float: right;
    width: 21%;
    text-align: right;
}
.log-info .profile-login{
    margin:-5px 5px;
}

header .profile-login .avatar-sm {
    max-width: 36px;
    float: left;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    margin-top: 0px;
    display: inline-block;
    margin-right: 30px;
} 

header .profile-login .dropdown-menu .dropdown-item {
    font-size: 1rem;
}

header .profile-login .dropdown-menu{
    border: none;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.dropdown-menu.profile-menu {
    left: -60px;
}

header .dropdown-toggle::after{
    font-size: 10px;
}
header .profile-login{
    float: right;
}
header nav {
    display: flex;
    width: 100%;
    padding: 0px !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.profile-login .nav-link.dropdown-toggle p {
    display: inline-block;
}
.profile-login.out {
    margin: 10px;
}
header .user-btns {
    float: right;
}
header nav .logo {
    max-height: 195px;
    width:200px;
}
header nav .logo a {
    display: flex;
}
    header nav .logo a img {
        min-width: 120px;
        width: 100%;
    }

    header nav .logo.kbl a img {
        max-height:62px;
    }

header nav .menu-links {
    width: 50%;
    text-align: right;
}
header nav .nav-link {
    font-size: 18px;
    font-weight: 600;
}
header nav .menu-links a {
    font-size: 16px;
    font-weight: 500;
}
header .nav-link.dropdown-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-bar {
    margin-left: 50px;
    margin-right: 30px;
}
.search-bar button {
    position: absolute;
    right: 22px;
    top: 25px;
    border: none;
    background: #fff;
}
.search-bar form {
    position: relative;
}
.search-bar input {
    border: 2px solid #000;
    border-radius: 50px;
    height: 62px;
    min-width: 470px;
    padding: 0px 30px;
}

/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

/* clears the 'X' from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}


.log-btns {
    line-height: 30px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    background: #DA225F;
    display: inline-block;
    float: left;
    padding: 0 20px;
    border-radius: 50px;
    color: #fff !important;
}
.log-btns.log-in {
    background: #00AEEF;
    margin-left: 10px;
}
.log-btns:hover {
    background: #000;
}

.log-info .navbar-toggle {
    display: none;
}
.fr-mob{
    display: none;
}
.fr-dsk-hide{
}
.navbar-nav li:hover > ul.dropdown-menu {
    display: block;
}
.dropdown-submenu {
    position:relative;
}
.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top:-6px;
}
.dropdown-menu > li > a:after {
    text-decoration: underline;
    transform: rotate(-90deg);
    position: absolute;
    right: 10px;
    top: 15px;
}
.nav li{
    overflow: unset;
    margin-bottom: 5px;
}

li.dropdown.show {
    overflow: inherit;
}

.dropdown-item {
    font-size: 1rem;
}

header .nav.mobile-profile-login {
    display: none;
}

.profile-login .far.fa-heart {
    font-size: 22px;
    margin-top: 6px;
    margin-right: 20px;
}

.profile-login .fas.fa-shopping-cart, fas.fa-bell {
    font-size: 22px;
    margin-top: 12px;
    margin-right: 20px;
}

.profile-login.out .fas.fa-shopping-cart {
    margin-top: 0px;
}

.label-avatar {
    width: 23px;
    height: 23px;
    line-height: 23px;
    top: -34px;
    right: -15px;
    position: relative;
    text-align: center;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 100%;
    overflow: hidden;
    background-color: #DA225F;
}


/*=======================================================
      Hero Img
========================================================*/
.hero-header {
    background: url("../images/home-hero-4.jpg") center center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    max-width: 1740px;
    margin: 0 auto;
    border-radius: 6px;
    overflow: hidden;
    z-index: 10;
    display: flex;
    align-self: center;
}

@media(min-width:0px){
    .hero-header {
        background: none;
    }
    .container-fluid.main {
        position: absolute;
        top: 0px;
        display:flex;
        height:100%;
    }
}

.hero-header:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.hero-header .icon-hero {
    font-size: 30px;
    margin-bottom: 30px;
    color: #fff;
}
.hero-header h5 {
    letter-spacing: 5px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom:0px;
}
.hero-header .search-bar {
    margin: 0px auto;
    max-width: 770px;
    margin-top: 30px;
}
.hero-header .search-bar input {
    border: none;
}
.hero-header h1 {
    color: #fff;
    font-weight: 500;
    font-size: 72px;
    margin: 0 0 10px;
}
.hero-header p {
    font-size: 20px;
    color: #fff;
    margin-top: 30px;
    font-weight: 600;
    line-height: 32px;
}
.hero-header .container {
    max-width: 910px;
}
.hero-header .position-center-center {
    width: 100%;
    text-align: center;
}
/*=======================================================
      Sub Header
========================================================*/
.sub-header {
    padding-top: 50px;
}
section.sub-header.map {
    padding-bottom:0px;
}

.sub-header .breadcrumb {
    background: none;
    padding: 0px;
    margin-bottom: 20px;
}
.sub-header .breadcrumb-item a, .breadcrumb-item+.breadcrumb-item::before {
    color: #BBBBBB;
}
.sub-header .breadcrumb-item {
    color: #000000;
}
.sub-header .sku-no {
    font-size: 14px;
    color: #BBBBBB;
    display: inline-block;
    margin-left: 20px;
}

.sub-header p {
    font-size:1em;
    color:var(--black);
}

    .sub-header.activity-header p {
        font-size: 1.3em;
    }

/*=======================================================
      Destination Block
========================================================*/
.destination-block {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 30px;
}
.destination-block a {
    display: inline-block;
    width: 100%;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    background: #DA225F;
}
.destination-block a:hover img {
    opacity: 0.6;
    transform: scale(1.05);
}
.destination-block h2 {
    color: #fff;
    font-weight: 600;
}

    .destination-block a:before {
        content: '\A';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0,0,0,0.2);
    }

.destination-block img{
    width:100%;
}
/*=======================================================
      Destination Block
========================================================*/
.exp-block .img-block {
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}
    .exp-block .img-block a {
        display: block;
        position: relative;
        width: 100%;
        aspect-ratio: 2 / 1;
        overflow: hidden;
    }
.exp-block .img-block a img{
    border-radius: 6px;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.exp-block {
    margin-bottom: 40px;
}
.exp-block a {
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    width: 100%;
    margin-bottom: 5px;
}
.exp-block .img-block a {
    display: inline-block;
    width: 100%;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    background: #DA225F;
}
.exp-block .img-block a:hover img {
    opacity: 0.6;
    transform: scale(1.05);
}
.exp-block .top-info {
    display: inline-block;
    width: 100%;
}
.exp-block .price {
    font-size: 14px;
    font-weight: 700;
    color: var(--grey);
}
.exp-block .rating i {
    margin: 0 1px;
}
.exp-block .rating {
    font-size: 8px;
    float: right;
    color: #FEB53E;
    margin-top: 5px;
}
.exp-block span {
    color: #999999;
}
.exp-block .tags-item {
    position: absolute;
    top: 10px;
    left: 25px;
    background: #00C48C;
    z-index: 1;
    color: #fff;
    height: 20px;
    line-height: 20px;
    font-weight: 600;
    padding: 0px 10px;
    font-size: 10px;
}
.exp-block .tool-tips a, .exp-block .tool-tips label.circle  {
    background: #fff;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    color: #000;
    display: inline-block;
    cursor:pointer;
}
.exp-block .tool-tips {
    position: absolute;
    top: 10px;
    right: 25px;
    z-index: 9;
}
.exp-block .tool-tips span {
    position: absolute;
    left: -175px;
    top: 5px;
    text-align: center;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    background: #DA225F;
    padding: 0px 10px;
    line-height: 20px;
    height: 20px;
    opacity: 0;
    border-radius: 4px;
    width: 170px;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -ms-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    display: none;
}
.exp-block .tool-tips span:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 2.5px 0 2.5px 5px;
    border-color: transparent transparent transparent #da225f;
    position: absolute;
    right: -5px;
    top: 7px;
}
.exp-block .tool-tips a:hover span {
    opacity: 1;
    display: block;
}
.exp-block .tool-tips.mark-as-com{
    z-index: 8;
}
.exp-block .tool-tips.mark-star{
    z-index: 7;
}

.tool-tips.r-25{
    right:25px;
}
.tool-tips.r-60 {
    right: 60px;
}

.exp-list-block li a {
    display: inline-block;
    width: 100%;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    background: #DA225F;
}
.exp-list-block li a:hover {
}
.exp-list-block li a:hover img {
    opacity: 0.6;
    transform: scale(1.1);
}
.exp-list-block li .position-center-center {
    width: 100%;
    padding: 0 50px;
    text-align: center;
}
.exp-list-block li h4 {
    margin: 0px;
    font-weight: 700;
    color: #fff;
}
.show-on-mob{
    display: none;
}
/*=======================================================
      SIdebar Block
========================================================*/
.sidebar-block {
    margin-bottom: 30px;
    padding: 20px 15px;
    border: 1px solid #EEEEEE;
}
.sidebar-block .custom-checkbox {
    margin-bottom: 10px;
}
.sidebar-block .custom-checkbox label span {
    margin-left: 5px;
    display: inline-block;
}
.custom-control-label::before {
    height: 20px;
    width: 20px;
}
.custom-control {
    padding-left: 30px;
}
.custom-control-label::before, .custom-control-label::after {
    left: -30px;
}
.custom-control-label {
    line-height: 28px;
    width: 100%;
    cursor: pointer;
}
.custom-control-input:checked~.custom-control-label::before {
    background: #DA225F;
    border-color: #DA225F;
}
.custom-control-label::after {
    height: 20px;
    width: 20px;
}
.load-more {
    padding: 15px 50px;
    text-transform: none;
    min-width: 350px;
    margin: 50px 0;
}
.sidebar-block h6 {
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid #EEEEEE;
}
.filter-listbar {
    border-bottom: 1px solid#EEEEEE;
    margin-bottom: 30px;
    padding-bottom: 10px;
}
.filter-listbar p {
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 0px;
}
.filter-listbar hr {
    margin: 10px 0px;
    border-color: #EEEEEE;
}
.filter-listbar .dropdown-toggle::after {
    position: absolute;
    right: 10px;
    top: 18px;
}
.filter-listbar .filter-out p {
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #999999;
    display: inline-block;
}
.filter-listbar .filter-out span {
    border-radius: 50px;
    padding: 0px 10px;
    background: #EEEEEE;
    height: 22px;
    line-height: 22px;
    font-size: 10px;
    margin-left: 10px;
    display: inline-block;
}
.filter-listbar .filter-out a {
    float: right;
    margin-left: 5px;
}
.filter-listbar .dropdown a.nav-link {
    color: var(--grey);
    font-weight: 600;
    z-index: 9999;
    border: 1px solid #EEEEEE;
    border-radius: 4px;
    padding: 10px;
    width: 100%;
}
.filter-listbar .dropdown {
    float: right;
    font-weight: 600;
    min-width: 180px;
}
.filter-listbar .dropdown-menu a {
    padding: 5px 10px;
    font-weight: 600;
}
.filter-listbar .dropdown-menu {
    left: auto !important;
    right: 0px !important;
    min-width: 180px;
    border-radius: 0px;
    border: 1px solid #EEEEEE;
    margin-top: -1px;
}
.sidebar-filter .sidebar-block li {
    padding: 0px !important;
}
.sidebar-filter {
    /*margin-top: 50px;*/
}
.sidebar-block li {
    margin-bottom: 0px;
}

.sidebar-filter .nav-link {
    padding:0px;
}

.sidebar-filter .dropdown-toggle::after {
    float: right;
    margin-top: 8px;
    border-top: 0.5em solid;
    border-right: 0.4em solid transparent;
    border-bottom: 0;
    border-left: 0.4em solid transparent;
}

.sidebar-filter .dropdown-menu {
    border-radius:0px;
    border:1px solid rgba(0,0,0,0.07);
    width:100%;
}

.sidebar-filter .dropdown-item {
    font-size:0.9rem;
    font-weight:600;
}

/*=======================================================
      Apps
========================================================*/
.download-apps {
    margin: 40px 0px;
    padding: 0px;
}

.download-apps .apps-inside {
    background: #1b1b1b;
    border-radius: 6px;
    padding: 70px 40px;
}

.download-apps .apps-inside h3 {
    color: #fff;
}

.app-container {
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    background: #F7F7F7;
    border-radius: 6px;
    padding:40px;
}

    .app-container .app-intro {
        display: flex;
        width: 50%;
        min-width: 300px;
        padding:0px 30px 0px 0px;
    }

        .app-container .app-intro p {
            font-size: 1.075rem;
            line-height: 150%;
            width: calc(100% - 80px);
        }

    .app-container .app-buttons {
        display: flex;
        width: 50%;
        min-width: 300px;
    }

    .app-container .app-buttons a {
        display: flex;
        width: 50%;
        height:fit-content;
    }

        .app-container .app-buttons a img {
            margin-bottom: 10px;
            max-width: 260px;
            margin-right:5px;
            width:95%;
        }

@media(max-width:768px) {

    .app-container {
        padding: 30px 20px;
    }

    .app-container .app-intro {
        width: 100%;
        padding:0px;
    }

        .app-container .app-intro p {
            font-size: 1.025rem;
            width: 100%;
        }

    .app-container .app-buttons {
        width: 100%;
    }
}
    /*=======================================================
      Single Experience
========================================================*/

.single-exper {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0px;
    padding: 0px;
    width: 100%;
}

    .single-exper .activity-container {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        margin: 0px;
        padding: 0px;
        width: calc(100% - 30px);
        max-width: 1600px;
        gap: 30px;
    }

        .single-exper .activity-container .left {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            margin: 0px;
            padding: 0px;
            width: calc(71% - 30px);
            order: 1;
        }

        .single-exper .activity-container .right {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            margin: 0px;
            padding: 0px;
            width: calc(29%);
            order: 2;
        }

@media(max-width:1190px) {
    .single-exper .activity-container .left {
        width: calc(68% - 30px);
    }

    .single-exper .activity-container .right {
        width: calc(32%);
    }
}

@media(max-width:1090px) {
    .single-exper .activity-container .left {
        width: calc(64% - 30px);
    }

    .single-exper .activity-container .right {
        width: calc(36%);
    }
}

@media(max-width:990px) {
    .single-exper .activity-container {
        gap: 10px;
    }

        .single-exper .activity-container .left {
            width: 100%;
        }

        .single-exper .activity-container .right {
            width: 100%;
        }
}

        @media(max-width:890px){
            .single-exper .activity-container{
                flex-direction:column;
            }
            .single-exper .activity-container .left {
                order:2;
            }
            .single-exper .activity-container .right {
                order: 1;
            }
        }

    .single-exper h4 {
        color: #000000;
        font-size: 26px;
        font-weight: 800;
    }

    .single-exper .content-text h5 {
        margin-bottom: 30px;
        font-weight: 700;
    }

    .single-exper .bullet-list, .content-text ul {
        text-indent: 25px;
        padding-left: 20px;
        margin-bottom: 30px;
    }

        .single-exper .bullet-list li, .content-text li {
            list-style: disc;
            line-height: 24px;
            color: var(--grey);
            overflow: inherit;
            text-indent: 0px;
            padding-left: 0px;
            margin-left: 0px;
        }

    .single-exper .content-text p {
        margin-bottom: 25px;
        margin-top: 15px;
    }

    .single-exper hr {
        border-color: #B3B3B3;
        margin: 50px 0px;
    }

    .single-exper .tittle-mr {
        margin-top: 40px;
    }

    .single-exper .progress-bar {
        background: #FEB53E;
    }

    .single-exper .progress {
        width: 80%;
        margin: 0 10px;
        max-width: 210px;
    }

    .single-exper .pr-rating .btn {
        width: 100%;
        height: 50px;
        line-height: 50px;
        padding: 0px 20px;
        text-transform: none;
        margin-top: 15px;
    }

        .single-exper .pr-rating .btn i {
            margin-right: 10px;
        }

    .single-exper .pr-rating .review-stars {
        margin: 10px 0;
        text-align: right;
        margin-bottom: 20px;
    }

    .single-exper .pr-rating .social-icon {
        display: flex;
        margin-top: 40px;
    }

.single-exper .count {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width:100%;
    align-items: center;
    padding: 20px 30px 20px 100px;
    position: relative;
    margin-bottom: 20px;
}

    .single-exper .pr-rating .social-icon p {
        margin-right: 20px;
    }

    .single-exper .pr-rating .social-icon a {
        margin-left: 10px;
    }

    .single-exper .pr-rating .btn.btn-bk {
        background: #00ADF2;
        color: #FFF;
    }

        .single-exper .pr-rating .btn.btn-bk:hover {
            background: #000;
        }

    .single-exper .pr-rating .review-stars span {
        color: #BBBBBB;
        display: inline-block;
        margin-left: 5px;
        line-height: 20px;
    }

    .single-exper .pr-rating .price {
        font-weight: 200;
        font-size: 30px;
        margin: 0px;
    }

    .single-exper .pr-rating {
        padding: 30px;
        padding-bottom: 20px;
        box-shadow: 0 0 5px rgba(0,0,0,0.2);
        margin-bottom: 30px;
        width:100%;
    }

    .review-box h5 {
        color: #FFB76B;
        margin: 10px 0px;
    }

    .rating-summery ul li span {
        width: 50px;
    }

    .rating-summery ul li {
        display: flex;
        width: 100%;
        margin-bottom: 20px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .rating-summery .review-btn {
        background: #FEB53E;
        width: 100%;
        text-transform: none;
        margin-top: 10px;
    }

        .rating-summery .review-btn:hover {
            background: #333;
        }

    .review-box {
        border: 1px solid #EEEEEE;
        border-radius: 6px;
        text-align: center;
        color: #FFB76B;
        padding: 20px;
    }

    .single-exper .review-stars {
        color: #FEB53E;
    }

    .review-box p {
        margin-bottom: 0px;
    }

    .all-reviews .tittle-head {
        background: #F6F6F6;
        width: 100%;
        margin-bottom: 20px;
        display: inline-block;
        padding: 10px 20px;
    }

        .all-reviews .tittle-head h6 {
            float: left;
            line-height: 40px;
            font-size: 14px;
            margin: 0px;
        }

    .all-reviews .media small {
        margin-left: 10px;
    }

    .all-reviews .review-stars {
        display: inline-block;
    }

    .all-reviews .com-tittle {
        font-size: 16px;
        font-weight: 800;
        margin: 0px;
        display: inline-block;
        margin-left: 10px;
    }

    .map-freme {
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .all-reviews .filter-listbar .dropdown a.nav-link {
        background: #fff;
    }

    .all-reviews p {
        margin: 10px 0;
    }

    .all-reviews .tittle-head ul {
        float: right;
    }

    .all-reviews .align-self-start {
        width: 50px;
        border-radius: 50px;
    }

    .all-reviews .media {
        margin-bottom: 20px;
    }

        .all-reviews .media .review-imges {
            margin: 0 -5px;
            margin-bottom: 10px;
        }

            .all-reviews .media .review-imges li {
                width: 33.333333%;
                padding: 0 5px;
                margin-top: 10px;
            }

    .pagination .page-link {
        color: #BBBBBB;
        margin: 0 2px;
        font-weight: 700;
        background: #F6F6F6;
        border: none;
        border-radius: 4px;
    }

        .pagination .page-item.active .page-link, .pagination .page-link:hover {
            background-color: #000000;
            border-color: #000000;
        }

    .submit-rvw {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .submit-rvw .rating {
            border: none;
        }

            .submit-rvw .rating > input {
                display: none;
            }

            .submit-rvw .rating > label:before {
                margin: 5px;
                font-size: 2.10em;
                font-family: 'Font Awesome 5 Free';
                display: inline-block;
                content: "\f005";
            }

            .submit-rvw .rating > .half:before {
                content: "\f089";
                position: absolute;
            }

            .submit-rvw .rating > label {
                color: #BBBBBB;
                float: right;
            }

            .submit-rvw .rating > input:checked ~ label, /* show gold star when clicked */ 
            .submit-rvw .rating:not(:checked) > label:hover, /* hover current star */ 
            .submit-rvw .rating:not(:checked) > label:hover ~ label {
                color: #FEB53E;
            }
                /* hover previous stars in list */
                .submit-rvw .rating > input:checked + label:hover, /* hover current star when changing rating */ .submit-rvw .rating > input:checked ~ label:hover, .submit-rvw .rating > label:hover ~ input:checked ~ label, /* lighten current selection */ .submit-rvw .rating > input:checked ~ label:hover ~ label {
                    color: #FEB53E;
                }

        .submit-rvw form {
            width: 100%;
        }

    .slide-section .swiper-slide {
        max-width: 1600px;
        padding: 0 15px;
    }

    .pagi-slide {
        max-width: 1600px;
        margin: 0 auto;
        position: relative;
    }

.slide-section {
    position: relative;
    display: flex;
    margin-bottom: 60px;
    max-width: 100%;
}

        .slide-section .position-center-center {
            z-index: 9999;
            width: 100%;
        }

    .swiper-button-next, .swiper-button-prev {
        height: 50px;
        width: 60px;
        background: #fff;
    }
    /*=======================================================
      Blog Article
========================================================*/

    .blog-article p {
        font-size: 16px;
    }

    .blog-hero {
        margin-bottom: 30px;
    }

        .blog-hero .slide-section {
            max-height: 1600px;
        }

        .blog-hero .swiper-slide img {
            width: 100%;
        }

    .sidebar-info {
        position: -webkit-sticky; /* Safari & IE */
        position: sticky;
        top: 0;
    }

    .blog-article .pr-rating .price {
        font-size: 20px;
        font-size: 14px;
        text-transform: uppercase;
    }

    .blog-article .pr-rating .social-icon {
        display: flex;
        margin-top: 10px !important;
        margin-bottom: 20px;
    }

        .blog-article .pr-rating .social-icon a {
            font-size: 25px;
        }

        .blog-article .pr-rating .social-icon a {
            margin-left: 0px !important;
            margin-right: 30px;
        }

    .blog-article .pr-rating hr {
        margin: 10px 0px 30px;
    }

    .blog-article h6 {
        font-weight: 600;
    }

    .blog-article .content-text img {
        width: 100%;
    }

    .blog-article .related-products {
        margin-top: 50px;
    }

        .blog-article .related-products h4 {
            margin-bottom: 25px;
        }
    /*=======================================================
      Blog Sidebar
========================================================*/

    .sidebar-posts {
        padding-top: 30px;
        border-top: 3px solid #000;
        padding-bottom: 30px;
    }

    .sidebar-post-excerpt {
        padding: 15px 0px;
    }

    .sidebar-links {
        padding-top: 30px;
        border-top: 3px solid #000;
        padding-bottom: 30px;
    }

        .sidebar-links a {
            display: block;
            width: 100%;
            border-bottom: 1px solid #ccc;
            padding: 10px 0px;
        }
    /*=======================================================
      User Profiles
========================================================*/
    .user-profile .sidebar-block li {
        width: 100%;
        padding: 8px 0;
    }

        .user-profile .sidebar-block li .active {
            color: #DA225F;
            font-weight: 700;
        }

.user-profile .user-avatar {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    }

        .user-profile .user-avatar .avatar-img {
            max-width: 165px;
            position: relative;
            overflow: hidden;
            border-radius: 100%;
            display: inline-block;
        }

    @media(max-width:768px) {
        .user-profile .user-avatar .avatar-img {
            width: 100%;
        }

        .user-profile form .btn, .btn-abl {
            width: 100%;
        }

        .avatar .btn-abl {
            width: unset;
        }
    }

    .user-profile .user-avatar .custom-file {
        margin-top: 30px;
        display: inline-block;
        width: 100%;
        height: 50px;
    }

        .user-profile .user-avatar .custom-file input {
            text-align: center;
            border: 1px solid #E6E6E6;
            cursor: pointer;
            height: 50px;
            line-height: 50px;
        }

        .user-profile .user-avatar .custom-file .custom-file-label {
            text-align: center;
            height: 50px;
            line-height: 50px;
            color: #4A4A4A;
            font-size: 14px;
            padding: 0px;
            font-weight: 700;
            cursor: pointer;
            border: 1px solid #E6E6E6;
            max-width: 165px;
            margin: 0 auto;
            box-shadow: 0 3px 5px rgba(0,0,0,0.1);
        }

            .user-profile .user-avatar .custom-file .custom-file-label:hover {
            }

    .user-profile .user-avatar .custom-file-label::after {
        display: none;
    }

.profile-inputs form ul {
    display: flex;
    flex-direction: column;
    width: 100%;
}

        .profile-inputs form ul li {
            display:flex;
            flex-direction:column;
            justify-content:center;
            align-items:flex-start;
        }

        .profile-inputs form ul li > label {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
            width: 100%;
            flex-wrap:wrap;
            gap:10px;
        }

            .profile-inputs form ul li > label > span {
                left: 0px; 
                font-weight: 600;
                line-height: 50px;
                width: calc(25% - 10px);
                text-align: left;      
                color: #4A4A4A;
                margin-right:20px;
            }

            .profile-inputs form ul li > label > p {
                margin:0px;
                padding:0px;
            }

            .profile-inputs form ul li > label > span:nth-of-type(2) {
                width: 100%;
                text-align: left;
            }

            .profile-inputs form ul li > span {
                margin-left: 40%;
                width:100%;
            }



    .profile-inputs form label {
        width: 100%;
    }

    .profile-inputs form .form-check label {
        padding-left: 0px;
    }

.profile-inputs form label ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: calc(75% - 20px);
    gap:10px 40px;
}

.profile-inputs form label ul li {
    padding:0px;
    margin:0px;
    flex-wrap:nowrap;
    flex-direction:row;
    gap:10px;
}

    .profile-inputs form label ul li input[type='checkbox'] {
        width: 20px !important;
        height: 20px !important;
        margin: 0px;
        padding: 0px;
        position:relative;
    }

    .profile-inputs form label ul li label {
        width:calc(100% - 25px);
        margin: 0px;
        padding: 0px;
        position: relative;
    }


        .profile-inputs form label .change-pass {
            font-weight: 700;
            color: #00AEEF;
        }

    .user-profile form input, .user-profile form textarea {
        height: 50px;
        border: none;
        padding: 0 20px;
        font-size: 14px;
        color: #000;
        font-weight: 500;
        background: #F6F6F6;
        width:calc(75% - 30px);
    }

.user-profile form input, .user-profile form select, .user-profile form .select-group {
    display: inline-block;
}
    .user-profile form .select-group {
        width:170px;
    }

    .user-profile form textarea {
        height: 100px;
        padding: 10px 20px;
    }

    .user-profile form {
        margin-bottom: 50px;
        display: inline-block;
        width: 100%;
    }

        .user-profile form .btn {
            float: right;
            height: 50px;
            text-transform: none;
            line-height: 50px;
            padding: 0 50px;
        }

    .user-profile.user-profile-bucket-list .avatar-img {
        max-width: 200px;
    }

    .user-profile.user-profile-bucket-list .name-head {
        position: relative;
        margin-bottom: 10px;
        display: inline-block;
        width: 100%;
    }

    .user-profile.user-profile-bucket-list h3 {
        font-weight: 700;
        margin-bottom: 0px;
    }

    .user-profile.user-profile-bucket-list .name-head .form-check {
        position: relative;
        margin: 10px 0px 0px 0;
        padding: 0px;
    }

    .user-profile.user-profile-bucket-list .form-check {
        display: flex;
        justify-content: center;
    }

    .user-profile.user-profile-bucket-list .profile-setting {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 200px;
    }

        .user-profile.user-profile-bucket-list .profile-setting label {
            display: inline-flex;
        }


    .user-profile.user-profile-bucket-list .custom-switch {
        display: inline-flex;
    }


    .user-profile-bucket-list {
        margin-bottom: 50px;
    }

    .user-profile.user-profile-bucket-list .name-head .form-check p {
        position: absolute;
        left: 0px;
        color: #000000;
    }

    .user-profile-bucket-list .user-details h6 {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 30px;
        margin-top: 10px;
    }

        .user-profile-bucket-list .user-details h6 span {
            color: #00AEEF;
            margin-right: 12px;
        }

.user-profile-bucket-list .social-icon a {
    font-size: 20px;
    padding: 5px;
    justify-content: center;
    align-items: center;
    display: flex;
}

    .user-profile-bucket-list .social-icon {
        margin-top: 20px;
    }

    .user-profile-bucket-list .user-details {
        margin-bottom: 40px;
    }

    .user-profile-bucket-list .filter-listbar {
        margin-top: 0px;
    }

    .user-profile-bucket-list .load-more {
        margin-top: 0px;
    }

    .user-profile-bucket-list .shr-sec {
        max-width: 180px;
        float: right;
    }

    .user-profile-bucket-list .filter-listbar h3 {
        margin-top: 20px;
    }

    .public-bucket-list .filter-listbar h3 {
        margin-top: 0px;
    }

    .public-bucket-list.user-profile-bucket-list .load-more {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .user-profile-bucket-list .btn.btn-shre {
        width: 100%;
        margin-bottom: 20px;
    }

    @media(max-width:768px){
        .user-profile form input, .user-profile form .select-group {
            display: block;
        }

        .profile-inputs form ul li label {
            flex-direction: column;
            align-items:flex-start;
        }

        .profile-inputs form ul li label span {
            text-align:left;
        }

        .profile-inputs form ul li > label > span, .profile-inputs form ul li > label > input, .profile-inputs form ul li > label > textarea {
            width: 100%;
        }

        .profile-inputs form ul li > span {
            margin-left: 0px;
        }

    }

    /*=======================================================
      Why Aussie Bucket List?
========================================================*/
    .why-aussie {
    }

        .why-aussie .bucket-inside {
            background: #F7F7F7;
            border-radius: 6px;
            padding: 70px 40px;
        }

            .why-aussie .bucket-inside .heading-block h3 {
                font-size: 26px;
            }

            .why-aussie .bucket-inside .col-lg-3 {
                -ms-flex: 0 0 20%;
                flex: 0 0 20%;
                max-width: 20%;
            }

            .why-aussie .bucket-inside .col-lg-9 {
                -ms-flex: 0 0 80%;
                flex: 0 0 80%;
                max-width: 80%;
            }

            .why-aussie .bucket-inside p {
                margin-bottom: 40px;
                line-height: 22px;
                min-height: 85px;
            }

            .why-aussie .bucket-inside h5 {
                margin-bottom: 20px;
                font-weight: 700;
            }

            .why-aussie .bucket-inside .heading-block i {
                color: #DA225F;
                font-size: 110px;
                margin-top: 20px;
            }

            .why-aussie .bucket-inside .app-button a {
                display: inline-block;
                margin-right: 10px;
            }
    /*=======================================================
      Blog Block
========================================================*/
    .blog-block {
        margin-top: 0px;
    }

        .blog-block .blog-post {
            position: relative;
            margin-bottom: 30px;
        }

            .blog-block .blog-post .blog-img {
                border-radius: 6px;
                position: relative;
                overflow: hidden;
            }

            .blog-block .blog-post .blog-img.abl-border {
                border:1px solid rgba(200,220,255,1);
            }


                .blog-block .blog-post .blog-img img {
                    width: 100%;
                }

            .blog-block .blog-post .post-info {
                margin-bottom: 10px;
                margin-top: 10px;
            }

                .blog-block .blog-post .post-info span i {
                    font-size: 10px;
                    margin-right: 5px;
                }

                .blog-block .blog-post .post-info span {
                    color: #999999;
                    margin-right: 10px;
                    padding-right: 10px;
                    border-right: 1px solid #EEEEEE;
                }

                    .blog-block .blog-post .post-info span:nth-last-child(1) {
                        border-right: none;
                    }

            .blog-block .blog-post .post-tittle {
                font-size: 18px;
                font-weight: 700;
                margin-bottom: 10px;
                display: inline-block;
                width: 100%;
            }

    .post-highlight img {
        padding-bottom: 0px;
    }

    .blog-block .post-highlight .blog-post .post-tittle {
        font-size: 36px;
        line-height: 42px;
    }

    .blog-block .read-more {
        position: absolute;
        top: 0px;
        text-transform: uppercase;
        font-weight: 700;
        right: 0px;
        background: #fff;
        padding: 7px 17px;
    }
    /*=======================================================
      Proudly Supporting
========================================================*/
    .prd-supp li {
        width: 11.11111111%;
        padding: 0 10px;
    }

    .prd-supp {
        margin: 0 -10px;
        display: flex;
    }
    /*=======================================================
			CONTACT FORM
========================================================*/
    .contact-form {
        background: #fff;
        padding: 40px;
        border-radius: 4px;
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }

        .contact-form .error {
            border: none;
            border: 1px solid red !important;
        }

            .contact-form .error:before {
                content: "\f071";
                font-family: 'Font Awesome 5 Free';
                position: absolute;
                color: red;
            }

        .contact-form .success-msg {
            border: 2px solid rgba(0,0,0,0.2);
            color: #000;
            width: 100%;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            padding: 20px 16px;
            border-radius: 4px;
            display: none;
        }

            .contact-form .success-msg i {
                padding: 10px;
                border-radius: 50%;
                border: 1px solid #ABD0A8;
                margin-right: 10px;
            }

        .contact-form .form-control:focus {
            background: #fff;
            outline: none !important
        }

        .contact-form label {
            display: inline-block;
            width: 100%;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .contact-form input {
            height: 40px;
            border-radius: 4px;
            padding: 0 10px;
            margin-bottom: 10px;
        }

        .contact-form input, .contact-form textarea {
            background: #f5f5f5;
            border: 1px solid #d3d3d3;
            display: inline-block;
            width: 100%;
            font-size: 14px;
            font-weight: 500;
        }

        .contact-form textarea {
            height: 196px;
            border-radius: 4px;
            padding: 10px 10px;
            margin-bottom: 10px;
        }

        .contact-form button {
            -webkit-transition: all 0.4s ease-in-out;
            -moz-transition: all 0.4s ease-in-out;
            -o-transition: all 0.4s ease-in-out;
            -ms-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
        }

            .contact-form button:hover {
            }

    .grey-bg {
        background-color: #f2f2f2;
        padding: 30px;
        border-radius: 10px;
        margin-bottom: 50px;
    }

#ContactPanel textarea, #FeedbackPanel textarea {
    height: 140px;
}
    /*=======================================================
			Popups Forms
========================================================*/
    .form-pops-ups .modal-header {
        display: block;
        padding: 0px 0px 10px 0px;
    }

    .form-pops-ups .modal-header.no-border {
        border-bottom:0px;
    }

    .form-pops-ups .close {
        position: absolute;
        top: 10px;
        right: 15px;
    }

    .form-pops-ups .modal-header h5 {
    }

    .form-pops-ups .modal-header h6 a {
        color: #00AEEF;
    }

    .form-pops-ups .modal-header h6 {
        color: var(--grey);
    }

    .form-pops-ups form label {
        position: relative;
        width: 100%;
        font-size: 14px;
        color: var(--grey);
        font-weight: 600;
        margin-bottom: 5px;
    }

    .form-pops-ups form li .lst-pass {
        font-weight: 600;
        float: right;
        position: relative;
        z-index: 2;
    }

    .form-pops-ups form .btn {
        width: 100%;
        height: 50px;
    }

    .form-pops-ups form input, .form-pops-ups form textarea {
        height: 50px;
        border: none;
        font-size: 16px !important;
        background: #F6F6F6;
        margin-top: 5px;
    }

    .form-pops-ups form textarea {
        height: 100px;
    }

    .form-pops-ups .btn-fb {
        width: 100%;
        text-align: center;
        background: #2F5B9D;
        border-radius: 6px;
        display: inline-block;
        color: #fff;
        height: 48px;
        font-weight: 600;
        line-height: 48px;
        margin-top: 15px;
        margin-bottom: 15px;
        border: 0px;
    }

        .form-pops-ups .btn-fb i {
            margin-right: 10px;
        }

    .form-pops-ups .modal-content {
        padding: 50px;
    }

    .form-pops-ups .or span {
        background: #fff;
        position: absolute;
        top: 5px;
        left: 0px;
        right: 0px;
        width: 50px;
        margin: 0 auto;
        text-transform: uppercase;
    }

    .form-pops-ups .or {
        margin: 0px;
        position: relative;
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 0px;
        margin-bottom: 10px;
    }

    .form-pops-ups form .field-icon {
        float: right;
        position: absolute;
        right: 20px;
        top: 42px;
        cursor: pointer;
    }

    #sign-up-bucket.modal {
        padding-right: 0px !important;
    }

    #sign-in-bucket.modal {
        padding-right: 0px !important;
    }

    .modal {
        background: rgba(0,0,0,0.7);
    }

    .form-pops-ups form li .inputfile {
        width: 0.1px;
        height: 0.1px;
        opacity: 0;
        overflow: hidden;
        position: absolute;
        z-index: -1;
    }

    .form-pops-ups .inputfile + label {
        max-width: 45px;
        font-size: 1.25rem;
        font-weight: 700;
        text-overflow: ellipsis;
        white-space: nowrap;
        cursor: pointer;
        display: inline-block;
        overflow: hidden;
        padding: 5px;
        border-radius: 6px;
    }

.form-pops-ups .submit-rvw form label {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

    .form-pops-ups .submit-rvw .filetype {
        display: inline-block;
        float: left;
        width: 50px;
    }

    .form-pops-ups .submit-rvw .uplod-imges {
        display: flex;
        margin: 0 -3px;
        margin-bottom: 20px;
    }

    .form-pops-ups .submit-rvw .img-up {
        width: 20%;
        padding: 0 3px;
    }

    .form-pops-ups .no-js .inputfile + label {
        display: none;
    }

    .form-pops-ups .inputfile:focus + label, .inputfile.has-focus + label {
        outline: 1px dotted #000;
        outline: -webkit-focus-ring-color auto 5px;
    }

    .form-pops-ups .inputfile + label * {
    }

    .form-pops-ups .inputfile + label svg {
        width: 1em;
        height: 1em;
        vertical-align: middle;
        fill: currentColor;
        margin-top: -0.25em;
        margin-right: 0.25em;
    }

    .form-pops-ups .inputfile-1 + label {
        color: #f1e5e6;
        background-color: #fff;
    }

    .form-pops-ups .inputfile-1:focus + label, .inputfile-1.has-focus + label, .inputfile-1 + label:hover {
        background-color: #f5f5f5;
    }
    /*=======================================================
            Popup Following
========================================================*/

    .profile-follow p {
        display: inline;
    }

    .profile-follow .modal-content {
        display: inline;
    }

    .profile-follow h5 {
        margin-bottom: 40px;
    }

    li {
        overflow: hidden;
        margin-bottom: 20px;
    }

    .profile-follow .btn {
        float: right;
    }

    .profile-follow p {
        font-size: 16px;
        font-weight: 900;
    }

    .profile-follow img {
        max-width: 40px;
        margin-right: 20px;
    }
    /*=======================================================
            Checkout
========================================================*/
    .checkout-box {
        box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
        padding: 50px 50px 30px 50px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .checkout-box-summary {
        box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
        padding: 60px 30px 30px 30px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

        .checkout-box-summary table {
            width: 100%;
        }


            .checkout-box-summary table tr th {
                background: #DA225F;
                color: #FFF;
                font-size: 14px;
                text-transform: uppercase;
                padding: 12px 5px;
            }

            .checkout-box-summary table tr td {
                font-size: 14px;
                padding: 8px 5px;
            }

    .purchase-extras, .purchase-options {
        width: 100%;
    }

        .purchase-extras th, .purchase-options th {
            background: #DA225F;
            color: #FFF;
            font-size: 14px;
            text-transform: uppercase;
            padding: 12px 5px;
        }

        .purchase-extras td, .purchase-options td {
            font-size: 14px;
            padding: 8px 5px;
        }

    .checkout-container h4 {
        margin-bottom: 50px;
        font-weight: 100;
        color: #a9b9b9;
        text-transform: uppercase;
        letter-spacing: 4px;
        font-size: 18px;
    }

    .checkout-box .nav-item {
        width: 50%;
    }

    #sign-up-tab, #login-tab {
        background-color: #f2f2f2;
    }

        #sign-up-tab.active, #login-tab.active {
            background-color: #fff;
        }

            #sign-up-tab.active h5, #login-tab.active h5 {
                color: #00AEEF;
            }

    .checkout-box .seperator {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .checkout-calendar {
        max-width: 260px;
        margin-top: 10px;
    }

    .checkout-lock {
        max-width: 20px;
        margin-right: 10px;
    }

    .width-50 {
        width: 50% !important;
    }

    .checkout-cards {
        max-width: 140px;
        margin-left: 20px;
    }

    .total-sticky {
        top: 0px;
    }

    #wrap.checkout, .checkout section {
        overflow: unset;
    }

    .form-control:focus {
        border-color: #80bdff;
        box-shadow: 0 0 0 .1rem rgba(0,123,255,.25);
        border: 1px solid #80bdff;
    }

    .total-sticky .row {
        border-top: 1px solid #ccc;
        padding-top: 15px;
    }

    .checkout-small-text p {
        font-size: 11px;
    }

    .total-sticky .row.total-header {
        border-top: unset;
        padding-top: unset;
    }
    /*=======================================================
			Footer
========================================================*/
    footer {
        background: #1D1D1D;
    }

        footer .footer-up .social-icon {
            display: inline-block;
        }

            footer .footer-up .social-icon a {
                font-size: 20px;
                margin: 0 8px;
                color: #fff;
            }

        footer .footer-up {
            border-bottom: 1px solid #5A5A5A;
            padding-bottom: 30px;
            margin-bottom: 20px;
        }

            footer .footer-up .col-md-6 {
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
            }

        footer .logo-footer {
            width: 160px;
            margin-right: 50px;
            display: inline-block;
        }

    footer {
        background: #1b1b1b;
        padding: 0px 0px 60px 0px;
        padding-bottom: 0px;
    }

        footer .add-business {
            margin: 0px 0px 60px 0px;
            background: #DA225F;
            text-align: center;
            width: 100%;
            padding: 12px;
        }

            footer .add-business a {
                color: #FFF;
                font-size: 1.25em;
                font-weight: 600;
            }

            footer .add-business > .row > .col-12 {
                padding:10px;
            }

        footer .nws-ltr {
            text-align: right;
            width: 100%;
        }

            footer .nws-ltr p {
                display: inline-block;
            }

            footer .nws-ltr form {
                display: inline-block;
            }

                footer .nws-ltr form input {
                    background: #3B3B3B;
                    height: 48px;
                    border: none;
                    margin: 0 10px;
                    min-width: 260px;
                    padding: 0 10px;
                    color: #fff;
                }

                footer .nws-ltr form button {
                    border: 2px solid #fff;
                    height: 46px;
                    background: none;
                    color: #fff;
                    padding: 0 20px;
                    font-weight: 700;
                }

                    footer .nws-ltr form button:hover {
                        background: #fff;
                        color: #000;
                    }

        footer p {
            color: #EEEEEE;
            margin-bottom: 0px;
        }

        footer .rights {
            background: #1F1F1F;
            margin-top: 30px;
            color: #999999;
            line-height: 160%;
            text-align: center;
            padding: 30px 5px;
        }

        footer .footer-links li a, footer a {
            color: #BBBBBB;
            line-height: 26px;
        }

        footer .footer-links h5 {
            color: #fff;
            font-size: 16px;
            margin-bottom: 20px;
            margin-top: 30px;
        }

        footer .footer-links p {
            color: #BBBBBB;
            margin: 0px;
            line-height: 26px;
        }

        footer .rights a {
            color: #999999;
        }
    /*=======================================================
			GO TO TOP
========================================================*/
    .cd-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        opacity: 0;
        color: #a0a0a0;
        font-size: 18px;
        display: block;
        width: 46px;
        border-radius: 5px;
        height: 46px;
        line-height: 44px;
        background: hsla(0,0%,71%,.15);
        border: 1px solid rgba(0,0,0,.11);
        box-shadow: inset 0 0 0 1px hsla(0,0%,100%,.1), 0 2px 6px rgba(0,0,0,.1);
        text-align: center;
        z-index: 999;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

        .cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
            -webkit-transition: opacity .3s 0s, visibility 0s 0s;
            -moz-transition: opacity .3s 0s, visibility 0s 0s;
            transition: opacity .3s 0s, visibility 0s 0s;
        }

        .cd-top.cd-is-visible {
            visibility: visible;
            opacity: 1;
        }

        .cd-top.cd-fade-out {
            opacity: .5;
        }

    .no-touch .cd-top:hover {
        color: #000;
    }

    .dp_none {
        display: none;
    }

    .far.fa-heart, .fa.ha-heart {
        padding-top: 8px;
    }

    .fa.fa-heart {
        color: #DA225F;
        padding-top: 7px;
        font-size: 15px;
    }

    .far.fa-star {
        padding-top: 5px;
        font-size: 15px;
    }

    .circle .fas.fa-star {
        color: #FEB53E;
        padding-top: 5px;
        font-size: 15px;
    }

    .fas.fa-check {
        padding-top: 7px;
    }

    .fa-spinner {
        display: none;
        margin-right: 10px;
        font-size: 1.8em;
    }

    #upload-spinner {
        display: none;
        margin-left: 10px;
    }

    /* VIDEO */
    .embed-container {
        position: relative;
        overflow: hidden;
        max-width: 100%;
        background: #FFF;
    }

#largeVideo, #smallVideo {
    width: 100%;
}

.embed-container:before {
    content: " ";
    z-index: 10;
    display: block;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.35);
}

        .embed-container label {
            position: absolute;
            bottom: 20px;
            left: 30px;
            color: #FFF;
        }

    .fas.fa-check.active {
        color: #DA225F;
    }

    .completed img {
        opacity: 0.5;
    }

    .rzOption {
        padding: 4px 0px;
        vertical-align: top;
    }

        .rzOption label {
            display: inline-block;
            width: 68%;
            text-align: left;
            padding-right: 5px;
        }

        .rzOption select {
            display: inline-block;
            width: 30%;
            padding: 8px;
            border: 1px solid #DA225F;
            vertical-align: top;
        }

            .rzOption select option {
                font-size: 1.2em;
            }

        .rzOption input[type='text'] {
            padding: 0.375rem 0.75rem;
        }

    .bootstrap-datetimepicker-widget table td, .bootstrap-datetimepicker-widget table th {
        padding: 10px 0px;
    }

    .bootstrap-datetimepicker-widget .table thead th {
        background: #f1f1f1;
        border-bottom: 1px solid #dee2e6;
        border-radius: 0px !important;
        padding: 10px 0px;
    }

    .checkout-box .log-btns.log-in {
        border-radius: 0px;
        margin-bottom: 20px !important;
        padding: 15px;
    }

    .checkout-box .form-pops-ups .modal-content {
        margin: 30px 0px;
        border: 0px;
        padding: 15px 0px;
    }

    ul.nav.float-left.tabs li {
        padding: 12px 18px;
        background: #DA225F;
        color: #FFF;
        font-weight: 600;
        font-size: 1.2em;
        text-transform: uppercase;
        border-radius: 16px;
        margin-right: 15px;
    }

        ul.nav.float-left.tabs li:hover {
            cursor: pointer;
        }


    #smallVideo {
        display: none;
    }

    @media(max-width:700px) {
        #smallVideo {
            display: block;
        }

        #largeVideo {
            display: none;
        }
    }

    .user-block {
        text-align: center;
        background: #FFF;
        border: 1px solid #F0F0F0;
        padding: 12px 18px;
    }

        .user-block .avatar-img img {
            border-radius: 50%;
        }

        .user-block a {
            margin: 10px auto;
        }

        .user-block h6 {
            font-size: 14px;
        }

    .following {
        background: #000000;
    }

    ul.follow li img {
        border-radius: 50%;
        max-width: 80px;
        display: inline-block;
        padding-right: 10px;
    }

    ul.follow li p {
        min-width: 180px;
        display: inline-block;
        padding-right: 10px;
    }

    fieldset.rating {
        display: flex;
        flex-direction: row-reverse;
    }

    .btn.dark {
        background: #000000;
        color: #FFF !important;
    }

    .btn {
        cursor: pointer;
    }

    .img-block.completed a span {
        position: absolute;
        bottom: 15%;
        display: block;
        left: 20px;
        font-size: 1.2rem;
        color: #FFF;
    }

    .expander {
        position: absolute;
        right: 5px;
        top: 5px;
        background: #eee;
        color: #000;
        padding: 0 6px;
        cursor: pointer;
        border-radius: 4px;
        font-weight: 900;
    }






    #reviewimgs ul li {
        max-width: 90px;
        width: 90px;
        min-width: 90px;
        display: inline-block;
        position: relative;
        margin: 0px 1px;
    }

    #sharereviewphotos {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        width: 100%;
        border: 1px dashed #DA225F;
        padding: 12px 20px;
        font-size: 1.0em;
        font-weight: 800;
        margin-bottom: 20px;
    }

        #sharereviewphotos label {
            width: unset;
            margin: 0px;
        }

    #reviewimgs ul li span {
        position: absolute;
        right: 5px;
        top: 5px;
        padding: 0px 4px;
        color: #FFF;
        background: #DA225F;
        box-shadow: 0px 0px 5px rgba(0,0,0,0.25);
        cursor: pointer;
    }

    .all-reviews .media-body ul li {
        display: inline-block;
        max-width: 120px;
        width: 100%;
        min-width: 80px;
    }

    .rating, .rating input, .rating label {
        cursor: pointer;
    }

    hr.line {
        display: inline-block;
        padding: 2px;
        margin: 20px 0px 50px 0px;
        background: #DA225F;
        width: 180px;
        max-width: 70%;
    }

    .general ul {
        display: block;
        list-style-type: disc;
        list-style-position: inside;
        margin-top: 1em;
        margin-bottom: 1 em;
        margin-left: 0;
        margin-right: 0;
        padding-left: 40px;
        color: var(--grey);
    }

    .general li {
        display: list-item;
        list-style: disc;
        color: var(--grey);
        overflow: unset;
    }

    .general h4 {
        margin-top: 40px;
    }

    blockquote {
        background: #f9f9f9;
        border-left: 8px solid #DA225F;
        margin: 1.5em 10px;
        padding: 0.5em 10px;
        quotes: "\201C""\201D""\2018""\2019";
        padding: 35px;
    }

        blockquote:before {
            color: #ccc;
            content: open-quote;
            font-size: 4em;
            line-height: 0.1em;
            margin-right: 0.25em;
            vertical-align: -0.4em;
        }

        blockquote p {
            display: inline;
        }

    footer.blockquote-footer {
        padding: 10px 20px;
        background: none;
        font-weight: 600;
    }

    #accordion .card {
        margin-bottom: 6px;
    }

    .blog-article ul, .blog-article li {
        font-size: 16px;
        color: var(--grey);
    }

    .blog-article sub {
        top: 8px;
    }

    .st-custom-button {
        display: inline-block;
        font-size: 1.9em;
        margin-right: 20px;
        cursor: pointer;
    }

        .st-custom-button:hover {
            color: #DA225F;
        }

    .st-custom-button-1 {
        display: inline-block;
        font-size: 1.9em;
        margin-right: 20px;
        cursor: pointer;
        color: #FFF;
        padding: 18px 22px;
        background: #DA225F;
    }

        .st-custom-button-1:hover {
            background: #000000;
        }

    .social-icon.share {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .supplier-contact p {
        margin: 0px !important;
    }

    .supplier-contact .social-icon {
        margin-top: 20px;
    }

    .hero-header .btn {
        font-size: 20px;
    }

    .checkout-box label {
        font-weight: 600;
        width: 100%;
    }

    .checkout-box input, .checkout-box select {
        width: 100%;
        height: 50px;
        border: none;
        background: #F6F6F6;
        margin-top: 5px;
    }
    /* Background Scolling when Model is open and input is focused Fix */

    body.modal-open {
        position: fixed;
        overflow: hidden;
        left: 0;
        right: 0;
    }

    .modal {
        -webkit-overflow-scrolling: touch;
    }

    .modal-body {
        padding: 20px 0px;
    }

    .no-results {
        padding: 45px 15px;
    }

    .pink {
        color: #DA225F;
        font-weight: 600;
    }

    i.fas.fa-window-close.fa-2x.removeitem {
        cursor: pointer;
    }
    /* Responsive */

    @media(max-width:540) {
        .name-head {
            height: auto;
        }

        .user-profile.user-profile-bucket-list .name-head .form-check {
            position: relative;
            margin-bottom: 30px;
        }
    }

    .checkout-box.thanks p span {
        font-size: 1.2em;
    }

    span.supplier {
        width: 100%;
        display: block;
    }

    .fas.fa-bell {
        font-size: 22px;
        padding-top: 12px;
        margin-right: 20px;
    }

    .notifications-window {
        max-width: 500px;
        min-width: 500px;
        width: 100%;
        left: -300px;
        display: none;
        flex-direction: column;
        padding: 10px;
        overflow: hidden;
        overflow-y: scroll;
        max-height: 480px;
        height: calc(0.7 * 100vh);
        border-radius: 0 0 0 20px;
    }

        .notifications-window::-webkit-scrollbar {
            width: 8px;
        }

        .notifications-window::-webkit-scrollbar-track {
            background: #EEEEEE;
        }

        .notifications-window::-webkit-scrollbar-thumb {
            background-color: #DA225F;
            border-radius: 0px;
        }

            .notifications-window::-webkit-scrollbar-thumb:hover {
                background: #DA225F;
            }

    @media(max-width:767px) {
        .notifications-window {
            min-width: unset;
            border-radius: 0px;
        }
    }



    .notifications-window li {
        width: 100%;
        white-space: normal;
        font-size: 0.7rem;
        background: #FFF;
    }

        .notifications-window li:nth-of-type(odd) {
            background: #F5F5F5;
        }

        .notifications-window li:nth-of-type(1) {
            background: #FFF;
        }


        .notifications-window li:hover {
            cursor: pointer;
        }

        .notifications-window li span {
            font-weight: 900;
            font-size: 0.9em;
            padding: 5px;
            border-radius: 10px;
            color: #DA225F;
            float: left;
            min-width: 70px;
            justify-content: center;
            align-items: center;
            display: flex;
            height: 50px;
        }

        .notifications-window li label {
            display: table;
            padding-left: 10px;
            margin: 0px;
            max-width: 80%;
        }

    .notifications-window .dropdown-item {
        padding: 0px;
        display: flex;
        flex-direction: row;
        align-items: center;
        margin: 0px;
        border-bottom: 1px solid #FFF;
        margin: 2px 0px;
    }

        .notifications-window .dropdown-item p {
            margin: 0px;
            padding: 8px 0px;
            font-weight: 600;
            color: #000000;
            width: 100%;
        }

            .notifications-window .dropdown-item p a {
                float: right;
                margin-right: 4px;
            }

    .business-header {
        padding-bottom: 20px;
        box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
    }

    @media(min-width:991px) {
        .business-nav {
            margin-left: 60px;
            margin-top: 22px;
        }

        .business-container {
            margin: 90px;
        }
    }

    .business-panel {
        padding: 30px;
        background: #F5F5F5;
        margin-bottom: 30px;
        border: 2px solid #FFF;
        box-shadow: 0px 0px 10px rgba(0,0,0, 0.15);
    }

    .business-panel-2 {
        padding: 30px;
        background: #FFF;
        border: 1px solid #E0E0E0;
        margin-bottom: 30px;
    }

    .business-panel-3 {
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
        padding: 20px;
        margin: 30px 0px 60px 0px;
    }

    .business-panel-4 {
        padding-left: 0px;
    }

    .fa-cog {
        font-size: 18px;
        margin-top: 4px;
    }

    .business-table {
        width: 100%;
    }

        .business-table thead td {
            text-align: center;
            padding-top: 20px;
            text-transform: uppercase;
            font-weight: 400;
            font-size: 0.9em;
            padding: 4px;
        }

            .business-table thead td label {
                background: #DA225F;
                padding: 4px 8px;
                color: #FFF;
            }

        .business-table tbody td {
            text-align: center;
            padding-bottom: 20px;
            font-weight: 800;
            font-size: 1.8em;
        }

    .business-package {
        text-align: center;
        border: 1px solid #EEEEEE;
        margin-top: 30px;
    }

        .business-package h4 {
            font-weight: 800;
            text-transform: uppercase;
            font-size: 1.1em;
            margin-bottom: 20px;
        }

        .business-package span.title {
            padding: 20px 10px;
            width: 100%;
            display: inline-block;
            text-align: center;
            font-size: 1.1em;
            color: #FFF;
            border-bottom: 1px solid #FFF;
            text-transform: uppercase;
            font-weight: 800;
        }

        .business-package span.price {
            padding: 22px 10px;
            width: 100%;
            display: inline-block;
            text-align: center;
            font-size: 2em;
            color: #FFFFFF;
            background: #00AEEF;
            font-weight: 900;
            text-transform: uppercase;
        }

            .business-package span.price label {
                display: inline-block;
                font-size: 0.5em;
            }

        .business-package span.description {
            padding: 12px;
            width: 100%;
            display: inline-block;
            text-align: center;
            font-size: 1em;
            background: #FFF;
            min-height: 180px;
        }

            .business-package span.description p {
                color: #000000;
            }

        .business-package span.features {
        }

            .business-package span.features ul {
                margin: 20px 0px;
            }

                .business-package span.features ul li {
                    display: block;
                    padding: 12px;
                    background: #F7F7F7;
                    color: #000000;
                    border-radius: 3px;
                    margin: 0px 5px;
                    font-weight: 600;
                }

                    .business-package span.features ul li:nth-child(odd) {
                        background: #F1F1F1;
                        color: #000000;
                    }

        .business-package span.heading {
            background: #FFF;
            color: #000000;
            font-weight: 600;
            margin: 20px auto;
            display: block;
            background: #DA225F;
            color: #FFF;
            padding: 16px;
        }

        .business-package div.options {
            display: flex;
            justify-content: space-evenly;
        }

        .business-package .options select {
            padding: 12px;
            width: 100%;
            max-width: 260px;
            font-size: 1.2em;
            font-weight: 600;
            border: 1px solid #EEEEEE;
            box-shadow: 0px 0px 10px rgba(0,0,0,0.15);
            margin: 0px 0px 30px 0px;
            cursor: pointer;
        }

        .business-package div.options .priceOption {
            display: flex;
            flex-flow: column;
            font-size: 1.25em;
            font-weight: 600;
            flex-grow: 1;
        }

            .business-package div.options .priceOption label {
                background: #00AEEF;
                border-right: 1px solid #FFF;
                color: #FFF;
                font-size: 0.85em;
                text-transform: uppercase;
            }

            .business-package div.options .priceOption input {
                margin: 15px auto 10px auto;
            }

            .business-package div.options .priceOption span {
                margin: 15px auto 10px auto;
                font-size: 1.10em;
            }




        .business-package p {
            padding: 20px;
        }

        .business-package h5 {
            font-weight: 800;
            text-transform: uppercase;
            font-size: 1.8em;
            display: inline-block;
            padding: 8px 24px;
            color: #DA225F;
        }

        .business-package ul li {
            margin-bottom: 3px
        }

        .business-package .btn {
            width: 100%;
            border-radius: 0px;
            margin-top: 10px;
            font-size: 1.2em;
            text-transform: uppercase;
            border-radius: 12px;
            color: #FFF;
            background: rgba(39, 174, 96, 1);
        }

        .business-package .btn-abl-2 {
            background: #BBBBBB;
            color: #FFF;
        }

    .subscribe-form {
        margin: 30px;
        width: 100%;
    }

    .business-links {
        position: absolute;
        right: 15px;
        top: 5px;
    }

        .business-links a {
            text-transform: uppercase;
            background: #f5f5f5;
            color: #000000;
            font-weight: 600;
            font-size: 0.9em;
            padding: 12px 24px;
        }

    .business-section {
        position: relative;
    }

    .business-filter {
        position: absolute;
        right: 15px;
        top: 0px;
    }

        .business-filter select {
            border: none;
            border-bottom: 2px solid #DA225F;
            padding: 12px 0px;
            text-transform: uppercase;
            font-weight: 600;
            font-size: 0.9em;
            cursor: pointer;
        }

    .business-msg {
        position: absolute;
        right: 15px;
        top: 0px;
        background: #FEB53E;
        color: #FFF;
        padding: 6px 12px;
    }

    .business-msg-valid {
        position: absolute;
        right: 15px;
        top: 0px;
        background: rgba(39, 174, 96, 1);
        color: #FFF;
        padding: 6px 12px;
        font-weight: 600;
    }


    .divider {
        display: block;
        margin: 40px 0px;
        height: 2px;
        width: 30%;
        min-width: 180px;
        max-width: 360px;
        background: #DA225F;
    }

    .payment-icons i {
        font-size: 3em;
        padding: 20px 10px;
    }

    @media(max-width:1500px) {
        .business-package span.description {
            padding: 15px;
            width: 100%;
            display: inline-block;
            text-align: center;
            font-size: 1em;
            background: #FFF;
            min-height: 260px;
        }
    }
    /* Custom Radio Buttons */

    .StyledOption {
        display: flex;
        position: relative;
        height: 100px;
        padding-top: 20px;
        justify-content: center;
        cursor: pointer;
        font-size: 22px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

        .StyledOption input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }

    .checkmark {
        position: absolute;
        display: inline-flex;
        top: 35px;
        height: 30px;
        width: 30px;
        background-color: #eee;
        border-radius: 50%;
    }

    .StyledOption:hover input ~ .checkmark {
        background-color: #ccc;
    }

    .StyledOption input:checked ~ .checkmark {
        background-color: #DA225F;
        border: 4px solid #FFF;
    }

    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    .StyledOption input:checked ~ .checkmark:after {
        display: block;
    }

    .StyledOption .checkmark:after {
        top: 7px;
        left: 7px;
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: white;
    }
    /* Business */

    .select-abl {
        border-radius: 0px;
        height: 46px;
        font-size: 1em;
    }

    .listing-panel {
        margin-top: 20px;
    }

        .listing-panel .panel-heading {
            padding: 12px;
            background: #DA225F;
        }

            .listing-panel .panel-heading.two {
                padding: 12px 0px;
                background: #FFF;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            .listing-panel .panel-heading .title {
                font-weight: 600;
                color: #FFF;
                font-size: 14px;
                text-transform: uppercase;
            }

            .listing-panel .panel-heading.two .title {
                font-weight: 600;
                color: #000000;
                font-size: 1.25em;
                text-transform: uppercase;
                padding: 12px 0px;
                display: flex;
            }

            .listing-panel .panel-heading p {
                color: #FFF;
                margin: 0px;
            }

            .listing-panel .panel-heading a {
                margin-top: -20px;
                display: flex;
                color: #FFF;
            }

        .listing-panel .panel-body {
            padding: 24px;
        }

            .listing-panel .panel-body.two {
                padding: 36px 24px;
                border-radius: 0px 0px 16px 16px;
                background: #F7F7F7;
            }

                .listing-panel .panel-body.two .control-label {
                    font-weight: 600;
                }

                .listing-panel .panel-body.two input[type='text'] {
                    padding: 24px 16px;
                }

    #ActivityForm_ExternalBookingLinkTitle {
        height: 50px;
    }

    .listing-panel .panel-heading.two a {
        color: #000000;
        border: 1px solid #EEEEEE;
        border-radius: 12px;
        padding: 6px 12px;
        display: flex;
    }

    .business-container .table-border {
        border: 1px solid #EEEEEE;
    }

        .business-container .table-border th {
            border: 1px solid #343a40;
        }

    .business-container .table td {
        border: 0px;
    }

    .business-container table {
        font-size: 1em;
    }

    .business-container #photo-panel img {
        display: inline-block;
        margin: 0px 4px;
        max-width: 100%;
        width: 100%;
    }

    .business-container #photo-panel .img-item {
        position: relative;
        display: inline-block;
    }

        .business-container #photo-panel .img-item span {
            position: absolute;
            right: -5px;
            top: 0;
            cursor: pointer;
            background: rgba(255,255,255,.8);
            color: #333;
            font-weight: 600;
            font-size: .9em;
            padding: 10px 10px 8px 10px;
        }
    /*#region Cropper */

    .cropflex {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }

    .cropflex_upload {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 460px;
        justify-content: flex-start;
        align-items: center;
    }

    .cropflex_gallery {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: flex-start;
        align-items: center;
    }

    @media(min-width:1200px) {
        .cropflex_upload > div {
            max-width: 460px;
        }

        .cropflex_gallery {
            padding: 0px 10px;
            width: 60%;
            flex-grow: 1;
        }
    }

    .cropper-modal {
        opacity: 0.4 !important;
        background-color: #000000 !important;
    }

    .box-parent {
        max-width: 550px;
        min-width: 150px;
        width: 100%;
        padding-top: 100%;
        display: inline-block;
        position: relative;
    }

    .box-file {
        max-width: 470px;
        min-width: 150px;
        background: #f5f5f5;
        border: 5px solid #fff;
        box-shadow: 0px 2px 7px #ddd;
        text-align: center;
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        /*max-height: 400px;*/
    }

        .box-file > div {
            height: 100%;
            /*display: flex;
        justify-content: center;
        align-items: center;*/
        }

    .profilePanel.avatar {
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .post-container {
        width: 100%;
    }
    /*
.profilePanel.avatar label {
    position: absolute;
    bottom: 0px;
    margin: 0px;
}

    #photo-modal .profilePanel.avatar label span {
        color: #FFF;
        top: 5px;
        position: relative;
    }*/


    #photo-modal .profilePanel.avatar img {
        max-width: 140px;
        margin: auto;
    }

    #photo-modal .profilephoto .cropper-view-box,
    #photo-modal .profilephoto .cropper-face {
        border-radius: 50%;
    }

    #comment-modal .profilephoto .cropper-view-box,
    #comment-modal .profilephoto .cropper-face {
        border-radius: 0%;
    }
    /*#endregion*/
    /*#region Business Cropper*/
    .listing-panel .picture-box {
        padding: 30px;
        min-width: 200px;
        min-height: 400px;
    }

        .listing-panel .picture-box label.btn.btn-default {
            display: table-cell;
            border: 1px solid #dee2e6;
            background: rgba(100,130,230,1);
            color: #FFF;
            width: 100%;
            padding: 10px 25px;
            border-radius: 0px;
        }

            .listing-panel .picture-box label.btn.btn-default.btn-choose {
                display: inline-block;
                width: 100%;
            }

    .listing-panel .post-container {
        position: relative;
        margin-top: 0px;
        border-radius: 15px;
        /*height: 420px;*/
        border-radius: 20px 20px 0px 0px;
        background: #FFF;
        display: flex;
    }

    .listing-panel .meter {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        position: relative;
        height: 20px;
    }

        .listing-panel .meter span {
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }

    .listing-panel .cropper-container {
        border-radius: 15px;
    }

    .listing-panel .cropper-crop-box {
        /*margin-top: -20px;*/
    }

    .listing-panel .cropper-modal {
        background: #EAEAEA;
    }

    .listing-panel .avatar .gopal-blue-btn {
        width: 240px;
        margin: 20px 0px;
    }

    .listing-panel .profilePanel.avatar img {
        max-width: 140px;
        margin: auto;
    }
    /*#endregion*/


    .payment-form {
        margin: auto;
        display: inline-block;
        width: 95%;
        max-width: 660px;
        margin: 40px 0px;
    }

        .payment-form label {
            text-align: left;
            color: var(--grey);
        }

        .payment-form li {
            display: inline-block;
            width: auto;
        }

        .payment-form li {
            max-width: 600px;
            min-width: 300px;
            width: 100%;
        }

            .payment-form li.inline {
                max-width: 300px;
                min-width: 150px;
                width: 100%;
            }

    .listings-info {
        width: 100%;
    }

        .listings-info td:nth-child(1) {
            font-weight: 800;
            padding: 8px 0px;
            max-width: 180px;
            width: 180px
        }

    .business-count {
        justify-content: center;
        justify-self: center;
        display: flex;
        align-items: center;
        flex-direction: column;
        border-radius:10px;
    }

        .business-count h3 {
            display: block;
            color: #FFF;
        }

        .business-count p {
            display: block;
            color: #FFF;
            text-transform: uppercase;
        }

    #map {
        width: 100%;
        height: 100vh;
    }

    #SearchAreaBtn {
        z-index: 1;
        top: -100px;
        position: relative;
        display: flex;
        margin: auto;
        width: auto;
    }

    .map-block {
        background: #FFF;
        border-radius: 6px;
        display: flex;
        align-content: center;
        justify-content: flex-start;
        flex-direction: row;
        padding: 10px 30px;
        border: 2px solid #FFF;
        box-shadow: 0px 0px 10px rgba(0,0,0,0.10);
        margin: 0px
    }


        .map-block > div {
            display: flex;
            align-content: center;
            flex-direction: column;
            justify-content: center;
        }

        .map-block img {
            max-width: 180px;
            margin: 0px 30px 0px 0px
        }

        .map-block h2, .map-block p {
            color: #000000;
        }

    @media(max-width:675px) {
        .map-block {
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

            .map-block > div {
                align-items: center;
            }

            .map-block img {
                max-width: 150px;
                margin: 0px;
            }

            .map-block h2, .map-block h5 {
                text-align: center;
            }
    }

    .filter-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .filter-row .nav-item.dropdown > a {
            border: 1px solid #EEEEEE;
            border-radius: 16px;
            padding: 12px 18px;
            font-weight: 600;
            font-size: 1.2em;
        }

        .filter-row .dropdown-menu.show {
            border-radius: 16px;
            padding: 12px;
            width: 100%;
        }

    .highlight {
        font-size: 1.4em;
    }

        .highlight span {
            color: #FFF;
            background: #00AEEF;
            padding: 16px;
            border-radius: 12px;
        }

    a.light {
        color: #a7a7a7;
    }

    .business-tabs {
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }

        .business-tabs li {
            display: flex;
            text-align: left;
            padding: 16px 24px 16px 16px;
            background: #f1f1f1;
            border-right: 2px solid #FFF;
            font-weight: 600;
            text-transform: uppercase;
            margin: 0px;
            cursor: pointer;
            width: 100%;
        }

            .business-tabs li.active {
                background-color: #FEB53E;
                color: #FFF;
            }

    p.larger {
        font-size: 1.25em;
    }

    .content-box {
        padding: 24px;
        border: 1px solid #EEEEEE;
    }

    .price-input > span {
        position: absolute;
        left: 30px;
        top: 10px;
        font-size: 1.5em;
        font-weight: 800;
    }

    .promote-map {
        display: flex;
        width: 100%;
        text-align: center;
        padding: 26px;
        background: #FFF;
        justify-content: center;
        background: #EEEEEE;
    }

        .promote-map a {
            color: #FFF;
            padding: 10px 20px;
            background: #DA225F;
            border: 2px solid #DA225F;
        }

            .promote-map a:hover {
                color: #000000;
                padding: 10px 20px;
                background: #FFF;
                border: 2px solid #1b1b1b;
            }

    .border-panel {
        padding: 20px 14px;
        border: 1px solid rgba(0,0,0,0.07);
    }

    @media(min-width:991px) {
        .desktop-hide, .nav-item.desktop-hide {
            display: none;
        }
    }

    #SubscribePanel .field-validation-error {
        color: #FFF;
        width: 100%;
        display: block;
    }

    .gm-style-iw-d {
        padding: 10px !important;
        margin: 0 !important;
        overflow: hidden !important;
    }

    .gm-style-iw {
        padding: 0 !important;
        margin: 0 !important;
        max-width: none !important;
        box-sizing: border-box;
    }

    .gm-style-iw-chr {
        height: 4px !important;
    }

    .accept-follower {
        cursor: pointer;
        background: #DA225F;
        padding: 8px;
        color: #FFF;
        border-radius: 8px;
    }

    .ignore-follower {
        cursor: pointer;
        background: #BBBBBB;
        padding: 8px;
        color: #FFF;
        border-radius: 8px;
    }

    .remove-follower {
        cursor: pointer;
        background: rgba(0,0,0,0.2);
        padding: 8px;
        color: #FFF;
        border-radius: 8px;
    }

    .notification-block {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

        .notification-block .notification-item {
            flex-basis: 33%;
            padding: 10px;
            margin: 0px;
        }

            .notification-block .notification-item div {
                border-radius: 20px;
                align-items: center;
                justify-content: center;
                min-height: 180px;
                display: flex;
                flex-direction: column;
                text-align: center;
                padding: 15px;
                background: #FAFAFA;
                box-shadow: 0px 0px 10px rgb(0 0 0 / 25%);
                border: 8px solid #FFF;
            }

                .notification-block .notification-item div span {
                    font-weight: 600;
                    font-size: 1.15em;
                    margin-bottom: 10px;
                }

    @media(max-width:767px) {
        .notification-block .notification-item {
            flex-basis: 50%;
        }
    }

    @media(max-width:540) {
        .notification-block .notification-item {
            flex-basis: 100%;
        }
    }

    .notification-item a:hover div {
        background: #DA225F;
        color: #FFF;
    }

.btn-light {
    padding: 10px;
    color: #808080;
    border-radius: 10px;
    font-size: 0.95em;
    background: var(--light);
}

    #deleteAccount {
        margin-top: 20px;
        border-top: 1px dashed #DADADA;
        padding-top: 10px;
    }

    .inline-form {
        display: flex;
        flex-direction: row;
        justify-content: left;
        align-items: center;
    }

        .inline-form > label {
            margin: 0px 0px 0px 10px;
            font-size: 0.9em;
        }

#deleteAccount .inline-form {
    gap:10px;
}

#deleteAccount .inline-form input[type='checkbox'] {
    flex:0 0 20px;
}

#deleteAccount .inline-form input[type='submit'], #deleteAccount .inline-form a {
    display:flex;
    flex:0 0 calc(50% - 5px);
}


/* Follow Block */
.follow-results {
    display: flex;
    flex-direction: row;
    width: 100%;
    column-gap: 20px;
    row-gap: 20px;
    flex-wrap: wrap;
}

    .follow-block {
        display: flex;
        flex-direction: column;
        width: calc(33% - 20px);
        flex-wrap: nowrap;
        margin-bottom: 10px;
        background: rgba(240,240,240,1);
        padding: 40px 20px;
        border-radius: 20px;
    }

        .follow-block .follow-user {
            display: flex;
            width: 100%;
            justify-content: center;
            align-items: center;
        }

        .follow-block .follow-name {
            display: flex;
            width: 100%;
            justify-content: center;
            align-items: center;
            padding: 20px 10px;
            font-weight: 600;
        }

        .follow-block .follow-action {
            display: flex;
            width: 100%;
            justify-content: center;
            align-items: center;
        }

    @media(min-width:1540px) {
        .follow-block {
            width: calc(25% - 20px);
        }
    }

    @media(max-width:991px) {
        .follow-results {
            flex-direction: column;
        }

        .follow-block {
            width: 100%;
            flex-direction: row;
        }

            .follow-block .follow-user {
                width: 30%;
                max-width: 180px;
                justify-content: flex-start;
                align-items: center;
            }

                .follow-block .follow-user .user-avatar {
                    margin: 0px;
                }

                .follow-block .follow-user img {
                    max-width: 100%;
                }

            .follow-block .follow-name {
                width: 40%;
                justify-content: flex-start;
                align-items: center;
                flex-grow: 1;
            }

            .follow-block .follow-action {
                width: 30%;
                justify-content: flex-end;
                align-items: center;
            }
    }

    @media(max-width:540px) {
        .follow-block .follow-user {
            width: 20%;
        }


        .follow-block .follow-name {
            width: 40%;
        }

        .follow-block .follow-action {
            width: 40%;
        }

            .follow-block .follow-action > div {
                display: flex;
                width: 100%;
                flex-direction: row;
                font-weight: 600;
                font-size: 0.9em;
                justify-content: flex-end;
            }

            .follow-block .follow-action .btn {
                padding: 10px;
            }
    }

    .completeformoptional, .completeform {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .upload-images {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        margin-top: 0px;
    }

    .business-container #photo-panel {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

        .business-container #photo-panel .img-item {
            display: flex;
            width: calc(50% - 10px);
            max-width: 210px;
        }

    @media(min-width:1200px) {
        .business-container #photo-panel .img-item {
            display: flex;
            width: calc(25% - 10px);
        }
    }

    #ReviewIt ul li {
        margin-bottom: 10px;
    }

    .dateTicked {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        column-gap: 2px;
    }

        .dateTicked select:nth-of-type(2) {
            width: calc(46% - 4px);
        }

        .dateTicked select:nth-of-type(1), .dateTicked select:nth-of-type(3) {
            width: 27%;
        }

        /* * */

.social-icon {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.user-detail .social-icon {
    justify-content: center;
}

.social-icon p {
    margin: 0px;
    padding: 0px;
    font-weight: 600;
}
.share-button i {
    font-size:2em;
    margin:0px 10px 0px 0px;
}

/* Weather */

.current-weather {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 30px;
    margin: 20px 0px;
    background: #f7f7f7;
    border-radius: 4px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

    .current-weather ul {
        display: flex;
        flex-direction: row;
        width: 100%;
        padding: 0px;
        margin: 0px;
        list-style-type: none;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        -ms-overflow-style: none; /* IE 10+ */
        scrollbar-width: none; /* Firefox */
    }

        .current-weather ul::-webkit-scrollbar {
            display: none;
        }

        .current-weather ul li {
            flex: 0 0 100%; /* one full item per "page" */
            scroll-snap-align: start;
            scroll-snap-stop: always;
            display: flex;
            flex-direction: column;
            padding: 25px 5px 5px 5px;
            margin: 0px;
            border-radius: 10px;
            background: var(--white);
            box-sizing: border-box;
        }

        .current-weather ul li .forecast-top {
            margin: 10px 0px;
        }

        .current-weather ul li .forecast-details {
            display: flex;
            flex-direction: row;
            padding: 0px;
            margin: 0px;
            width: 100%;
            gap: 5px;
            justify-content: flex-start;
            align-items: flex-start;
            background: var(--white);
        }

        .current-weather ul li .forecast-details span {
            display: flex;
            flex-direction: column;
            padding: 10px 0px;
            margin: 0px;
            justify-content: flex-start;
            align-items: center;
            border-radius: 4px;
            background: var(--light);
            width:calc(33.3%);
        }

    .current-weather .scroll-arrow-ul {
        position:absolute   ;
        list-style-type:none;
        display:flex;
        flex-direction:column;
        width:40px;
        gap:10px;
        margin:0px;
        padding:16px 4px;
        top:0px;
        right:0px;
        background:var(--red);
        justify-content:center;
        align-items:center;
        cursor:pointer;
    }

        .current-weather .scroll-arrow-ul li {
            display:flex;
            width: 16px;
            margin:0px;
            padding:0px;
            border-top:3px solid var(--white);
        }

            .current-weather .scroll-arrow-ul li:first-child {
                transform: rotate(35deg);
            }

            .current-weather .scroll-arrow-ul li:last-child {
                transform: rotate(-35deg);
                margin-top:-4px;
            }

/* FAQ */

/*#region faq*/

#faq {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: calc(100%);
    background: var(--offwhite);
    border-top: 2px solid var(--white);
    margin: 0px;
    padding: 60px 0px;
}

    #faq > div {
        display: flex;
        width: 100%;
        max-width: 1600px;
        position: relative;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }


    #faq ul.questions {
        list-style-type: none;
        display: flex;
        width: 100%;
        max-width: 1600px;
        position: relative;
        flex-direction: column;
        margin-top: 30px;
        padding: 0px;
    }

        #faq ul.questions > li {
            display: flex;
            flex-direction: column;
            position: relative;
            width: 100%;
            margin: 0px;
            padding: 0px;
            background: var(--white);
            border-bottom: 1px solid var(--red);
        }

        #faq ul.questions li div.question {
            display: flex;
            flex-direction: row;
            position: relative;
            width: 100%;
            margin: 0px;
            padding: 0px;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

            #faq ul.questions li div.question p {
                display: flex;
                width: 80%;
                flex-grow: 1;
                margin: 0px;
                padding: 0px;
                font-weight: 700;
                font-size: 1em;
                text-align:left;
            }


            #faq ul.questions li div.question ul.toggle {
                list-style-type: none;
                display: flex;
                flex-direction: column;
                width: 60px;
                height: 60px;
                min-width: 40px;
                background: var(--white);
                position: relative;
                justify-content: center;
                align-items: center;
                margin: 0px 0px 0px 0px;
                padding: 0px;
                border: 0px;
            }

                #faq ul.questions li div.question ul.toggle li {
                    display: flex;
                    width: 26px;
                    border-top: 2px solid var(--black);
                    padding: 4px 0px;
                    background: var(--white);
                    transition: all 0.025s linear;
                }

                    #faq ul.questions li div.question ul.toggle li:nth-of-type(1) {
                        margin-top: 30px;
                    }

                    #faq ul.questions li div.question ul.toggle li:nth-of-type(2) {
                        transform: rotate(90deg);
                        position: absolute;
                        background: unset;
                        right: 20px;
                        top: 26px;
                    }

                #faq ul.questions li div.question ul.toggle.active li:nth-of-type(1) {
                    transform: rotate(45deg);
                    top: -3px;
                    position: absolute;
                    right: 19px;
                }

                #faq ul.questions li div.question ul.toggle.active li:nth-of-type(2) {
                    transform: rotate(-45deg);
                    background: unset;
                    top: 27px;
                    position: absolute;
                    right: 14px;
                }

        #faq ul.questions li div.response {
            display: flex;
            flex-direction: column;
            height: 1px;
            visibility: hidden;
            opacity: 0;
            transition: all 0.0s linear;
            padding: 0px;
        }


            #faq ul.questions li div.response ul {
                margin-top: 10px;
            }


            #faq ul.questions li div.response.active {
                background: var(--white);
                padding: 20px 0px;
            }

            #faq ul.questions li div.response p {
                font-size: 1em;
                max-width: 1180px;
                margin: 0px;
                text-align: left;
            }

            /* Claims */

.business-panel-3 ul {
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:flex-start;
    position:relative;
    list-style-type:none;
    gap:10px;
    margin: 0px;
    padding: 0px;
}

    .business-panel-3 ul li {
        display:flex;
        flex-direction:column;
        justify-content:flex-start;
        align-items:flex-start;
        margin: 0px;
        padding: 0px;
    }

    .business-panel-3 ul li p {
        margin:0px;
        padding:0px;
    }

.experience-profile-desc {
    
}

    .experience-profile-desc h4 {
        color: var(--red);
        margin-top: 30px;
        font-weight:400;
    }

    .experience-profile-desc ul.facilities {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 5px;
        margin: 0px;
        padding: 0px;
        flex-wrap:wrap;
    }

        .experience-profile-desc ul.facilities li {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            flex-wrap: wrap;
            background: var(--light);
            padding: 10px 20px;
            margin:0px;
            font-weight:500;
        }

.guidelines-container, .reviews-container {
    padding: 40px 30px 20px 30px;
    border: 4px solid var(--light);
    margin: 40px 0px 15px 0px;
}

.guidelines-container, .location-container, .reviews-container {
    padding-top: 60px;
    width:100%;
}

@media(max-width:699px){
    .guidelines-container {
        padding: 30px 15px 15px 15px;
        border: 4px solid var(--light);
        margin: 40px 0px 15px 0px;
    }

}

/* Activity Icons */
.experience-profile-desc ul.activity-icons {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
    margin: 0px;
    padding: 0px;
    flex-wrap: wrap;
}

    .experience-profile-desc ul.activity-icons li {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        flex-wrap:wrap;
        font-size:1em;
        max-width:calc(100% - 155px);
        font-weight:500;
    }

        .experience-profile-desc ul.activity-icons li div.icon-container {
            display: flex;
            flex: 0 0 auto; /* do not shrink */
            flex-direction: column;
            min-width:120px;
            width: 100%;
            height: 120px;
            justify-content: center;
            align-items: center;
            border: 1px solid var(--light);
            margin:0px 0px 10px 0px;
        }

            .experience-profile-desc ul.activity-icons li div.icon-container img {
                width: 50px;
                max-width: 50px;
                max-height: 50px;
                filter:invert(0.1);
            }

/* Add to Bucket List */

.add-to-bucket-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--light);
    margin: 0px 0px 30px 0px;
    padding: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    width:100%;
}
    .add-to-bucket-list .count {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin: 0px;
        padding: 0px;
    }

        .add-to-bucket-list .count i {
            color: var(--red);
            font-size:2.75em;
            padding:0px 20px;
        }

        .add-to-bucket-list .count p {
            color: var(--black);
            font-weight: 300;
            font-size: 1.05em;
            margin:0px;
            padding:0px 10px 0px 0px;    
        }

            .add-to-bucket-list .count p span {
                font-weight: 800;
            }

    .add-to-bucket-list .btn {
        display:flex;
        width:100%;
        margin-top:30px;
    }

    .add-to-bucket-list .btn:hover {
    }

    /* Price Container */

.price-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0px;
    padding: 0px;
    width:100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

    .price-container .content {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin: 0px;
        padding: 0px;
        width: 100%;
    }

        .price-container .content .price, .price-container .content .link, .price-container .content .claim, .price-container .content .social-icon {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            margin: 0px;
            padding: 20px;
            width: calc(100%);
        }

        .price-container .content .price {
            background:var(--light);
        }

        .price-container .content .social-icon {
            align-items:center;
        }

        .price-container .content .link a {
            width: 100%;
        }

        .price-container .content .price h2 {
            font-weight:800;
            font-size:1.5em;
        }

        .price-container .content .affiliate {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            margin: 0px;
            padding: 20px;
            width: calc(100%);
        }

            .price-container .content .price p {
                margin: 0px;
                padding: 0px;
            }

        .price-container .content .social-icon a img, .blog-article .share-button img, .supplier-contact .social-icon img, .sidebar.sidebar-filter .share-button img, #comment-modal-success .share-button img {
            width: 35px;
            margin-right: 10px;
        }

.user-details .social-icon {
    justify-content: center;
}

        .user-details .social-icon img {
            width: 30px;
            margin-right: 7px;
        }

/* Supporting */

.supporting-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 75px 10px 0px 10px;
    padding: 0px;
    width: calc(100% - 20px);
}

    .supporting-container .content {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin: 0px;
        padding: 0px;
        width: 100%;
        max-width: 1600px;
    }

        .supporting-container .content ul.prd-supp {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            margin: 0px;
            padding: 0px;
            width: 100%;
            flex-wrap: wrap;
            gap: 5px;
        }

        .supporting-container .content ul.prd-supp li {
            display:flex;
            justify-content:center;
            align-items:center;
            flex:1;
            min-width:100px;
            max-width:180px;
        }

#FormFeedback label[for="FormRating"] {
    justify-content: center;
    align-items:center;
}

#FormFeedback label[for="FormRating"] span {
    text-align: center;
}

#FormFeedback ul li > label[for="Message"] {
    justify-content: flex-start;
}

.icon-container .custom-tooltip {
    visibility: hidden;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 6px 10px;
    border-radius: 6px;
    position: absolute;
    z-index: 100;
    white-space: nowrap;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    background: #da225f;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-container:hover .custom-tooltip {
    visibility: visible;
    opacity: 1;
}

/* Ads */

.ad-spot-300-250,
.ad-spot-728-90 {
    display: none;
}

    .ad-spot-300-250.ad-loaded,
    .ad-spot-728-90.ad-loaded {
        display: flex;
    }

.ad-spot-300-250 {
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 20px 0px 0px 0px;
    border: 2px solid rgba(230, 230, 230, 1);
    padding-top: 20px;
    padding-bottom: 20px;
    background: rgba(245, 245, 245, 1);
}

.ad-spot-728-90 {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 10px 0px 20px 0px;
    padding-top: 10px;
    padding-bottom: 20px;
}

@media(max-width:991px){
    .ad-spot-300-250 {
        display: none;
    }
}

@media(max-width:1035px) {
    .ad-spot-728-90 {
        display: none;
    }
}

/* Carousel - Onboarding */

.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.35s ease;
}

.carousel-slide {
    flex: 0 0 calc(100% / 3);
    padding: 0 10px;
    box-sizing: border-box;
}

.carousel-slide .exp-block {
    position:relative;
}

/* dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

    .carousel-dots button {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: none;
        background: #ccc;
        cursor: pointer;
    }

        .carousel-dots button.active {
            background: #1f6fff;
        }

/* responsive */
@media (max-width: 1200px) {
    .carousel-slide {
        flex-basis: calc(100% / 3);
    }
}

@media (max-width: 992px) {
    .carousel-slide {
        flex-basis: calc(100% / 2);
    }
}

@media (max-width: 690px) {
    .carousel-slide {
        flex-basis: calc(100% / 1);
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        flex-basis: 100%;
    }
}

.step2 li > span {
    padding-bottom: 10px;
    display: flex;
    font-weight: 600;
}

/* Map wrapper */

.map-shell {
    position: relative;
    width: 100%;
}


/* Floating red star launcher */

.bucket-map-launcher {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 6;
}

.bucket-map-star-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    background: #DA225F;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    padding: 0;
}

    .bucket-map-star-btn i {
        font-size: 21px;
        line-height: 1;
    }

    .bucket-map-star-btn:hover,
    .bucket-map-star-btn:focus {
        background: #c51e55;
        outline: none;
    }


/* Panel */

.bucket-map-panel {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 7;
    width: 300px;
    max-width: calc(100% - 40px);
    padding: 16px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(6px);
    /* new */
    display: none;
}

    .bucket-map-panel.is-open {
        display: block;
    }

.bucket-map-panel-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border: 0;
    background: transparent;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    z-index: 2;
}

    .bucket-map-panel-close i {
        font-size: 15px;
    }

    .bucket-map-panel-close:hover,
    .bucket-map-panel-close:focus {
        color: #DA225F;
        outline: none;
    }

.bucket-map-panel-title {
    margin: 0 0 12px 0;
    padding-right: 28px;
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

.bucket-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 12px 0;
    cursor: pointer;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

    .bucket-toggle-row:first-of-type {
        border-top: 0;
        padding-top: 0;
    }

    .bucket-toggle-row:last-of-type {
        padding-bottom: 0;
    }

.bucket-toggle-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.bucket-toggle-main {
    font-size: 13px;
    font-weight: 600;
    color: #222;
}

.bucket-toggle-label {
    margin-top: 3px;
    font-size: 12px;
    font-weight: 700;
    color: #DA225F;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bucket-switch {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
    width: 48px;
    height: 28px;
}

    .bucket-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.bucket-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #d8d8d8;
    border-radius: 999px;
    transition: 0.2s ease;
}

    .bucket-slider:before {
        position: absolute;
        content: "";
        width: 22px;
        height: 22px;
        left: 3px;
        top: 3px;
        background: #ffffff;
        border-radius: 50%;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
        transition: 0.2s ease;
    }

.bucket-switch input:checked + .bucket-slider {
    background: #DA225F;
}

    .bucket-switch input:checked + .bucket-slider:before {
        transform: translateX(20px);
    }


/* Mobile */

@media (max-width: 767px) {
    .bucket-map-launcher {
        top: 12px;
        left: 12px;
    }

    .bucket-map-star-btn {
        width: 44px;
        height: 44px;
    }

        .bucket-map-star-btn i {
            font-size: 19px;
        }

    .bucket-map-panel {
        top: 12px;
        left: 12px;
        right: 12px;
        width: auto;
        max-width: none;
        padding: 14px;
    }

    .bucket-toggle-main {
        font-size: 12px;
    }
}

#onboardingModal .modal-content {
    padding: 40px 30px;
}

.map-photo-marker {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

    .map-photo-marker img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .map-photo-marker.is-completed::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.45);
        z-index: 2;
    }

    .map-photo-marker.is-completed::after {
        content: "";
        position: absolute;
        z-index: 3;
        left: 50%;
        top: 48%;
        width: 16px;
        height: 30px;
        border-right: 5px solid #fff;
        border-bottom: 5px solid #fff;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    @media(max-width:649px){
        .rating-summery ul li span {
            width: 60px;
            min-width: 60px;
        }
        .reviews-container {
            padding: 40px 15px 20px 15px;
        }
        .review-box {
            display:none;
        }
    }

.card-header button.btn{
    background:none;
    color:var(--black);
    padding:16px 0px;
}

.btn.completed {
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    background:var(--green);
}

.btn.completed i {
    padding:0px;
    font-size:1.5em;
}

@media(max-width:699px){
    .filter-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap:wrap;
    }
}

.profile-tabs {
    margin-bottom:30px;
    flex-wrap:nowrap;
}

.nav-tabs .nav-item {
    flex: 0 1 150px;
}

    .nav-tabs .nav-item .nav-link {
        padding: 0.5rem 0.5rem;
    }