/* GENERAL */
body {
    font-family: 'Montserrat', sans-serif;
}
a:hover {
    text-decoration: none;
}
a:focus {
    outline: none;
}
.cursor-pointer:hover {
    cursor: pointer;
}
.overflow-y-auto {
    overflow-y: auto;
}
.overflow-x-auto {
    overflow-x: auto;
}
.full-overlay-black {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
    -moz-transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
    -ms-transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
    transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
}
.full-overlay-black.show {
    visibility: visible;
    opacity: 1;
}
.overlay-black:after {
    content: "";
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.overlay:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.9);
}
.overlay-black-before {position: relative;}
.overlay-black-before:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.33);
    border-radius: inherit;
}
.overlay-gradient-ltr:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
}

.bg-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.parallax-bg {
    min-height: 600px;
    background-attachment: fixed;
}

input::-ms-clear, input::-ms-reveal {
    display: none;
}


/* ANIMATIONS */
.rotateY180 {
    transform: rotateY(180deg);
}


/* GRADIENTS */
.linear-black-gradient-ltr {
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
}
.linear-black-gradient-dtt {
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 100%);
}
.gradient-primary {
    background: rgb(146,189,39);
    background: linear-gradient(225deg, rgba(146,189,39,1) 0%, rgba(47,140,18,1) 100%);
}


/* INPUT */
input:focus {outline: none;}
/* .form-row .input-group-prepend {
    left: 5px;
}
.form-row .input-group-append {
    right: 5px;
} */
.input-group-prepend {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 10;
}
.input-group-append {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}
.input-group .input-group-prepend ~ .form-control {
  padding-left: 40px;
  border-radius: 8px !important;
}
.input-group-lg .input-group-prepend ~ .form-control {
  padding-left: 50px;
  border-radius: 8px !important;
}
.input-group > .form-control {
  border-radius: .3rem !important;
}
.quantity-input input {
    border-color: transparent;
    padding-left: 0.375rem !important;
}
.category-collapse .custom-checkbox > *:hover {
    cursor: pointer
}
.custom-checkbox-big .custom-control-label::before {
    left: -2.5rem;
    width: 2rem;
    height: 2rem;
}
.custom-checkbox-big .custom-control-label::after {
    left: -2.5rem;
    width: 2rem;
    height: 2rem;
}
.custom-control.custom-checkbox-big {
    padding-left: 2.5rem;
    min-height: 2.5rem;
}
.custom-checkbox-big .custom-control-label {
    line-height: 2.5rem;
}


/* MODALS */
button.modal-back, button.modal-close {
    padding: 0;
    background-color: transparent;
    border: 0;
    appearance: none;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}
.modal-back:not(:disabled):not(.disabled):hover, .modal-back:not(:disabled):not(.disabled):focus, .modal-close:not(:disabled):not(.disabled):hover, .modal-close:not(:disabled):not(.disabled):focus {
    opacity: .75;
}
.modal-content {
    background-clip: border-box;
    border: none !important;
}
.modal-fullscreen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background-color: rgba(255,255,255,.99);
}


/* BUTTONS */
.btn-primary, .btn-outline-primary:hover {
  color: #ffffff;
}
.btn {
    position: relative;
}


/* PRODUCTS LIST */
.record-product-price {
  position: absolute;
  right: 0;
  bottom: 0;
}


/* HEADER */
/* .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
} */
.top-header {
    background-color: #f8f9fa;
    -webkit-transition: background-color .3s linear;
    -moz-transition: background-color .3s linear;
    -ms-transition: background-color .3s linear;
    transition: background-color .3s linear;
}
.top-header:hover {
    background-color: #94bd1f;
}
.top-header .nav-link {
    position: relative;
    color: #828282;
}
.top-header:hover .nav-link:hover {
    color: #ffffff;
}
.top-header .nav-link.active {
    color: #333333;
}
.top-header:hover .nav-link {
    color: #f0f0f0;
}
.top-header:hover .nav-link.active {
    color: #ffffff;
}
.top-header .active:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    border-color: transparent transparent #ffffff transparent;
    margin-left: -6px;
}
#ts-user-header:after {
    display: none;
}

.cart-number {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 10px;
    font-weight: bold;
    min-width: 16px;
    height: 16px;
}

.navbar-brand img {
    width: auto;
    max-height: 40px;
}

button.offcanvas-close {
    position: absolute;
    top: 8px;
    z-index: 1;
    border-radius: 50%;
    border: 2px solid #ffffff;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    box-sizing: content-box;
    -webkit-transition: all .3s ease-in-out .1s;
    -moz-transition: all .3s ease-in-out .1s;
    -ms-transition: all .3s ease-in-out .1s;
    -o-transition: all .3s ease-in-out .1s;
    transition: all .3s ease-in-out .1s;
}
button.offcanvas-close:focus {
    outline: none !important;
}

.offcanvas-collapse {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 300px;
  z-index: 9999;
  visibility: hidden;
  transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out, visibility .3s ease-in-out;
  transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
}
.offcanvas-collapse.left {left: -300px;}
.offcanvas-collapse.right {left: 100%;}
.offcanvas-collapse.left.open {
  visibility: visible;
  -webkit-transform: translateX(300px);
  transform: translateX(300px);
}
.offcanvas-collapse.right.open {
  visibility: visible;
  -webkit-transform: translateX(-300px);
  transform: translateX(-300px);
}
.offcanvas-collapse.left .offcanvas-close, .filters-container .offcanvas-close {right: 0;}
.offcanvas-collapse.left.open .offcanvas-close, .filters-container.open .offcanvas-close {
    -webkit-transform: translateX(22px);
    -moz-transform: translateX(22px);
    -ms-transform: translateX(22px);
    -o-transform: translateX(22px);
    transform: translateX(22px);
}
.offcanvas-collapse.right .offcanvas-close {left: 0;}
.offcanvas-collapse.right.open .offcanvas-close {
    -webkit-transform: translateX(-22px);
    -moz-transform: translateX(-22px);
    -ms-transform: translateX(-22px);
    -o-transform: translateX(-22px);
    transform: translateX(-22px);
}
.expanded-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    width: 100%;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: 1000;
    height: 450px;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .3s ease-in-out;
    -moz-transition: max-height .3s ease-in-out;
    -ms-transition: max-height .3s ease-in-out;
    transition: max-height .3s ease-in-out;
    -webkit-transition-delay: .1s;
    -moz-transition-delay: .1s;
    -ms-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}
.expanded-menu.last-label {
    width: auto;
    left: auto;
    right: 0;
}
.expanded-menu.show {
    max-height: 450px;
}
.expanded-menu .flex-fill {
 margin-right: 2rem;
}
.expanded-menu .flex-fill:last-child {
 margin-right: 0;
}
#mobile-nav-masters {
    overflow-y: auto;
    width: 300px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
#mobile-nav-attributes {
    overflow-y: auto;
    width: 300px;
    position: absolute;
    top: 0;
    left: 100%;
    bottom: 0;
    height: 100%;
    background-color: #ffffff;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
#mobile-nav-container.show-attributes > #mobile-nav-masters, #mobile-nav-container.show-attributes > #mobile-nav-attributes {
    -webkit-transform: translateX(-300px);
    -moz-transform: translateX(-300px);
    -ms-transform: translateX(-300px);
    transform: translateX(-300px);
}
.hide-mobile-nav-attributes i {
    position: absolute;
    top: 50%;
    left: 9px;
    margin-top: -6px;
}
#collapseTantosvago {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
@media only screen and (min-width: 1200px) {
    header > .navbar, header > .top-header {
        position: relative;
        z-index: 1030;
    }
}
@media only screen and (max-width: 1199px) {
    header > .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
    }
    .no-header {
        margin-top: -68px;
    }
}


/* FOOTER */
footer {
  background-color: #fafafa;
  position: relative;
  overflow: hidden;
}
footer::after {
    content: "";
    background-image: url('https://tantosvago-media.s3.eu-west-3.amazonaws.com/brand/Svaggy_TS.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    width: 1500px;
    height: 1500px;
    position: absolute;
    top: 0;
    left: -1000px;
    opacity: .1;
    pointer-events: none;
}
footer ul li {
  line-height: 32px;
}
@media only screen and (min-width: 768px) {
    footer::before {
        content: "";
        background-image: url('https://tantosvago-media.s3.eu-west-3.amazonaws.com/brand/Svaggy_TS.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        display: block;
        width: 1500px;
        height: 1500px;
        position: absolute;
        right: -1000px;
        bottom: -50%;
        opacity: .1;
        pointer-events: none;
    }
}


/* HERO */
@media only screen and (max-width: 575px) {
    .hero-card form {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
@media only screen and (max-width: 767px) {
    .hero-title-container {
        background-image: url('https://s3.eu-west-3.amazonaws.com/tantosvago-3.0/ts-hero-primavera2021.jpg');
        margin-left: -16px;
        margin-right: -16px;
        padding-top: 9rem;
        padding-bottom: 1.5rem;
        background-position: center center;
        position: relative;
    }
    .hero-title-container:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: 0;
        z-index: 0;
        background: rgb(0,0,0);
        background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.5) 100%);
    }
    .hero-title-container h1 {
        color: #ffffff;
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 16px;
        padding-right: 16px;
        position: relative;
        z-index: 1;
    }
    .hero-card form {
        max-width: 540px;
        margin-top: 1.5rem;
        margin-left: auto;
        margin-right: auto;
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media only screen and (min-width: 768px) {
    .hero-card {
        position: relative;
        display: flex;
        flex-direction: column;
        min-width: 0;
        word-wrap: break-word;
        background-color: #fff;
        background-clip: border-box;
        border: 1px solid rgba(0, 0, 0, 0.125);
        border-radius: 8px;
        box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
    }
    .hero-title-container h1 {
        color: #333333;
        font-size: 26px;
    }
    #hero-experience {
        background-image: url('https://s3.eu-west-3.amazonaws.com/tantosvago-3.0/ts-hero-primavera2021.jpg');
        background-position-x: left;
    }
    #hero-experience {
        position: relative;
    }
    #hero-experience video {
        width: 100%;
        height: auto;
        position: absolute;
        top: -35%;
        left: 0;
    }
    #hero-slider .hero-slider-title {
        font-size: 48px;
    }
}

.peopleNumber .input-group-text, .quantity-input .input-group-text {
    padding: 0 6px;
    border-left: 0;
    margin-left: 1px;
    border-radius: 0 8px 8px 0;
}

.peopleNumber button, .quantity-input button {
    border: 1px solid grey;
    border-radius: 100%;
    width: 32px;
    height: 32px;
    color: #333333;
    line-height: 32px;
    font-weight: bold;
}

.peopleNumber button:hover, .quantity-input button:hover {
    text-decoration: none;
    background-color: black;
    color: white;
}


/* Home Carousels */
.selector {
    padding-bottom: 2rem;;
}

.selector h2 {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    padding-left: 8px;
}

.selector h2 a {
    font-size: 1rem;
    font-weight: normal;
}


/* Slick Slider */
.slick-slide,
.slick-slider .slick-track,
.slick-slider .slick-list
{
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);

  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);

  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  perspective: 1000;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media only screen and (max-width: 576px) {
    .regular-slider {
        white-space: nowrap;
        overflow-x: auto;
        margin-left: -16px;
        margin-right: -16px;
    }
    .partner-slider {
        white-space: nowrap;
        overflow-x: auto;
        display: block !important;
    }
    .regular-slider a {
        display: inline-block !important;
        margin-right: 10px;
        vertical-align: top;
    }
    .partner-slider > div {
        display: inline-block !important;
        vertical-align: top;
    }
    .partner-slider > div, .partner-slider a {
        width: 200px;
        height: auto;
        box-sizing: content-box;
        margin-bottom: 0 !important;
    }
    .experience-slider a {
        width: 250px;
        height: auto;
    }
    .regular-slider > *, .partner-slider > * {
        white-space: normal;
    }
}

.partner-slider a, .other-partner a {
    height: 250px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: background-size .2s linear;
    -moz-transition: background-size .2s linear;
    -ms-transition: background-size .2s linear;
    -o-transition: background-size .2s linear;
    transition: background-size .2s linear;
    margin-bottom: 32px;
}
.partner-slider a:hover, .other-partner a:hover {
    background-size: 105%;
}
.partner-slider a > div, .other-partner a > div {
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.5032387955182073) 0%, rgba(0,0,0,0) 100%);
}

.regular-slider .card-body {
    height: 200px;
}

.regular-slider .card-title {
    white-space: normal;
    overflow: hidden;
    max-height: 50px;
}

.card-img-top-container {
    height: 175px;
    overflow: hidden;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: background-size .2s linear;
    -moz-transition: background-size .2s linear;
    -ms-transition: background-size .2s linear;
    -o-transition: background-size .2s linear;
    transition: background-size .2s linear;
}

.card-img-top-container:hover {
    background-size: 105%;
}

/* SERP PAGE */
@media only screen and (max-width: 1199px) {
    #serp-bar {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        z-index: 1029;
        height: 56px;
    }

    #serp-container {
        margin-top: 56px;
    }
}

#serp-container.with-map {
    height: calc(100vh - 124px);
}

#serp-container.with-map > .row {
    height: 100%;
}

.pagination .page-item .page-link {
    border-radius: 50% !important;
    width: 38px;
    text-align: center;
    margin-right: 8px;
}
.pagination .page-item:last-child .page-link {
    margin-right: 0;
}

.mobile-serp-buttons {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
}
.mobile-serp-buttons.bottom-reached, #serp-container.with-map .mobile-serp-buttons {
    position: absolute !important;
}
/* .mobile-serp-buttons button {
    width: 120px;
} */
.mobile-serp-buttons .btn-group {
    border-radius: 50%;
}
.mobile-serp-buttons #mobile-filters-btn {
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
}
.mobile-serp-buttons #mobile-map-btn {
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
}

#switch {
    display: inline-block;
    cursor: pointer;
}

#switch .switch-button {
    display: inline-block;
    width: 32px;
    height: 20px;
    position: relative;
    vertical-align: middle;
}
#switch .switch-button .switch-circle {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 2px;
    left: 2px;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    transition: all .1s linear;
}
#switch.switch-on .switch-button .switch-circle {
    -webkit-transform: translateX(12px);
    -moz-transform: translateX(12px);
    transform: translateX(12px);
}

@media only screen and (max-width: 991px) {
    #serp-hidden-search {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* FILTERS */
.filters-container .slider.slider-horizontal {
    width: 92%;
    margin-left: 4%;
}
.filters-container .slider-handle {
    background: #dedede;
}
.filters-container .values  {
    margin-top: 5px;
}
.custom-tooltip-inner {
    white-space: nowrap;
}
.slider .tooltip {
    z-index: 1000 !important;
}
.slider .tooltip.top {
    margin-top: -30px !important;
}

@media only screen and (max-width: 1199px) {
    .filters-container {
        position: fixed;
        top: 100%;
        z-index: 9999;
        visibility: hidden;
        transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
        transition: transform .3s ease-in-out, visibility .3s ease-in-out;
        transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
        background-color: #ffffff;
    }
    .filters-container.open {
        visibility: visible;
    }
}

@media only screen and (min-width: 576px) and (max-width: 1199px) {
    .filters-container {
        left: calc((100% - 540px)/2);
        width: 540px;
        height: 80vh;
    }
    .filters-container.open {
        -webkit-transform: translateY(-90vh);
        transform: translateY(-90vh);
    }
}

@media only screen and (max-width: 575px) {
    .filters-container {
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }
    .filters-container.open {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        bottom: 0;
    }
}

@media only screen and (min-width: 1200px) {
    #serp-container.with-map .filters-container {
        width: 300px;
        height: 100%;
        overflow-y: auto;
    }
}


/* RESULTS */
@media only screen and (max-width: 767px) {
    .results .card .cover {
        height: 0;
        padding-top: 56.25%;
        border-radius: .3rem .3rem 0 0;
    }
    .results .card .partner-logo {
        bottom: -8px;
        left: 16px;
        width: 72px;
        height: 72px;
    }
}
@media only screen and (min-width: 768px) {
    .results .card .cover {
        height: 156px;
        border-radius: .3rem 0 0 0;
    }
    .results .card .partner-logo {
        top: 8px;
        left: 8px;
        width: 56px;
        height: 56px;
    }
}
@media only screen and (max-width: 991px) {
    #list-results {padding-bottom: 86px !important;}
}
.partner-logo {
    position: absolute;
    z-index: 1;
    border: 1px solid #ffffff;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#serp-container.with-map .results-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#no-results {
    height: calc(100vh - 124px);
}

.results-container {
    min-height: calc(100vh - 124px);
}
.map-container {
    width: 100%;
    height: 100%;
}
#map {
    height: 100%;
}

.results .order {
    font-weight: bold;
    border: 0;
}

.results .card:last-child {
    margin-bottom: 0;
}

.results .card .cover {
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: background-size .2s linear;
    -moz-transition: background-size .2s linear;
    -ms-transition: background-size .2s linear;
    -o-transition: background-size .2s linear;
    transition: background-size .2s linear;

}

.results .card:hover .cover {
    background-size: 105%;
}

.results .item .info {
  padding: 16px;
  color: #333333;
}

@media only screen and (max-width: 575px) {
    .results .product-category, .results .product-partner, .results .product-place {
        font-size: 0.9rem;
    }
}
@media only screen and (min-width: 576px) {
    .results .product-name, .results .product-price {
        font-size: 1.2rem;
    }
}

.btnperson.active {
    color: #ffffff !important;
}
.btnperson:focuse {
    outline: none !important;
}


/* MAP */
/* button.gm-fullscreen-control, div.gmnoprint:last-of-type {
    display: none !important;
} */
.gm-style {
    font-family: Montserrat, sans-serif;
    font-size: 12px;
}
.gm-style strong {
    font-weight: 700;
}
.gm-style .gm-style-iw-c {
    padding: 0 !important;
}
.gm-style .gm-style-iw-c > .gm-style-iw-d {
    overflow: visible !important;
    display: -webkit-box !important;
    display: flex !important;
}
.gm-style .gm-style-iw-c > .gm-style-iw-d > div {
    max-height: 100%;
    overflow-y: auto;
}
.gm-style .gm-style-iw-c > .gm-style-iw-d > div > a {
    width: 300px !important;
}
.gm-style .gm-style-iw-c > .gm-style-iw-d > div > a + a {
    margin-top: 20px;
}
.cluster > div {
    line-height: 40px !important;
}
.gm-style .gm-style-iw-c > button {
    top: 0 !important;
    right: 0 !important;
    opacity: 1 !important;
    background-color: #ffffff !important;
}

/* Slick Slider */
.regular-slider .slick-slide {
  margin-right: 16px;
}
.slick-slide img {
  width: 100%;
}
#hero-slider .slick-arrow {
    position: absolute;
    top: calc(50% - 17px);
    z-index: 9;
    width: 35px;
    text-align: center;
}
#hero-slider .slick-arrow:hover {
    cursor: pointer;
}
#hero-slider .prevButton {left: 32px;}
#hero-slider .nextButton {right: 32px;}
#hero-slider .slick-dots {
    position: absolute;
    z-index: 9;
    display: inline-block !important;
}
#hero-slider .slick-dots li {
    width: 24px;
    height: 24px;
}
#hero-slider .slick-dots li button {
    width: 24px;
    height: 24px;
    border: 1px solid #ffffff;
    border-radius: 50%;
}
#hero-slider .slick-dots li button:before {
    display: none;
}
#hero-slider .slick-dots li.slick-active button {
    background-color: #ffffff;
}
.slick-next, .slick-prev {
    z-index: 9;
}
.slick-slide {
  transition: all ease-in-out .3s;
}
@media only screen and (min-width: 1200px) {
    #hero-slider .slick-dots {
        left: calc((100% - 1110px)/2);
        bottom: 69px;
        width: auto;
    }
    .hero-single-slide {
        height: 431px;
    }
    .hero-single-slide:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
    }
    .single-banner:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    #hero-slider .slick-dots {
        left: calc((100% - 930px)/2);
        bottom: 69px;
        width: auto;
    }
    .hero-single-slide {
        height: 431px;
    }
    .hero-single-slide:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
    }
    .single-banner:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    #hero-slider .slick-dots {
        left: calc((100% - 690px)/2);
        bottom: 69px;
        width: auto;
    }
    .hero-single-slide {
        height: 431px;
    }
    .hero-single-slide:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
    }
    .single-banner:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    #hero-slider .slick-dots {
        left: calc((100% - 510px)/2);
        bottom: 69px;
        width: auto;
    }
    .hero-single-slide {
        height: 431px;
    }
    .hero-single-slide:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
    }
    .single-banner:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
    }
}
@media only screen and (max-width: 575px) {
    #hero-slider .slick-dots {
        left: 11px;
        bottom: 6px;
        width: auto
    }
    #hero-slider .slick-dots li button {
        height: 4px;
        border-radius: 4px;
    }
    .hero-single-slide {
        height: 500px;
    }
    .hero-single-slide:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
    }
    .single-banner:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
    }
}

/* -------------------------
.slick-active {opacity: .5;}
.slick-current {opacity: 1;}
----------------------------  */

/* PRODUCT PAGE */

.showProductDetails {
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.showProductDetails .bg-image {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}
.showProductDetails:hover {
    -webkit-transform: scale(1.005);
    -moz-transform: scale(1.005);
    -ms-transform: scale(1.005);
    transform: scale(1.005);
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}

/* parter detail logo */
@media only screen and (max-width: 575px) {
    .partner-detail-logo {
        width: 160px;
        height: 160px;
        margin-bottom: 1rem;
    }
}
@media only screen and (min-width: 576px) {
    .partner-detail-logo {
        width: 100%;
        height: 100%;
    }
}

/* product header slider */
.product-slider img {
    width: auto !important;
}
@media only screen and (max-width: 767px) {
    .product-slider img {height: 250px;}
}
@media only screen and (min-width: 768px) {
    .product-slider img {height: 350px;}
}
.product-slider .prevButton,
.product-slider .nextButton {
    position: absolute;
    display: inline-block;
    font-size: 24px;
    cursor: pointer;
    z-index: 9;
    background-color: white;
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.product-slider .prevButton {
    top: calc(50% - 32px);
    left: 32px;
}
.product-slider .nextButton {
    top: calc(50% - 32px);
    right: 32px;
}

@media only screen and (min-width: 1200px) {
    #product-actions {
        position: absolute;
        top: 0;
        right: 0;
        width: 380px;
        padding-left: 16px;
        padding-right: 16px;
    }
    #product-actions.fixed-xl {
        position: fixed;
        top: 116px;
        right: calc((100% - 1140px) / 2);
    }
    #product-actions.bottom-reached {
        position: absolute;
        top: auto;
        right: 0;
        bottom: 0;
    }
    #product-actions .product-price {
        line-height: 1.1rem;
    }
    #product-actions .product-price strong {
        font-size: 32px;
    }
    #product-actions-placeholder {
        height: 239px;
        position: absolute;
        right: 0;
        bottom: 0;
    }
}
@media only screen and (min-width: 576px) and (max-width: 1199px) {
    #product-actions {
        position: fixed;
        z-index: 1000;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
    }
    #product-actions.bottom-reached {
        position: absolute;
    }
    #product-actions .product-price {
        line-height: 1.1rem;
    }
    #product-actions .product-price strong {
        font-size: 32px;
    }
    #product-actions-placeholder {
        height: 116px;
    }
}

@media only screen and (max-width: 575px) {
    #product-actions {
        position: fixed;
        z-index: 1000;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
    }
    #product-actions .card-body > .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    #product-actions.bottom-reached {
        position: absolute;
    }
    #product-actions .product-price {
        line-height: 1.1rem;
    }
    #product-actions .product-price strong {
        font-size: 24px;
    }
    #product-actions-placeholder {
        height: 100px;
    }
}

/* Catalogo Slider */
.regular-slider .prevButton, .regular-slider .nextButton {
    position: absolute;
    display: inline-block;
    cursor: pointer;
    top: calc(50% - 16px);
    width: 32px;
    height: 32px;
    /* border: 1px solid #333333; */
    background-color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
}
.regular-slider .prevButton {
    left: -47px;
}
.regular-slider .nextButton {
    right: -32px;
}


/* GIFTCARD */
.gift-card {
  perspective: 1000px;
  height: 200px;
}
.gift-card.inactive {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.gift-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: all .8s;
    transform-style: preserve-3d;
}
.gift-card-front, .gift-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}
.gift-card-front {
    background-image: url('../img/ts-giftcard.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    padding-top: 3rem;
}
.gift-card-back {
    border-width: 8px !important;
    background-color: #ffffff;
    transform: rotateY(180deg);
}
.gift-card-front .flip-gift-card {
    position: absolute;
    left: 8px;
    bottom: 8px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}
.gift-card-back .flip-gift-card {
    position: absolute;
    right: 8px;
    top: 8px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}


/* CART */
.remove-object-from-cart {
    position: absolute;
    top: -4px;
    right: -4px;
    border: 2px solid #ffffff;
}


/* SHADOWS */
.shadow-sm-up {
    box-shadow: 0 -.125rem .25rem rgba(0,0,0,.075) !important;
}
.shadow-up {
    box-shadow: 0 -.5rem 1rem rgba(0,0,0,.15) !important;
}
.shadow-lg-up {
    box-shadow: 0 -1rem 3rem rgba(0,0,0,.175) !important;
}


/* ITEMS */
.no-discountability {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 1;
    border-radius: 50%;
}
.no-discountability > img {
    width: 40px !important;
    height: 40px !important;
}
.discountable-badge {
    opacity: .5;
}
.discountable-badge:hover {
    opacity: 1;
}

@media only screen and (max-width: 575px) {
    .product-single-img-container {
        height: 300px;
        margin-right: -16px;
        margin-left: -16px;
    }
}
@media only screen and (min-width: 576px) {
    .product-single-img-container {
        height: 400px;
    }
    .product-single-img {
        border-radius: 0.3rem;
    }
}
@media only screen and (min-width: 1200px) {
    #product-details > div:last-child {
        margin-bottom: 0 !important;
    }
}


/* CHECKOUT */
.checkout-stepper > .progress {
    height: 10px;
}
.checkout-stepper-container .rounded-circle {
    width: 20px;
    height: 20px;
    background-color: #e9ecef;
}
.checkout-stepper {
    padding-top: 37px;
}
@media only screen and (min-width: 1200px) {
    .checkout-stepper {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .checkout-stepper {
        padding-left: 100px;
        padding-right: 100px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .checkout-stepper {
        padding-left: 70px;
        padding-right: 70px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .checkout-stepper {
        padding-left: 50px;
        padding-right: 50px;
    }
}
@media only screen and (max-width: 575px) {
    .checkout-stepper {
        padding-left: 9%;
        padding-right: 9%;
    }
}


/* BANNER */
#misano-banner {
    background-image: url('https://s3.eu-west-3.amazonaws.com/tantosvago-3.0/ts-banner_misano.jpg');
    height: 200px;
}
#niceweekend-banner {
    background-image: url('https://s3.eu-west-3.amazonaws.com/tantosvago-3.0/ts-niceweekend-spring2021.jpg');
}
#travel-banner {
    /* background-image: url('https://s3.eu-west-3.amazonaws.com/tantosvago-3.0/banner-natale_italia.jpg'); */
    background-image: url('https://s3.eu-west-3.amazonaws.com/tantosvago-3.0/vacanze_italia.jpg');
}
#business-banner {
    background-image: url('https://s3.eu-west-3.amazonaws.com/tantosvago-3.0/TS-diventa_partner.png');
}
#niceweekend-banner .card-body {
    background-color: rgba(0,0,0,.65);
}
@media only screen and (max-width: 767px) {
    #travel-banner .card-body {
        background-color: rgba(0,0,0,.65);
    }
    #business-banner .card-body {
        background-color: rgba(242, 242, 242, .90);
    }
}
@media only screen and (min-width: 768px) {
    #travel-banner .card-body {
        background: rgb(0,0,0);
        background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
    }
    #business-banner .card-body {
        background: rgb(242,242,242);
        background: linear-gradient(90deg, rgba(242,242,242,.98) 0%, rgba(242,242,242,.98) 33%, rgba(242,242,242,0) 100%);
    }
}


/* SELECTION GRID */
.selection-grid > .card i {
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    transition: all .2s ease;
}
.selection-grid > .card:hover i {
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
}
@media only screen and (min-width: 1200px) {
    .selection-grid {
        display: -ms-grid;
        display: grid;
        width: 100%;
        -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: repeat(4, 1fr);
        -ms-grid-rows: 277.5px;
        grid-template-rows: 277.5px;
        grid-auto-rows: 277.5px;
    }
    .selection-grid > .card:nth-child(1) {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        -ms-grid-row: 1;
        -ms-grid-row-span: 2;
        grid-column: 1/3;
        grid-row: 1/3;
        margin-right: 12px;
        margin-bottom: 12px;
    }
    .selection-grid > .card:nth-child(2) {
        -ms-grid-column: 3;
        -ms-grid-column-span: 2;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-column: 3/5;
        grid-row: 1/2;
        margin-left: 12px;
        margin-bottom: 12px;
    }
    .selection-grid > .card:nth-child(3) {
        -ms-grid-column: 3;
        -ms-grid-column-span: 1;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-column: 3/4;
        grid-row: 2/3;
        margin: 12px;
    }
    .selection-grid > .card:nth-child(4) {
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
        grid-column: 1/2;
        grid-row: 3/4;
        margin-right: 12px;
        margin-top: 12px;
    }
    .selection-grid > .card:nth-child(5) {
        -ms-grid-column: 2;
        -ms-grid-column-span: 2;
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
        grid-column: 2/4;
        grid-row: 3/4;
        margin-left: 12px;
        margin-top: 12px;
        margin-right: 12px;
    }
    .selection-grid > .card:nth-child(6) {
        -ms-grid-column: 4;
        -ms-grid-column-span: 1;
        -ms-grid-row: 2;
        -ms-grid-row-span: 2;
        grid-column: 4/5;
        grid-row: 2/4;
        margin-left: 12px;
        margin-top: 12px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .selection-grid {
        display: -ms-grid;
        display: grid;
        width: 100%;
        -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: repeat(3, 1fr);
        -ms-grid-rows: 277.5px;
        grid-template-rows: 277.5px;
        grid-auto-rows: 277.5px;
    }
    .selection-grid > .card:nth-child(1) {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        -ms-grid-row: 1;
        -ms-grid-row-span: 2;
        grid-column: 1/3;
        grid-row: 1/3;
        margin-right: 12px;
        margin-bottom: 12px;
    }
    .selection-grid > .card:nth-child(2) {
        -ms-grid-column: 2;
        -ms-grid-column-span: 2;
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
        grid-column: 2/4;
        grid-row: 3/4;
        margin-top: 12px;
        margin-left: 12px;
        margin-bottom: 12px;
    }
    .selection-grid > .card:nth-child(3) {
        -ms-grid-column: 3;
        -ms-grid-column-span: 1;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-column: 3/4;
        grid-row: 2/3;
        margin-top: 12px;
        margin-left: 12px;
        margin-bottom: 12px;
    }
    .selection-grid > .card:nth-child(4) {
        -ms-grid-column: 3;
        -ms-grid-column-span: 1;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-column: 3/4;
        grid-row: 1/2;
        margin-left: 12px;
        margin-bottom: 12px;
    }
    .selection-grid > .card:nth-child(5) {
        -ms-grid-column: 2;
        -ms-grid-column-span: 2;
        -ms-grid-row: 4;
        -ms-grid-row-span: 1;
        grid-column: 2/4;
        grid-row: 4/5;
        margin-top: 12px;
        margin-left: 12px;
    }
    .selection-grid > .card:nth-child(6) {
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        -ms-grid-row: 3;
        -ms-grid-row-span: 2;
        grid-column: 1/2;
        grid-row: 3/5;
        margin-top: 12px;
        margin-right: 12px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .selection-grid {
        display: -ms-grid;
        display: grid;
        width: 100%;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: repeat(2, 1fr);
        -ms-grid-rows: 345px;
        grid-template-rows: 345px;
        grid-auto-rows: 345px;
    }
    .selection-grid > .card:nth-child(1) {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        -ms-grid-row: 1;
        -ms-grid-row-span: 2;
        grid-column: 1/3;
        grid-row: 1/3;
        margin-bottom: 12px;
    }
    .selection-grid > .card:nth-child(2) {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
        grid-column: 1/3;
        grid-row: 3/4;
        margin-top: 12px;
        margin-bottom: 12px;
    }
    .selection-grid > .card:nth-child(3) {
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        -ms-grid-row: 5;
        -ms-grid-row-span: 1;
        grid-column: 2/3;
        grid-row: 5/6;
        margin-top: 12px;
        margin-left: 12px;
        margin-bottom: 12px;
    }
    .selection-grid > .card:nth-child(4) {
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        -ms-grid-row: 4;
        -ms-grid-row-span: 1;
        grid-column: 2/3;
        grid-row: 4/5;
        margin-top: 12px;
        margin-left: 12px;
        margin-bottom: 12px;
    }
    .selection-grid > .card:nth-child(5) {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        -ms-grid-row: 6;
        -ms-grid-row-span: 1;
        grid-column: 1/3;
        grid-row: 6/7;
        margin-top: 12px;
    }
    .selection-grid > .card:nth-child(6) {
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        -ms-grid-row: 4;
        -ms-grid-row-span: 2;
        grid-column: 1/2;
        grid-row: 4/6;
        margin-top: 12px;
        margin-right: 12px;
        margin-bottom: 12px;
    }
}
@media only screen and (max-width: 767px) {
    .selection-grid > .card {
        margin-bottom: 1rem;
        height: 250px;
    }
}


/* PROFILE NAVIGATION */
@media only screen and (max-width: 991px) {
    .profile-nav {
        overflow-x: auto;
    }
    .profile-nav .nav-item {
        min-width: 100px;
    }
}


/* SUGGESTION BOXES */
#experiences_input {
    position: relative;
}
.hero-suggestion {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
    max-height: 261px;
}
.hero-suggestion button, .pac-item {
    background: inherit;
    display: block;
    font-size: 14px;
    font-weight: normal;
    padding: 8px 12px;
    width: 100%;
    text-align: left;
    border: none;
    text-overflow: ellipsis;
    line-height: 21px;
}
.hero-suggestion button:hover, .hero-suggestion button:focus {
    background-color: #ebebeb;
    cursor: pointer;
}
.hero-suggestion button em {
    color: #aaa;
    font-size: 0.9em;
}
.pac-container {
    top: 100% !important;
    left: 0 !important;
}
.pac-container::after {
    display: none;
}
.pac-icon {
    display: none;
}
.pac-item-query {
    font-size: 14px !important;
}


/* FORM VALIDATION */
input.is-invalid {
    background-image: none !important;
}
span.is-invalid {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: block;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(220,53,69,.9);
    border-radius: .25rem;
}
/* span.is-invalid {
  display: block;
  width: 100%;
  margin-top: .25rem;
  font-size: 80%;
  color: #dc3545;
} */


/* SHOW PASSWORD */
.show-password-btn {
    opacity: .5;
}
.show-password-btn:hover {
    opacity: 1;
    cursor: pointer;
}
.show-password-btn.showing-password {
    opacity: 1;
}


/* ATTRIBUTES COLLAPSE */
/* .attributes-collapse {
    max-height: 215px;
} */


/* ACCORDION */
.accordion .btn:focus {
    box-shadow: none !important;
    text-decoration: none !important;
}
.accordion .btn:hover {
    text-decoration: none !important;
}


/* ENV CARD */
.env-card {
    position: fixed;
    z-index: 1030;
    bottom: 0;
    left: 0;
}


/* FONTAWESOME */
.fa-ul {
    margin-left: 1.5em !important;
}


/* LAUNCHER */
.launcher-card {
    background-color: transparent;
    position: relative;
    width: 100%;
}
.launcher-card:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}
.launcher-card .launcher-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
.launcher-card .launcher-card-overlay .card-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    height: 48px; 
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
}
@media only screen and (min-width: 1200px) {
    .launcher-card .launcher-card-overlay {
        position: absolute;
        left: 0;
        right: 0;
        bottom: -66px;
        -webkit-transition: all .2s ease-out;
        -moz-transition: all .2s ease-out;
        -ms-transition: all .2s ease-out;
        transition: all .2s ease-out;
    }
    .launcher-card:hover .launcher-card-overlay {
        bottom: 0;
    }
}
