body {
    background-color: #009b90;
}
b {
    font-weight: 500;
}
h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 600;
    -webkit-font-smoothing: antialiased !important;
    letter-spacing: 0px !important;
    color: #009b90;
}
h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.25px;
    color: #009b90;
    -webkit-font-smoothing: antialiased !important;
    padding-top: 8px;
    margin-bottom: 4px;
}
h3 {
    font-family: 'Roboto', sans-serif;
    /* font-weight: 500 !important; */
    font-size: 24px;
    line-height: 26px;
    font-weight: 400;
    color: #444;
    word-spacing: 1.25px;
    letter-spacing: 0.025px !important;
}
p {
    font-family: 'Roboto', sans-serif;
    color: #444;
    text-align: justify;
    font-size: 15px;
}

/* Custom Styles */

.align-items-center {
    display: flex; 
    align-items: center;  /*Aligns vertically center */
    justify-content: center; /*Aligns horizontally center */
}
/* .gmap-link::after {
    content: '';
    font-size: 26px;
    line-height: 10px;
    color: #aaa;
    position: relative;
    top: 4.5px;
} */
/* .gmap-link:hover, .gmap-link:active, .gmap-link:focus {
    margin-top: -8px;
} */
.gmap-link {
    background-image: url(../images/gmaps-icon.svg);
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: top !important;
    position: relative;
    display: block;
    margin-right: -6px !important;
    float: right;
    width: 24px;
    height: 24px;
}
.gmap-link-small {
    background-image: url(../images/gmaps-icon.svg);
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: top !important;
    display: block;
    /* margin-right: -11px; */
    margin-left: 5px !important;
    float: right;
    position: relative;
    width: 28px;
    height: 28px;
}
/* .gmap-link-sm:hover::after, .gmap-link-sm:active::after, .gmap-link-sm:focus::after {
    color: #009b90 !important;
} */
.booking-bg {
    padding-top: 20px;
    padding-bottom: 100px;
    background-color: rgba(0, 0, 0, 0.5);
}
.booking-bg-sm {
    height: auto;
    background-color: rgba(0, 0, 0, 0.25);
    /* background-color: #555; */
    padding-top: 23.5px !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
    padding-bottom: 30px !important;
}
.badge-primary {
    font-size: 11px;
    text-align: center; 
    border-radius: 4px;
    text-indent: 1px;
    vertical-align: text-top;
    padding: 2.75px;
    margin-left: 6px;
    margin-top: 2.2px;
    letter-spacing: 0.5px;
    color: #fff !important;
    background-color: #999;
    text-shadow: 0px 1px 2px #666;
    /* border: 1.5px solid #888;
    border-radius: px; */
}
.btn:focus, a:focus {
    outline: none;
}
.btn {
    font-family: 'Roboto', sans-serif;
    font-weight: 400 !important;
    font-size: 16px;
    letter-spacing: 0.4px;
    padding-top: 7px;
    padding-bottom: 5px;
    padding-left: 11px;
    padding-right: 11px;
    /* height: 40px; */
    display: inline-block;
    text-transform: uppercase;
    text-shadow: 0px 1px 2px #666;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.btn-close {
    opacity: 0.4 !important;
    background-size: 20px;
}
.btn-close:hover {
    filter: invert(49%) sepia(44%) saturate(6182%) hue-rotate(149deg) brightness(80%) contrast(101%) !important;
    opacity: 1 !important;
}
.btn-primary {
    background-color: #009b90;
    border: none;
}
.btn-primary:hover {
    background-color: #777;
    border: none;
}
.btn-primary:active {
    background-color: #555;
    border: none;
}
.btn-primary-submit {
    font-size: 20px;
    width: 100%;
    height: 50px;
    color: white;
    background-color: #009b90;
    margin-top: 30.95px;
    border: none;
}
.btn-primary-submit:hover {
    color: white;
    background-color: #02aea2;
    border: none;
}
.btn-primary-submit:active {
    background-color: #009b90;
    border: none;
}
.btn-primary-sm {
    color: white;
    background-color: #009b90;
    width: 100%;
    font-size: 25px;
    letter-spacing: 1px;
    border: none;
    border-radius: 100px;
}
.btn-primary-sm:hover {
    color: white;
    background-color: #02aea2;
    border: none;
}
.btn-primary-sm:active {
    background-color: #009b90;
    border: none;
}
.btn-secondary {
    background-color: #888;
    border: none;
}
.btn-secondary:hover {
    background-color: #777;
    border: none;
}
.btn-secondary:active {
    background-color: #555;
    border: none;
}
.bullet-list ul {
    list-style: none; /* Remove default bullets */
    padding-left: 20px !important;
}
.bullet-list ul li{
    font-family: 'Roboto', sans-serif;
    color: #444;
    text-align: justify;
    font-size: 15px;
}
.bullet-list ul li::before {
    content: "•";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    font-size: 20px !important;
    color: #009b90 !important; /* Change the color */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */ 
    width: 0.7em; /* Also needed for space (tweak if needed) */
    margin-left: -0.7em; /* Also needed for space (tweak if needed) */
    margin-top: -3.5px;
    float: left;
}
.carousel-control-next, .carousel-control-prev {
    width: 100px;
    height: 100%;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 3rem;
    height: 3rem;
}
.carousel-small-next, .carousel-small-prev {
    height: 100%;
    z-index: 50 !important;
}
.carousel-small-next-icon, .carousel-small-prev-icon {
    border-radius: 100%;
    border: #ffffff 1.5px solid;
    background-size: 1.5rem;
    background-color: #000;
    margin-bottom: -104px !important;
    opacity: 0.85;
    width: 32px;
    height: 32px;
    -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.25);  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
    -moz-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.25);  /* Firefox 3.5 - 3.6 */
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.25);  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}
.carousel-small-prev-icon {
    margin-left: -30px !important;
}
.carousel-small-next-icon {
    margin-right: -30px !important;
}
.carousel-small-next-icon:hover, .carousel-small-prev-icon:hover {
    background-color: #009b90;
}
.carousel-small-prev:hover > .carousel-small-prev-icon {
    background-color: #009b90;
    opacity: 1;
}
.carousel-small-next:hover > .carousel-small-next-icon {
    background-color: #009b90;
    opacity: 1;
}
.carousel-indicators {
    z-index: 100;
    /* background-color: rgb(255, 0, 255, 0.5); */
    margin-left: 30%; 
    margin-right: 30%;
}
.carousel-indicators-sm {
    z-index: 100;
    /* background-color: rgb(255, 0, 255, 0.5); */
    margin-left: 60px; 
    margin-right: 60px;
    margin-bottom: 23.5px;
}
.carousel-inner-sm {
    height: 174px !important;
    border-radius: 0px 10px 0px 0px;
    z-index: 25 !important;
}
.carousel-inner-sm-left {
    border-radius: 10px 0px 0px 0px !important;
    z-index: 25 !important;
}
.chevron-down {
    background-image: url(../images/chevron-down.svg);
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-size: 13px;
    position: relative;
    display: block;
    float: right;
    width: 10px;
    height: 26px;
    margin-left: 8px;
    padding-left: 13px;
    /* background-color: lawngreen; */

    -webkit-transition: transform 0.2s ease-in;
    -moz-transition: transform 0.2s ease-in;
    -ms-transition: transform 0.2s ease-in;
    -o-transition: transform 0.2s ease-in;
    transition: transform 0.2s ease-in;
}
.copyright {
    padding-left: 16px;
}
.copyright-sm {
    display: none !important;
    font-size: 15px;
    color: white;
    margin-left: 0px;
    margin-right: 0px;
    text-shadow: 0px 1px 2px #444;
}
.divider {
    padding-left: 8px;
    padding-right: 8px;
}
.divider-sm {
    font-family: 'Roboto', sans-serif;
    font-weight: 400 !important;
    padding-left: 5px;
    padding-right: 5px;
}
.dropdown-dt > .dropdown-menu-dt {
    display: block;
    visibility: hidden;
    opacity: 0;

    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
.dropdown-dt:hover > .dropdown-menu-dt {
    visibility: visible !important;
    opacity: 1 !important;
}
.dropdown-dt:hover .dropdown-toggle {
    background-image: linear-gradient(#ffffff, #dbdbdb);
    -webkit-box-shadow: inset 0px 0px 0px 1.5px #cccccc;
    -moz-box-shadow: inset 0px 0px 0px 1.5px #cccccc;
    box-shadow: inset 0px 0px 0px 1.5px #cccccc;
}
.dropdown-item-dt {
    font-family: 'Roboto', sans-serif;
    background-color: rgba(238, 238, 238, 0.95);
    color: #555;
    line-height: 24px;
    padding-top: 7px;
    padding-bottom: 5px;
    padding-left: 22px;
    padding-right: 22px;
    margin-bottom: 0px;

    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}
.dropdown-item-dt-empty {
    color: rgba(238, 238, 238, 0) !important;
    pointer-events: none !important;
}
.dropdown-item-dt-right {
    font-family: 'Roboto', sans-serif;
    color: #555;
    letter-spacing: 0.5px;
    background-color: rgba(238, 238, 238, 0.95) !important;
    text-align: left !important;
    line-height: 24px;
    padding-top: 7px;
    padding-bottom: 5px;
    padding-left: 22px !important;
    padding-right: 22px !important;
    margin-right: 22px !important;
    margin-bottom: 0px !important;

    display: block;
    width: 100% !important;
    /* min-width: 134px; */
    min-width: 156px;
    clear: both;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;

    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}
.dropdown-item-dt-right::after {
    content: "";
    background-image: url(../images/chevron-right.svg);
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-size: 7.5px;
    position: relative;
    display: block;
    float: right;
    clear: both;
    margin-right: 10px;
    width: 7.25px;
    height: 22px;
    transform: rotate(-180deg);

    -webkit-transition: transform 0.2s ease-in;
    -moz-transition: transform 0.2s ease-in;
    -ms-transition: transform 0.2s ease-in;
    -o-transition: transform 0.2s ease-in;
    transition: transform 0.2s ease-in;
}
.dropdown-menu-dt > li:hover > .dropdown-item-dt-right::after {
    background-image: url(../images/chevron-right-white.svg);
    transform: rotate(0deg);
}
.dropdown-menu-dt > li:hover > .dropdown-item-dt-right {
    background-color: #009b90 !important;
    color: white;
}
.dropdown-item-dt-right::after {
    float: left;
}
.dropdown-item-dt-hyperlink {
    font-family: 'Roboto', sans-serif;
    background-color: rgba(238, 238, 238, 0.95) !important;
    color: #555;
    text-align: left !important;
    line-height: 24px;
    padding-top: 7px;
    padding-bottom: 5px;
    padding-left: 22px;
    padding-right: 22px;
    margin-bottom: 0px;

    display: block;
    width: 100% !important;
    clear: both;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;

    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}
.dropdown-item-dt-hyperlink:hover, .dropdown-item-dt-hyperlink:active {
    background-color: #009b90 !important;
    color: white !important;
}
.dropdown-item-mb-sublink > .submenu-mb {
    background-color: rgba(255, 255, 255, 0.95);
    display: none !important;
}
.dropdown-item-mb-sublink:hover > .submenu-mb {
    display: block !important;
}
.dropdown-item-dt-sublink:hover > .submenu-dt-left {
    display: block !important;
    /* visibility: visible !important;
    opacity: 1 !important; */
}
.dropdown-item-dt-sublink:hover > .submenu-dt-left-hyperlink {
    display: block !important;
}
/* .dropdown-item-dt-sublink > .dropdown-item-dt-hyperlink {
    border-right: 1.5px solid rgb(238, 238, 238, 0.95);
} */
.dropdown-item-dt-sublink > .submenu-dt-left {
    right: 100%; 
    left: auto;
    
    -webkit-box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3); /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
    -moz-box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3); /* Firefox 3.5 - 3.6 */
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3); /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}
.dropdown-item-dt-sublink .hotel-wrapper {
    opacity: 0 !important;
}
.dropdown-item-dt-sublink:hover .hotel-wrapper {
    opacity: 1 !important;
}
.dropdown-item-dt-hyperlink-last {
    border-radius: 0px 0px 10px 10px !important;
}
.dropdown-item-dt-sublink li:first-child .dropdown-item-dt-hyperlink {
    border-radius: 0px 0px 0px 0px !important;
}
.dropdown-item-dt-sublink li:last-child .dropdown-item-dt-hyperlink {
    border-radius: 0px 0px 0px 10px !important;
}
.dropdown-item-mb {
    color: #555;
}
.dropdown-menu-dt {
    border: none;
    margin-top: 0px !important;
    padding-top: 0px;
    padding-bottom: 0px;

    background-color: rgba(238, 238, 238, 0);
    border-radius: 0px 10px 10px 10px;
    min-width: 100px !important;

    -webkit-box-shadow: 0px 4px 5px 1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 4px 5px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 4px 5px 1px rgba(0, 0, 0, 0.3);
}
.dropdown-menu-dt li {
    position: relative;
}
.dropdown-menu-dt > li:hover > .dropdown-item-dt {
    background-color: #009b90;
    color: white !important;
}
.dropdown-menu-dt > li:active > .dropdown-item-dt {
    background-color: #009b90;
    color: white !important;
}
.dropdown-menu-mb {
    border: none;
    background-color: rgba(255, 255, 255, 1);
    margin-bottom: 12px;
}
.dropdown-menu-mb > li:hover > .dropdown-item-mb {
    background-color: #009b90;
    color: white !important;
}
.dropdown-menu-dt-space-top {
    height: 10px !important;
    background-color: rgba(238, 238, 238, 0.95);
    column-span: all !important;
}
.dropdown-menu-dt-space-bottom {
    height: 10px !important;
    background-color: rgba(238, 238, 238, 0.95);
}
.dropdown-menu-dt > .dropdown-menu-dt-space-bottom {
    border-radius: 0px 0px 10px 10px;
    column-span: all !important;
}
/* .dropdown-menu-dt-1 li:nth-child(n+2):hover ~ .dropdown-item-dt-last {
    border-radius: 0px 0px 0px 0px !important;
} */
.dropdown-menu-dt-4 li:nth-child(n+2):hover ~ .dropdown-item-dt-last-left {
    border-radius: 0px 0px 10px 0px !important;
}
/* .dropdown-menu-dt li:hover + .dropdown-item-dt-last {
    border-radius: 0px 0px 0px 10px !important;
} */
.dropdown-menu-dt li:hover + .dropdown-item-dt-last-left {
    border-radius: 0px 0px 10px 0px !important;
}
.dropdown-menu-dt li:hover ~ .dropdown-item-dt-hyperlink-last {
    border-radius: 0px 0px 10px 0px !important;
}
.dropdown-menu-dt-3 > li:nth-child(2) > .submenu-dt { 
    top: 0px !important;
}
.dropdown-menu-dt-4 > li:nth-child(2) > .submenu-dt-left { 
    top: 0px !important;
}
.dropdown-menu-dt-4 > li:nth-child(3) > .submenu-dt-left { 
    top: -36px !important;
}
.dropdown-menu-dt-7 {
    width: auto !important;
}
.dropdown-menu-dt-7 li:first-child:hover ~ .dropdown-item-dt-hyperlink-last {
    border-radius: 0px 0px 10px 10px !important;
}
.dropdown-menu-dt-7 li:nth-child(3):hover ~ .dropdown-item-dt-hyperlink-last {
    border-radius: 0px 0px 10px 10px !important;
}
.dropdown-menu-dt-7 li:nth-child(4):hover ~ .dropdown-item-dt-hyperlink-last {
    border-radius: 0px 0px 10px 10px !important;
}
.dropdown-menu-dt-7 li:nth-child(5):hover ~ .dropdown-item-dt-hyperlink-last {
    border-radius: 0px 0px 10px 10px !important;
}
.dropdown-menu-dt-7 li:nth-child(6):hover ~ .dropdown-item-dt-hyperlink-last {
    border-radius: 0px 0px 10px 10px !important;
}
.dropdown-menu-dt-7 li:nth-child(7):hover ~ .dropdown-item-dt-hyperlink-last {
    border-radius: 0px 0px 10px 10px !important;
}
.dropdown-menu-dt-7 li:nth-child(8):hover ~ .dropdown-item-dt-hyperlink-last {
    border-radius: 0px 0px 10px 10px !important;
}
.dropdown-menu-dt-7 li:nth-child(9):hover ~ .dropdown-item-dt-hyperlink-last {
    border-radius: 0px 0px 10px 10px !important;
}
.dropdown-menu-dt-7 li:nth-child(10):hover ~ .dropdown-item-dt-hyperlink-last {
    border-radius: 0px 0px 10px 10px !important;
}
.dropdown-menu-dt-7 li:nth-child(11):hover ~ .dropdown-item-dt-hyperlink-last {
    border-radius: 0px 0px 10px 10px !important;
}
.dropdown-menu-dt-7 li:nth-child(12):hover ~ .dropdown-item-dt-hyperlink-last {
    border-radius: 0px 0px 10px 10px !important;
}
.dropdown-menu-dt-7 li:nth-child(13):hover ~ .dropdown-item-dt-hyperlink-last {
    border-radius: 0px 0px 10px 10px !important;
}
.dropdown-menu-dt-7 li:hover ~ .dropdown-item-dt-hyperlink-last {
    border-radius: 0px 0px 10px 0px !important;
}
.dropdown-menu-dt-7 > li:nth-child(3) > .submenu-dt-left-hyperlink { 
    top: -10px !important;
}
.dropdown-menu-dt-7 > li:nth-child(7) > .submenu-dt-left-hyperlink { 
    top: -10px !important;
}
.dropdown-menu-dt-7 li:nth-child(2) ul li:nth-child(n+2):hover ~ .dropdown-menu-dt-space-bottom {
    border-radius: 0px 0px 10px 0px !important; 
}
.dropdown-menu-dt-7 li:nth-child(7) ul > .dropdown-menu-dt-space-top {
    border-radius: 10px 0px 0px 0px !important;
}
.dropdown-menu-dt-7 li:nth-child(7) ul > .dropdown-menu-dt-space-bottom {
    border-radius: 0px 0px 0px 10px !important;
}
.dropdown-menu-dt-7 li:nth-child(7) ul li:nth-child(n+2):hover ~ .dropdown-menu-dt-space-bottom {
    border-radius: 0px 0px 0px 10px !important;
}
.dropdown-menu-dt-7 li:nth-child(1) ul li:nth-child(n+2):hover ~ .dropdown-menu-dt-space-bottom {
    border-radius: 0px 0px 0px 110px !important;
}
.dropdown-menu-dt-center {
    right: auto !important;
    left: 50% !important;
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.dropdown-menu-dt-right {
    right: 0 !important;
    left: auto !important;
}
.dropdown-toggle::after {
    background-color: rgba(238, 238, 238, 0.95);
    content: none;
}
.edge ul:last-child .submenu-dt {
    border-radius: 0px 10px 10px 0px;
}
.edge ul:last-child .submenu-dt-left {
    border-radius: 10px 0px 10px 10px !important;
}
.empty {
    /* color: rgba(238, 238, 238, 0) !important; */
    pointer-events: none !important;
}
.empty-link {
    pointer-events: none !important;
    font-family: 'Roboto', sans-serif;
    background-color: rgba(238, 238, 238, 0.95);
    min-width: 158px !important;
    color: #777;
    line-height: 24px;
    padding-top: 7px;
    padding-bottom: 5px;
    padding-left: 22px !important;
    margin-bottom: 0px;
}
.empty-link:after {
    background-image: none !important;
}
.empty-link ~ .dropdown-item-dt-left {
    border-radius: 0px 0px 0px 10px !important;
}
.fade {
    background-color: rgba(0, 0, 0, 0.75) !important;
}
.footer {
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 12px;
    padding-bottom: 16px;
    text-shadow: 0px 1px 2px #000;
}
.footer-sm {
    font-size: 14px;
    /* text-shadow: 0px 1px 2px #444; */
}
.footer-links {
    color: white;
    margin-right: 16px;
}
.footer-links a, a:focus, a:active {
    color: white;
    text-decoration: none;
}
.footer-links a:hover {
    color: white;
    text-decoration: underline;
}
.footer-links-sm {
    display: none !important;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    color: white;
    font-size: 16px;
    margin-left: 0px !important;
    margin-right: 0px !important;
    text-shadow: 0px 1px 2px #444;
}
.footer-links-sm a, a:focus, a:active {
    color: white;
    text-decoration: none;
}
.footer-links-sm a:hover {
    color: white;
    text-decoration: underline;
}
.form-label {
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px;
    color: white;
    margin-bottom: 4px;
    height: 20px;
    margin-bottom: 10px !important;
    text-shadow: 0px 1px 2px #000;
}
.form-control {
    background-color: rgba(255, 255, 255, 0.95) !important;
    font-size: 18px;
    color: #555 !important;
    height: 50px;
    border: 0px;
}
.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #555;
    opacity: 1; /* Firefox */
}
.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #555;
}
.form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: #555;
}
.form-control:focus, .form-control:active {
    outline: none !important;
    box-shadow: none !important;
}
.form-select {
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: #555 !important;
    font-size: 18px;
    height: 50px;
    border: 0px;
}
.header {
    background-color: white;
    padding-top: 1px !important;
    height: 80px;
    padding-left: 40px;
    padding-right: 40px;
}
.hotel-wrapper {
    margin: 20px;
}
.hotel-title {
    font-family: 'Roboto', sans-serif;
    font-size: 21px;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
    letter-spacing: 0.2px;
    color: #444;
    display: block;
    margin-top: -5px !important;
    margin-bottom: 15px;
    padding-bottom: 12px;
    width: 329px !important;
    border-bottom: 1px solid #aaa !important;
}
.hotel-text {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    text-align: left;
    line-height: 20px;
    font-weight: 400;
    margin-left: 26px;
    color: #444;
}
.hotel-review {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    text-transform: lowercase;
    font-weight: 500 !important;
    line-height: 18px;
    font-weight: 400;
    color: #555;
    padding-top: 10px;
    padding-bottom: 10px;
}
.hotel-icon-address {
    background-image: url(../images/location.svg);
    background-repeat: no-repeat;
    background-position-y: center;
    float: left;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-top: 0px;
}
.hotel-icon-phone {
    background-image: url(../images/phone2.svg);
    background-repeat: no-repeat;
    background-position-y: center;
    float: left;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-top: 0px;
}
.hotel-icon-email {
    background-image: url(../images/email.svg);
    background-repeat: no-repeat;
    background-position-y: center;
    float: left;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-top: 0px;
}
.hotel-icon-bookingdotcom {
    background-image: url(../images/bookingdotcom.svg);
    background-repeat: no-repeat;
    background-position-y: center;
    float: left;
    display: inline-block;
    width: 90px;
    height: 20px;
    margin-right: 8px;
}
.hotel-price-actual {
    display: none;
    font-family: 'Roboto', sans-serif;
    color: #777;
    text-decoration: line-through;
    font-weight: 500;
    -webkit-font-smoothing: antialiased !important;
    letter-spacing: -0.75px !important;
    font-size: 16px;
    height: 24px;
    line-height: 14px;
    padding-right: 5px;
    margin-top: 8.2px;
}
.hotel-price-offer {
    display: none;
    font-family: 'Roboto', sans-serif;
    color: #009b90;
    font-weight: 500;
    -webkit-font-smoothing: antialiased !important;
    letter-spacing: -1px !important;
    font-size: 24px;
    line-height: 20px;
    height: 24px;
    margin-top: 2px;
}
.hotel-price-text {
    display: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 8.5px;
}
.hotel-wrapper-small {
    padding-left: 15px;
    padding-right: 20px;
    padding-top: 15px;
    padding-bottom: 20px;
    /* background-color: tomato; */
}
.hotel-text-small {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    text-align: left;
    line-height: 24px;
    font-weight: 500;
    -webkit-font-smoothing: antialiased !important;
    margin-left: 30px;
    margin-bottom: 25px;
    color: #555;
}
.hotel-icon-address-small {
    background-image: url(../images/location.svg);
    background-repeat: no-repeat;
    background-position-y: center;
    float: left;
    display: inline-block;
    width: 22px;
    height: 22px;
}
.hotel-icon-phone-small {
    background-image: url(../images/phone2.svg);
    background-repeat: no-repeat;
    background-position-y: center;
    float: left;
    display: inline-block;
    width: 22px;
    height: 22px;
}
.hotel-icon-email-small {
    background-image: url(../images/email.svg);
    background-repeat: no-repeat;
    background-position-y: center;
    float: left;
    display: inline-block;
    width: 22px;
    height: 22px;
}
.hotel-icon-bookingdotcom-small {
    background-image: url(../images/bookingdotcom.svg);
    background-repeat: no-repeat;
    background-position-y: center;
    float: left;
    display: inline-block;
    position: relative;
    width: 102px;
    height: 22px;
    top: 1px;
    margin-right: 8px;
    /* background-color: turquoise; */
}
.hotel-review-small {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    text-transform: lowercase;
    font-weight: 500 !important;
    font-weight: 400;
    color: #555;
    padding-top: 20px;
}
.hotel-price-actual-small {
    display: none;
    font-family: 'Roboto', sans-serif;
    color: #777;
    text-decoration: line-through;
    font-weight: 500;
    -webkit-font-smoothing: antialiased !important;
    letter-spacing: -0.75px !important;
    font-size: 18px;
    padding-right: 6px;
    line-height: 20px;
    margin-top: 3px;
}
.hotel-price-offer-small {
    display: none;
    font-family: 'Roboto', sans-serif;
    color: #009b90;
    font-weight: 500;
    -webkit-font-smoothing: antialiased !important;
    letter-spacing: -1px !important;
    font-size: 26px;
    line-height: 20px;
}
.hotel-price-text-small {
    display: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 8.5px;
}
.modal {
    padding: 2% !important;
    margin: 0 !important;
}
/* .modal-xl {
    min-width: 80% !important;
} */
.modal-header {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 25px;
}
/* .modal-header-small {
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.075);
    background-color: rgba(0, 0, 0, 0.08);
} */
/* .modal-dialog {
    height: 88% !important;
} */
.modal-content {
    border-radius: 10px;
    -webkit-box-shadow: 0px 10px 20px 10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow:    0px 10px 20px 10px rgba(0, 0, 0, 0.3);
    box-shadow:         0px 10px 20px 10px rgba(0, 0, 0, 0.3);
    border: none;
    overflow-y: auto !important;
}
.modal-body-small {
    margin: 0;
    padding: 0 !important;
    background-color: rgba(0, 0, 0, 0.065);
}
.modal-content-small {
    border-radius: 10px;
}
.modal-footer-small {
    padding: 0px;
    /* border-top: 1.5px solid rgba(0, 0, 0, 0.075); */
    /* background-color: rgba(0, 0, 0, 0.08); */
}
.navbar-dt {
    height: 42px !important;
    line-height: 27.5px;
    background-color: #dedede;
    border-top: 1.5px solid #cccccc;
    border-bottom: 1.5px solid #cccccc;
    z-index: 200;
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
    -moz-box-shadow:    0px 2px 2px rgba(0, 0, 0, 0.3);  /* Firefox 3.5 - 3.6 */
    box-shadow:         0px 2px 2px rgba(0, 0, 0, 0.3);  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}
.navbar-nav-dt > li:hover > .dropdown-toggle .chevron-down {
    transform: rotate(90deg) !important;
}
.navbar-mb {
    line-height: 28px;
    background-color: #dedede;
    border-top: 1.5px solid #cccccc;
    border-bottom: 1.5px solid #cccccc;
    z-index: 200;
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
    -moz-box-shadow:    0px 2px 2px rgba(0, 0, 0, 0.3);  /* Firefox 3.5 - 3.6 */
    box-shadow:         0px 2px 2px rgba(0, 0, 0, 0.3);  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}
.navbar-nav-mb > li:hover > .dropdown-toggle .chevron-down {
    transform: rotate(90deg) !important;
}
.navbar-toggler {
    background-color: white;
    margin-top: 5px;
    margin-bottom: 5px;
    /* background-color: white; */
    border: 1.5px solid #cccccc !important;
    padding: 1px !important;
}
.navbar-toggler-icon {
    height: 25px;
}
.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2.5 -2.75 35 35'%3e%3cpath stroke='rgba%280, 0, 0, 0.50%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.25' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.navbar-toggler:focus, .navbar-toggler:active {
    outline: none !important;
    box-shadow: none;
}
.navbar-toggle {
    width: 10px !important;
    height: 10px !important;
}
.nav-link {
    height: 42px !important;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    letter-spacing: 0.75px !important;
    color: #666 !important;
    margin-top: -1.5px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}
.nav-link:hover, .nav-link:active, .nav-link:focus {
    background-image: linear-gradient(#ffffff, #dbdbdb);
    -webkit-box-shadow: inset 0px 0px 0px 1.5px #cccccc;
    -moz-box-shadow: inset 0px 0px 0px 1.5px #cccccc;
    box-shadow: inset 0px 0px 0px 1.5px #cccccc;
}
.phone {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #878787;
    letter-spacing: 0.25px;
    font-size: larger;
    display: none;
}
.phone a:link {
    color: #878787;
    text-decoration: none;
}
.phone a:hover {
    color: #009b90;
    text-decoration: none;
}
.popover {
    top: -1px !important;
    left: 5px !important;
    -webkit-box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.3);
}
.popover-content {
    background-color: white;
}
.facebook-icon {
    background-image: url(../images/facebook.svg);
    display: block;
    height: 32px;
    width: 32px;
}
.facebook-icon:hover, .facebook-icon:focus, .facebook-icon:active  {
    background-image: url(../images/facebook-cyan.svg);
}
.linkedin-icon {
    background-image: url(../images/linkedin.svg);
    display: block;
    height: 32px;
    width: 32px;
    margin-left: 10px;
}
.linkedin-icon:hover, .linkedin-icon:focus, .linkedin-icon:active  {
    background-image: url(../images/linkedin-cyan.svg);
}
.rupee-1 {
    font-size: 13px;
    letter-spacing: 0.25px;
}
.rupee-2 {
    font-size: 20px;
    letter-spacing: 0.25px;
}
.rupee-1-sm {
    font-size: 13px;
    letter-spacing: 0.25px;
}
.rupee-2-sm {
    font-size: 20px;
    letter-spacing: 0.25px;
}
.shadow-inset {
    -webkit-box-shadow: inset 0px 6px 4px -5px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: inset 0px 6px 4px -5px rgba(0, 0, 0, 0.4);
    box-shadow: inset 0px 6px 4px -5px rgba(0, 0, 0, 0.4);
    column-span: all;
}
.shadow-inset-fixed {
    position: fixed !important;
    /* top: 0 !important;
    margin-top: 122px !important; */
    z-index: 2000 !important;
    display: block !important;
    height: 10px !important;
    width: 400px;
    -webkit-box-shadow: inset 0px 6px 4px -5px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: inset 0px 6px 4px -5px rgba(0, 0, 0, 0.4);
    box-shadow: inset 0px 6px 4px -5px rgba(0, 0, 0, 0.4);
}
.shadow-inset-fixed-1 {
    position: fixed !important;
    /* top: 0 !important;
    margin-top: 122px !important; */
    z-index: 2000 !important;
    display: block !important;
    height: 10px !important;
    width: 354.5px;
    -webkit-box-shadow: inset 0px 6px 4px -5px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: inset 0px 6px 4px -5px rgba(0, 0, 0, 0.4);
    box-shadow: inset 0px 6px 4px -5px rgba(0, 0, 0, 0.4);
}
/* .shadow-inset-fixed-6 {
    display: block !important;
    height: 6px !important;
    -webkit-box-shadow: inset 0px 6px 4px -5px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: inset 0px 6px 4px -5px rgba(0, 0, 0, 0.4);
    box-shadow: inset 0px 6px 4px -5px rgba(0, 0, 0, 0.4);
} */
.submenu-dt-1-item > .dropdown-menu-dt-space-top {
    border-radius: 10px 0px 0px 0px !important;
}
.submenu-dt-1-item > .dropdown-menu-dt-space-bottom {
    border-radius: 0px 0px 0px 10px !important;
}
.submenu-dt-left-hyperlink {
    background-color: transparent;
    position: absolute !important;
    z-index: 50 !important;
    top: -10px;
    left: 100%;
    border-top: 0px solid rgba(238, 238, 238, 0.95);
    border-left: 0px solid rgba(238, 238, 238, 0.95);
    border-right: 0px solid rgba(238, 238, 238, 0.95);
    border-bottom: 0px solid rgba(238, 238, 238, 0.95);
    border-radius: 0px 0px 0px 0px;
    display: none !important;
    right: 100%; 
    left: auto;

    -webkit-box-shadow: 1px 5px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 5px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 1px 5px 5px 0px rgba(0, 0, 0, 0.3);
}
.slogan img {
    height: 30px;
    margin-top: 6px;
}

/* Scrollable Menus */

.scrollable-menu {
    max-height: 560px;
    overflow-y: auto; /* Scrollbar */ 
    overflow-x: hidden;
    direction: rtl;
    border: none !important;

    /* -webkit-box-shadow: 1px 5px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 5px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 1px 5px 5px 0px rgba(0, 0, 0, 0.3);
     */
}
.scrollable-menu:hover {
    max-height: 560px;
}
.dropdown-item-dt-sublink {
    direction: ltr;
}
.dropdown-menu-dt-1 > li {
    margin-left: -0.5px !important;
}
.scrollable-menu-sm {
    max-height: 560px;
    overflow-y: auto; /* Scrollbar */ 
    overflow-x: hidden;
    direction: rtl;
    /* margin-right: -0.05px !important; */
    border-radius: 0px 0px 10px 10px;
}
.scrollable-menu-sm:hover {
    max-height: 560px;
}
/* .scrollable-menu:hover li a:link {
    padding-left: 22px !important;
    padding-right: 32px !important;
} */
.dropdown-menu-dt-space-middle {
    display: none;
    height: 10px !important;
    background-color: rgba(238, 238, 238, 0.95);
    border-radius: 0px 0px 10px 0px;
}
.dropdown-menu-dt-1 {
    border-radius: 0px 0px 10px 10px !important;
}
.chevron-adjust::after {
    right: -8px;
}
.scrollable-menu::-webkit-scrollbar {
    width: 0px;
    -webkit-appearance: none;
    background-color: rgba(238, 238, 238, 0.3);
    border-radius: 0px 0px 0px 10px !important;
    -webkit-transition: transform 0.2s ease-in;
    -moz-transition: transform 0.2s ease-in;
    -ms-transition: transform 0.2s ease-in;
    -o-transition: transform 0.2s ease-in;
    transition: all 0.2s ease-in;
}
.scrollable-menu:hover::-webkit-scrollbar {
    width: 8px;
}    
.scrollable-menu:hover::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background-color: #009b90;
    border-radius: 0px 0px 0px 10px !important;
}
.scrollable-menu-sm::-webkit-scrollbar {
    width: 0px;
    -webkit-appearance: none;
    background-color: rgba(238, 238, 238, 0.3);
    border-radius: 0px 0px 0px 10px;
    -webkit-transition: transform 0.2s ease-in;
    -moz-transition: transform 0.2s ease-in;
    -ms-transition: transform 0.2s ease-in;
    -o-transition: transform 0.2s ease-in;
    transition: all 0.2s ease-in;
}
.scrollable-menu-sm:hover::-webkit-scrollbar {
    width: 8px;
}    
.scrollable-menu-sm:hover::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background-color: #009b90;
    border-radius: 0px 0px 0px 10px !important;
}
.scrollable-menu-sm:hover li:nth-child(n+1) a:link {
    padding-left: 22px !important;
    padding-right: 22px;
    margin-right: 12px;
}

/* Chrome Hack */
/* @media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) { 
    .dropdown-menu-dt-1 > li:nth-child(n+2) > .submenu-dt {
        margin-left: 396px !important;
    }
} */
/* Firefox Hack */
/* @-moz-document url-prefix() {
    .dropdown-menu-dt-1 > li:nth-child(n+2) > .submenu-dt {
        margin-left: 396px !important;
    }
} */
/* Opera <= 9 Hack */
/* html:first-child .dropdown-item-dt-sublink > .dropdown-item-dt-1 { 
    margin-right: 10px !important;
} */
/* html:first-child .dropdown-menu-dt-1 > li:nth-child(n+2) > .submenu-dt { 
    left: 504px !important;
} */
/* Opera > 10 Hack */ 
/* @media not all and (-webkit-min-device-pixel-ratio:0) {  
	.dropdown-item-dt-sublink > .dropdown-item-dt-1 {  
        margin-right: 11px;
	}  
} */
/* Opera > 10 Hack */
/* x:-o-prefocus, .dropdown-item-dt-sublink > .dropdown-item-dt-1 { 
    margin-right: 10px !important;
}
x:-o-prefocus, .dropdown-menu-dt-1 > li:nth-child(n+2) > .submenu-dt {
    left: 496px !important;
} */


/* Media Queries */

@media screen and (min-width: 1600px) and (max-width: 2558px) {
    .header {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }
    .carousel-inner-main, .carousel-inner-main img {
        height: 87.1vh !important;
        object-fit: cover !important;
    }
    .carousel-indicators-small [data-bs-target] {
        height: 3px;
        width: 30px;
    }
    .carousel-indicators-small {
        margin-left: 0% !important;
        margin-right: 0% !important;
    }
    .carousel-control-prev-icon {
        margin-left: -30px !important;
    }
    .carousel-control-next-icon {
        margin-right: -30px !important;
    }
    .carousel-control-next-icon, .carousel-control-prev-icon {
        width: 3rem;
        height: 3rem;
    }
    .form-control, .form-control:focus, .form-select, .form-select:focus, .btn-primary-submit {
        -webkit-box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.25);
        -moz-box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.25);
        box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.25);
    }
    .hotel-wrapper-small {
        padding-left: 25px;
        padding-right: 30px;
    }
    .gmap-link-small {
        position: absolute !important;
        top: 20px;
        right: 20px;
        width: 30px;
        height: 30px;
    }
    .modal-prev {
        margin-left: 5.75%;
    }
    .modal-next {
        margin-right: 5.75%;
    }
    .modal-prev-icon, .modal-next-icon {
        height: 90px !important;
        width: 90px !important;
    }
}

@media screen and (min-width: 1366px) and (max-width: 1599px) {
    .header {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .carousel-inner-main, .carousel-inner-main img {
        height: 88.1vh !important;
        object-fit: cover !important;
    }
    .carousel-indicators-main {
        bottom: 36px;
    }
    .carousel-indicators-small [data-bs-target] {
        height: 3px;
        width: 30px;
    }
    .carousel-indicators-small {
        margin-left: 0% !important;
        margin-right: 0% !important;
    }
    .carousel-control-prev-icon {
        margin-left: -30px !important;
    }
    .carousel-control-next-icon {
        margin-right: -30px !important;
    }
    .carousel-control-next-icon, .carousel-control-prev-icon {
        width: 3rem;
        height: 3rem;
    }
    .form-control, .form-control:focus, .form-select, .form-select:focus, .btn-primary-submit {
        -webkit-box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.25);
        -moz-box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.25);
        box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.25);
    }
    .hotel-wrapper-small {
        padding-left: 25px;
        padding-right: 30px;
    }   
    .gmap-link-small {
        position: absolute !important;
        top: 20px;
        right: 20px;
        width: 30px;
        height: 30px;
    }
    .modal-prev {
        margin-left: 3%;
    }
    .modal-next {
        margin-right: 3%;
    }
    .modal-prev-icon, .modal-next-icon {
        height: 90px !important;
        width: 90px !important;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1365px) {
    .header {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .carousel-inner-main, .carousel-inner-main img {
        height: 85.35vh !important;
        object-fit: cover !important;
    }
    .carousel-indicators-main {
        bottom: 36px;
    }
    .carousel-indicators-small [data-bs-target] {
        height: 3px;
        width: 30px;
    }
    .carousel-indicators-small {
        margin-left: 0% !important;
        margin-right: 0% !important;
    }
    .carousel-control-prev-icon {
        margin-left: -30px !important;
    }
    .carousel-control-next-icon {
        margin-right: -30px !important;
    }
    .carousel-control-next-icon, .carousel-control-prev-icon {
        width: 3rem;
        height: 3rem;
    }
    .form-control, .form-control:focus, .form-select, .form-select:focus, .btn-primary-submit {
        -webkit-box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.25);
        -moz-box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.25);
        box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.25);
    }
    .hotel-wrapper-small {
        padding-top: 25px;
        padding-left: 25px;
        padding-right: 30px;
        padding-bottom: 20px;
    }
    .gmap-link-small {
        position: absolute !important;
        top: 20px;
        right: 20px;
        width: 30px;
        height: 30px;
    }
    .modal-prev {
        margin-left: 0%;
    }
    .modal-next {
        margin-right: 0%;
    }
    .modal-prev-icon, .modal-next-icon {
        height: 50px !important;
        width: 50px !important;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .header {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .carousel-inner-main, .carousel-inner-main img {
        height: 84.1vh !important;
        object-fit: cover !important;
    }
    .carousel-indicators-main {
        bottom: 36px;
    }
    .carousel-indicators-small [data-bs-target] {
        height: 3px;
        width: 30px;
    }
    .carousel-indicators-small {
        margin-left: 0% !important;
        margin-right: 0% !important;
    }
    .carousel-control-prev-icon {
        margin-left: -30px !important;
    }
    .carousel-control-next-icon {
        margin-right: -30px !important;
    }
    .carousel-control-next-icon, .carousel-control-prev-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
    .form-control, .form-control:focus, .form-select, .form-select:focus, .btn-primary-submit {
        -webkit-box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.25);
        -moz-box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.25);
        box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.25);
    }
    .hotel-wrapper-small {
        padding-top: 25px;
        padding-left: 25px;
        padding-right: 30px;
        padding-bottom: 20px;
    }
    .gmap-link-small {
        top: -5px;
        right: -10px;
    }
    .modal-prev {
        margin-left: 1%;
    }
    .modal-next {
        margin-right: 1%;
    }
    .modal-prev-icon, .modal-next-icon {
        /* display: none; */
        height: 70px !important;
        width: 70px !important;
    }
}

@media screen and (min-width: 834px) and (max-width: 991px) {
    .header {
        height: 60px;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .logo-icon img {
        height: 34px;
    }
    .logo img {
        height: 26px;
        padding-left: 4px !important;
    }
    .slogan {
        float: right;
        padding-right: 0px !important;
    }
    .slogan img {
        height: 26px;
        margin-top: 7px;
    }
    .smi {
        display: none !important;
    }
    .facebook-icon {
        width: 26px;
        height: 26px;
    }
    .linkedin-icon {
        width: 26px;
        height: 26px;
        margin-left: 8px;
    }
    .carousel-inner-main, .carousel-inner-main img {
        height: 84.1vh !important;
        object-fit: cover !important;
    }
    .carousel-item-2 {
        object-position: 80% 0;
    }
    .carousel-item-7 {
        object-position: 40% 0;
    }
    .carousel-item-10 {
        object-position: 88% 0;
    } 
    .carousel-control-prev-icon {
        margin-left: -40px !important;
    }
    .carousel-control-next-icon {
        margin-right: -40px !important;
    }
    .carousel-control-next-icon, .carousel-control-prev-icon {
        width: 3rem;
        height: 3rem;
    }
    .carousel-indicators-main {
        margin-left: 0% !important;
        margin-right: 0% !important;
    }
    .carousel-indicators-small {
        margin-left: 0% !important;
        margin-right: 0% !important;
    }
    .booking-bg-sm {
        padding-top: 24px !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
        padding-bottom: 30px !important;
    }
    .form-label {
        font-size: 18px;
        text-shadow: 0px 1px 2px #444;
        margin-bottom: 14px !important;
    }
    .form-control {
        font-size: 22px;
        height: 50px;
        margin-bottom: 22px !important;
        padding: 10px !important;
    }
    .check-in, .check-out {
        width: 35vw;
    }
    .form-select {
        font-size: 22px;
        height: 50px;
        padding-left: 10px;
    }
    .guests {
        width: 18vw;
    }
    .btn-primary-sm {
        width: 100%;
        font-size: 20px;
        margin-top: 10px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
    .footer-links-sm {
        font-size: 18px;
        line-height: 22px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .divider-sm {
        padding-left: 12px;
        padding-right: 12px;
    }
    .line-break {
        display: none;
    }
    .divider-none {
        display: inline-block;
    }
    .copyright-sm {
        font-size: 18px;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
    .hotel-wrapper-small {
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 25px;
        padding-bottom: 15px;
    }
    .gmap-link-small {
        top: -5px;
        right: -10px;
    }
    .modal-prev {
        margin-left: 5%;
    }
    .modal-next {
        margin-right: 5%;
    }
    .modal-prev-icon, .modal-next-icon {
        /* display: none; */
        height: 80px !important;
        width: 80px !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 833px) {
    .header {
        height: 60px;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .logo-icon img {
        height: 34px;
    }
    .logo img {
        height: 26px;
        padding-left: 4px !important;
    }
    .slogan {
        float: right;
        padding-right: 0px !important;
    }
    .slogan img {
        height: 26px;
        margin-top: 7px;
    }
    .smi {
        display: none !important;
    }
    .facebook-icon {
        width: 26px;
        height: 26px;
    }
    .linkedin-icon {
        width: 26px;
        height: 26px;
        margin-left: 8px;
    }
    .carousel-inner {
        height: 76vh !important;
    }
    .carousel img {
        height: 76vh !important;
        object-fit: cover !important;
    } 
    .carousel-item-2 {
        object-position: 80% 0;
    }
    .carousel-item-7 {
        object-position: 40% 0;
    }
    .carousel-item-10 {
        object-position: 88% 0;
    } 
    .carousel-control-prev-icon {
        margin-left: -40px !important;
    }
    .carousel-control-next-icon {
        margin-right: -40px !important;
    }
    .carousel-control-next-icon, .carousel-control-prev-icon {
        width: 3rem;
        height: 3rem;
    }
    .carousel-indicators-main {
        margin-left: 0% !important;
        margin-right: 0% !important;
    }
    .carousel-indicators-small {
        margin-left: 0% !important;
        margin-right: 0% !important;
    }
    .booking-bg-sm {
        padding-top: 24px !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
        padding-bottom: 30px !important;
    }
    .form-label {
        font-size: 18px;
        text-shadow: 0px 1px 2px #444;
        margin-bottom: 14px !important;
    }
    .form-control {
        font-size: 22px;
        height: 50px;
        margin-bottom: 22px !important;
        padding: 10px !important;
    }
    .check-in, .check-out {
        width: 35vw;
    }
    .form-select {
        font-size: 22px;
        height: 50px;
        padding-left: 10px;
    }
    .guests {
        width: 18vw;
    }
    .btn-primary-sm {
        width: 100%;
        font-size: 20px;
        margin-top: 10px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
    .footer-links-sm {
        font-size: 18px;
        line-height: 22px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .divider-sm {
        padding-left: 12px;
        padding-right: 12px;
    }
    .line-break {
        display: none;
    }
    .divider-none {
        display: inline-block;
    }
    .copyright-sm {
        font-size: 18px;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
    .hotel-wrapper-small {
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 25px;
        padding-bottom: 15px;
    }
    .gmap-link-small {
        top: -5px;
        right: -10px;
    }
    .modal-prev {
        margin-left: 5%;
    }
    .modal-next {
        margin-right: 5%;
    }
    .modal-prev-icon, .modal-next-icon {
        height: 80px !important;
        width: 80px !important;
    }
}

@media screen and (min-width: 415px) and (max-width: 767px) {
    .header {
        height: 60px;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .logo-icon img {
        height: 34px;
    }
    .logo img {
        height: 26px;
        padding-left: 4px !important;
    }
    .slogan {
        float: right;
        padding-right: 0px !important;
    }
    .slogan img {
        height: 26px;
        margin-top: 7px;
    }
    .smi {
        display: none !important;
    }
    .facebook-icon {
        width: 26px;
        height: 26px;
    }
    .linkedin-icon {
        width: 26px;
        height: 26px;
        margin-left: 8px;
    }
    .carousel-inner {
        height: 76vh !important;
    }
    .carousel img {
        height: 76vh !important;
        object-fit: cover !important;
    } 
    .carousel-item-2 {
        object-position: 65% 0;
    }
    .carousel-item-7 {
        object-position: 53% 0;
    }
    .carousel-item-10 {
        object-position: 45.5% 0;
    } 
    .carousel-control-prev-icon {
        margin-left: -40px !important;
    }
    .carousel-control-next-icon {
        margin-right: -40px !important;
    }
    .carousel-control-next-icon, .carousel-control-prev-icon {
        width: 3rem;
        height: 3rem;
    }
    .carousel-indicators-main {
        margin-left: 0% !important;
        margin-right: 0% !important;
    }
    .carousel-indicators-small {
        margin-left: 0% !important;
        margin-right: 0% !important;
    }
    .booking-bg-sm {
        padding-top: 13px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-bottom: 20px !important;
    }
    .form-label {
        font-size: 15px;
        text-shadow: 0px 1px 2px #444;
        margin-bottom: 5px !important;
    }
    .form-control {
        font-size: 17px;
        height: 40px;
        margin-bottom: 12px !important;
        padding: 8px !important;
    }
    .check-in, .check-out {
        width: 34vw;
    }
    .form-select {
        height: 40px;
        padding-left: 8px;
        text-align: center;
    }
    .guests {
        width: 17vw;
    }
    .btn-primary-sm {
        width: 100%;
        font-size: 20px;
        margin-top: 8px;
        padding-top: 6px;
        padding-bottom: 6px;
    }
    .footer-links-sm {
        font-size: 16px;
        line-height: 22px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .divider-sm {
        padding-left: 10px;
        padding-right: 10px;
    }
    .line-break {
        display: none;
    }
    .divider-none {
        display: inline-block;
    }
    .copyright-sm {
        font-size: 16px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .hotel-wrapper-small {
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 25px;
        padding-bottom: 15px;
    }
    .gmap-link-small {
        top: -5px;
        right: -10px;
    }
    .modal-prev {
        display: none !important;
        margin-left: 0%;
    }
    .modal-next {
        display: none !important;
        margin-right: 0%;
    }
    .modal-prev-icon, .modal-next-icon {
        display: none !important;
        height: 60px !important;
        width: 60px !important;
    }
}

@media screen and (min-width: 376px) and (max-width: 414px) {
    .header {
        height: 60px;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .logo-icon img {
        height: 34px;
    }
    .logo img {
        height: 26px;
        padding-left: 4px !important;
    }
    .slogan {
        float: right;
        padding-right: 0px !important;
    }
    .slogan img {
        height: 26px;
        margin-top: 7px;
    }
    .smi {
        display: none !important;
    }
    .facebook-icon {
        width: 26px;
        height: 26px;
    }
    .linkedin-icon {
        width: 26px;
        height: 26px;
        margin-left: 8px;
    }
    .carousel-inner-main {
        height: 52.25vh !important;
    }
    .carousel-inner-main img {
        height: 52.25vh !important;
        object-fit: cover !important;
    }
    .carousel-inner-small {
        height: 45.25vh !important;
    }
    .carousel-inner-small img {
        height: 45.25vh !important;
        object-fit: cover !important;
    }
    h3 {
        font-weight: 500;
        font-size: 20px;
        line-height: 26px !important;
        -webkit-font-smoothing: antialiased !important;
        letter-spacing: 0px;
        max-width: 300px;
    }
    .modal-header-small {
        padding-top: 15px;
        padding-bottom: 15px;
        padding-left: 20px;
        padding-right: 22px;
    }
    .hotel-text-small {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    .hotel-icon-bookingdotcom-small {
        width: 98px;
        height: 20px;
        margin-right: 8px;
    }
    .hotel-review-small {
        font-size: 15px;
        line-height: 22px;
        padding-top: 0px;
    }
    .btn-close {
        background-size: 18px;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    .carousel-item-2 {
        object-position: 60% 0;
    }
    .carousel-item-7 {
        object-position: 42% 0;
    }
    .carousel-item-10 {
        object-position: 80% 0;
    } 
    .carousel-control-prev-icon {
        margin-left: -40px !important;
    }
    .carousel-control-next-icon {
        margin-right: -40px !important;
    }
    .carousel-control-next-icon, .carousel-control-prev-icon {
        width: 3rem;
        height: 3rem;
    }
    .carousel-indicators-main {
        margin-left: 8% !important;
        margin-right: 8% !important;
    }
    .carousel-indicators-small {
        margin-left: 8% !important;
        margin-right: 8% !important;
    }
    .booking-bg-sm {
        padding-top: 13px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-bottom: 20px !important;
    }
    .form-label {
        font-size: 15px;
        text-shadow: 0px 1px 2px #444;
        margin-bottom: 5px !important;
    }
    .form-control {
        font-size: 17px;
        height: 40px;
        margin-bottom: 12px !important;
        padding: 8px !important;
    }
    .check-in, .check-out {
        width: 34vw;
    }
    .form-select {
        height: 40px;
        padding-left: 8px;
        text-align: center;
    }
    .guests {
        width: 17vw;
    }
    .btn-primary-sm {
        width: 100%;
        font-size: 20px;
        margin-top: 8px;
        padding-top: 6px;
        padding-bottom: 6px;
    }
    .footer-links-sm {
        font-size: 14px;
        line-height: 22px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .divider-sm {
        padding-left: 6px;
        padding-right: 6px;
    }
    .line-break {
        display: block;
    }
    .divider-none {
        display: none;
    }
    .copyright-sm {
        font-size: 14px;
        padding-top: 4px;
        padding-bottom: 4px;
    }
    .hotel-wrapper-small {
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 25px;
        padding-bottom: 15px;
    }
    .gmap-link-small {
        top: -5px;
        right: -10px;
    }
    .modal-prev {
        display: none !important;
        margin-left: 0%;
    }
    .modal-next {
        display: none !important;
        margin-right: 0%;
    }
    .modal-prev-icon, .modal-next-icon {
        display: none !important;
        height: 60px !important;
        width: 60px !important;
    }
}

@media screen and (min-width: 321px) and (max-width: 375px) {
    .header {
        height: 60px;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .logo-icon img {
        height: 34px;
    }
    .logo img {
        height: 26px;
        padding-left: 4px !important;
    }
    .slogan {
        float: right;
        padding-right: 0px !important;
    }
    .slogan img {
        height: 26px;
        margin-top: 7px;
    }
    .smi {
        display: none !important;
    }
    .facebook-icon {
        width: 26px;
        height: 26px;
    }
    .linkedin-icon {
        width: 26px;
        height: 26px;
        margin-left: 8px;
    }
    .carousel-inner-main {
        height: 48.5vh !important;
    }
    .carousel-inner-main img {
        height: 48.5vh !important;
        object-fit: cover !important;
    }
    .carousel-inner-small {
        height: 40.25vh !important;
    }
    .carousel-inner-small img {
        height: 40.25vh !important;
        object-fit: cover !important;
    }
    h3 {
        font-weight: 500;
        font-size: 19px;
        line-height: 25px !important;
        -webkit-font-smoothing: antialiased !important;
        letter-spacing: 0px;
    }
    .modal-header-small {
        /* padding-top: 12px;
        padding-bottom: 12px;
        padding-left: 16px; */
        padding-right: 22px;
    }
    .hotel-text-small {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    .hotel-icon-bookingdotcom-small {
        width: 97px;
        height: 20px;
        margin-right: 8px;
    }
    .hotel-review-small {
        font-size: 15px;
        line-height: 22px;
        padding-top: 0px;
    }
    .btn-close {
        background-size: 18px;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    .carousel-item-2 {
        object-position: 55% 0;
    }
    .carousel-item-7 {
        object-position: 43% 0;
    }
    .carousel-item-10 {
        object-position: 85% 0;
    } 
    .carousel-control-prev-icon {
        margin-left: -40px !important;
    }
    .carousel-control-next-icon {
        margin-right: -40px !important;
    }
    .carousel-control-next-icon, .carousel-control-prev-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    .carousel-indicators-main {
        margin-left: 8% !important;
        margin-right: 8% !important;
    }
    .carousel-indicators-small {
        margin-left: 8% !important;
        margin-right: 8% !important;
    }
    .booking-bg-sm {
        padding-top: 13px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-bottom: 20px !important;
    }
    .form-label {
        font-size: 15px;
        text-shadow: 0px 1px 2px #444;
        margin-bottom: 5px !important;
    }
    .form-control {
        font-size: 17px;
        height: 40px;
        margin-bottom: 12px !important;
        padding: 8px !important;
    }
    .check-in, .check-out {
        width: 34vw;
    }
    .form-select {
        height: 40px;
        padding-left: 8px;
        text-align: center;
    }
    .guests {
        width: 17vw;
    }
    .btn-primary-sm {
        width: 100%;
        font-size: 20px;
        margin-top: 8px;
        padding-top: 6px;
        padding-bottom: 6px;
    }
    .footer-links-sm {
        font-size: 14px;
        line-height: 22px;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .divider-sm {
        padding-left: 6px;
        padding-right: 6px;
    }
    .line-break {
        display: block;
    }
    .divider-none {
        display: none;
    }
    .copyright-sm {
        font-size: 14px;
        padding-top: 4px;
        padding-bottom: 4px;
    }
    .hotel-wrapper-small {
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 25px;
        padding-bottom: 15px;
    }
    .gmap-link-small {
        top: -5px;
        right: -10px;
    }
    .modal-prev {
        display: none !important;
        margin-left: 0%;
    }
    .modal-next {
        display: none !important;
        margin-right: 0%;
    }
    .modal-prev-icon, .modal-next-icon {
        display: none !important;
        height: 60px !important;
        width: 60px !important;
    }
}

@media screen and (min-width: 200px) and (max-width: 320px) {
    .header {
        height: 55px;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .logo-icon img {
        height: 32px;
    }
    .logo img {
        height: 24px;
        padding-left: 2px !important;
    }
    .slogan {
        float: right;
        padding-right: 0px !important;
    }
    .slogan img {
        height: 24px;
        margin-top: 7px;
    }
    .smi {
        display: none !important;
    }
    .facebook-icon {
        width: 26px;
        height: 26px;
    }
    .linkedin-icon {
        width: 26px;
        height: 26px;
        margin-left: 8px;
    }
    .carousel-inner-main {
        height: 42.75vh !important;
    }
    .carousel-inner-main img {
        height: 42.75vh !important;
        object-fit: cover !important;
    }
    .carousel-inner-small {
        height: 35.25vh !important;
    }
    .carousel-inner-small img {
        height: 35.25vh !important;
        object-fit: cover !important;
    }
    .modal-header-small {
        padding-top: 12px;
        padding-bottom: 12px;
        padding-left: 16px;
        padding-right: 22px;
    }
    h3 {
        font-weight: 500;
        font-size: 18px;
        line-height: 24px !important;
        -webkit-font-smoothing: antialiased !important;
        letter-spacing: 0px;
    }
    .hotel-text-small {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 20px;
        margin-left: 25px;
    }
    .hotel-icon-bookingdotcom-small {
        width: 92px;
        height: 20px;
        margin-right: 6px;
    }
    .hotel-review-small {
        font-size: 14px;
        line-height: 22px;
        padding-top: 0px;
    }
    .btn-close {
        background-size: 16px;
        position: absolute;
        top: 18px;
        right: 18px;
    }
    .hotel-icon-address-small, .hotel-icon-phone-small, .hotel-icon-email-small {
        width: 18px;
        height: 18px;
    }
    .carousel-control-prev-icon {
        margin-left: -60px !important;
    }
    .carousel-control-next-icon {
        margin-right: -60px !important;
    }
    .carousel-control-next-icon, .carousel-control-prev-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    .carousel-indicators-main {
        margin-left: 8% !important;
        margin-right: 8% !important;
        bottom: -10px !important;
    }
    .carousel-indicators-small {
        margin-left: 8% !important;
        margin-right: 8% !important;
    }
    .carousel-item-2 {
        object-position: 80% 0;
    }
    .carousel-item-7 {
        object-position: 36% 50%;
    }
    .carousel-item-10 {
        object-position: 90% 0% !important;
    } 
    .booking-bg-sm {
        padding-top: 12px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-bottom: 20px !important;
    }
    .form-label {
        font-size: 14px;
        text-shadow: 0px 1px 2px #444;
        margin-bottom: 5px !important;
    }
    .form-control {
        font-size: 16px;
        height: 35px;
        margin-bottom: 12px !important;
        padding: 6px !important;
    }
    .check-in, .check-out {
        width: 31.5vw;
    }
    .form-select {
        font-size: 16px;
        height: 35px;
        padding-left: 6px;
    }
    .guests {
        width: 19vw;
    }
    .btn-primary-sm {
        width: 100%;
        font-size: 18px;
        margin-top: 8px;
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .footer-links-sm {
        font-size: 13px;
        line-height: 19px;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .divider-sm {
        padding-left: 6px;
        padding-right: 6px;
    }
    .line-break {
        display: block;
    }
    .divider-none {
        display: none;
    }
    .copyright-sm {
        font-size: 12px;
        padding-top: 4px;
        padding-bottom: 4px;
    }
    .hotel-wrapper-small {
        padding-top: 15px;
        padding-left: 15px;
        padding-right: 20px;
        padding-bottom: 10px;
    }
    .gmap-link-small {
        top: -5px;
        right: -10px;
        background-size: 22px;
    }
    .modal-prev {
        display: none !important;
        margin-left: 0%;
    }
    .modal-next {
        display: none !important;
        margin-right: 0%;
    }
    .modal-prev-icon, .modal-next-icon {
        display: none !important;
        height: 60px !important;
        width: 60px !important;
    }
}

/* Dropdown Columns */
@media screen and (max-width: 991px){
    .columns {
        height: auto;
        overflow-y: scroll;
    }
}
@media screen and (min-width: 992px){
    .dropdown-item-dt-1 {
        background-color:  rgba(238, 238, 238, 0);
    }
    .dropdown-menu-dt-1 .dropdown-menu-dt-space-top {
        background-color:  rgba(238, 238, 238, 0) !important;
    }
    .columns {
        -moz-column-count: 3; /* Firefox */
        -webkit-column-count: 3; /* Safari and Chrome */
        column-count: 3;
        column-gap: 0px;
        column-rule: 1.5px solid rgba(0, 0, 0, 0.25)!important;
        column-width: auto !important;
        column-fill: balance !important;
        width: auto;
        height: auto;
        background-color:  rgba(238, 238, 238, 0.95) !important;
        /* padding-top: 10px; */
        padding-bottom: 10px;
    }
}



/* Responsive Positioning */

@media (min-width: 576px) {
    .position-sm-static {
      position: static !important;
    }
    .position-sm-relative {
      position: relative !important;
    }
    .position-sm-absolute {
      position: absolute !important;
    }
    .position-sm-fixed {
      position: fixed !important;
    }
    .position-sm-sticky {
      position: sticky !important;
    }
  }
@media (min-width: 768px) {
    .position-md-static {
      position: static !important;
    }
    .position-md-relative {
      position: relative !important;
    }
    .position-md-absolute {
      position: absolute !important;
    }
    .position-md-fixed {
      position: fixed !important;
    }
    .position-md-sticky {
      position: sticky !important;
    }
  }
@media (min-width: 992px) {
    .position-lg-static {
      position: static !important;
    }
    .position-lg-relative {
      position: relative !important;
    }
    .position-lg-absolute {
      position: absolute !important;
    }
    .position-lg-fixed {
      position: fixed !important;
    }
    .position-lg-sticky {
      position: sticky !important;
    }
  }
  @media (min-width: 1200px) {
    .position-xl-static {
      position: static !important;
    }
    .position-xl-relative {
      position: relative !important;
    }
    .position-xl-absolute {
      position: absolute !important;
    }
    .position-xl-fixed {
      position: fixed !important;
    }
    .position-xl-sticky {
      position: sticky !important;
    }
}