/*
---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
GLOBAL STYLES
---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
*/

* {
    box-sizing: border-box;
}

html * {
    outline: 0 !important;
}

html {
    min-height: 100%;
    padding: 0px;
    margin: 0px;
}

body {
    padding: 0px;
    margin: 0px;
    font-family: 'Montserrat', sans-serif;
    color: #444;
    height: 100%;
}

body.has-modal {
    overflow: hidden;
}

#site-wrapper.has-modal {
    overflow: hidden;
}

a {
    color: #000;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

a:hover {
    text-decoration: none;
    color: #00b3e2;
}

p,
a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 1.5em;
}

p.large {
    font-size: 16px;
}

p.bold {
    font-weight: 600;
}

h1, .h1 {
    font-size: 60px;
    font-weight: 600;
}

h2, .h2 {
    font-size: 40px;
    font-weight: 700;
}

h2.small, .h2.small {
    font-size: 30px;
}

h3, .h3 {
    font-size: 23px;
    font-weight: 700;
}

h4, .h4 {
    font-size: 20px;
    letter-spacing: .07em;
    font-weight: 700;
}

h5.bold, .h5.bold {
    font-size: 18px;
    font-weight: 700;
}

h6, .h6 {
    font-size: 16px;
}

h5, .h5 {
    font-size: 18px;
}

.bold {
    font-weight: 600;
}

.bg-aqua-blue {
    background-color: #0062A6 !important;
}

.text-auqa-blue,
.text-aqua-blue {
    color: #0062A6;
}

.bg-light-blue {
    background-color: #b9e2f5 !important;
}

.bg-yellow,
.bg-dark-yellow {
    background-color: #f7ce3b !important;
}

.text-light-blue {
    color: #b9e2f5;
}

.bg-dark-blue {
    background-color: #0061a6 !important;
}

.text-dark-blue,
.text-blue {
    color: #0061a6;
}

.bg-purple,
.bg-dark-purple {
    background-color: #85266a !important;
}

.text-purple {
    color: #85266a;
}

.bg-green,
.bg-dark-green {
    background-color: #45b977 !important;
}

.text-green {
    /* color: #45b977; */
}

.bg-dark-gray {
    background-color: #747474 !important;
}

.bg-light-gray {
    background-color: #f7f7f7;
}

.bg-white{
    background-color: #fff;
}

.text-black {
    color: #000;
}

.text-bold {
    font-weight: 600;
}

.btn {
    border-radius: 0;
    text-transform: capitalize;
    font-weight: bold;
    letter-spacing: 0.9px;
    cursor: pointer;
}

.btn-lg {
    width: 223px;
    height: 56px;
}

.btn-blue {
    font-size: 20px;
    background: #0061a6;
    color: #fff;
}

.input-aqua-blue {
    border-color: #0062A6 !important;
}

.modal-backdrop {
    z-index: 10000000;
}

.checkout-modal .modal-body {
    padding: 3rem;
}
.checkout-modal .modal-body p {
    margin-bottom: 0.1rem;
}
.checkout-modal .close {
    position: absolute;
    top: 1.5rem;
    right: 1.7rem;
    font-size: 36px;
    font-weight: 300;
    color: #00B3E2;
    opacity: 1;
    cursor: pointer;
}
.checkout-modal h4 {
    color: #444;
    font-weight: 600;
    font-size: 18px;
}
@media (min-width: 768px) {
    .checkout-modal .modal-dialog.modal-sm {
        max-width: 470px;
    }
}

/* Mailchimp popup */
.mc-banner {
    z-index: 9999999 !important;
}
.mc-modal {
    z-index: 9999998 !important;
}


/*
---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
STRUCTURING ELEMENTS
---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
*/

.dd-wrapper {
    position: relative;
    display: inline-block;
    width: 80%;
    margin: 0 auto;
    border-radius: 0;
    cursor: pointer;
    outline: none;
}

.dd-wrapper .fa-angle-down {
    float: right;
    font-size: 20px;
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out;
}

.dd-wrapper .placeholder {
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

.dd-wrapper .dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding-left: 0;
    transition: all 0.3s ease-in-out;
    list-style: none;
    opacity: 0;
    pointer-events: none;
}

.dd-wrapper .dropdown-list li {
    text-transform: capitalize;
    display: block;
    padding: 3px 10px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.dd-wrapper.style1 .dropdown-list {
    background: #fff;
    border: 1px solid #707070;
    max-height: 220px;
    overflow: scroll;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 867531;
    top: 14px;
    left: 0px;
}

.dd-wrapper.style1 .dropdown-list li {
    color: #707070 !important;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.dd-wrapper.active .dropdown-list {
    opacity: 1;
    pointer-events: auto;
}

.dd-wrapper.active .fa-angle-down {
    transform: rotate(180deg);
}

.container-constrained {
    max-width: 1920px;
    margin: 0 auto;
}

.product-container {
    max-width: 1400px;
    margin: 0 auto;
}

.stop-scroll {
    height: 100%;
    overflow: hidden;
}

.visible-xs {
    display: none;
}

@media(max-width: 576px) {
    .hidden-xs {
        display: none;
    }

    .visible-xs {
        display: block;
    }
    body,
    p,
    a {
        /* font-size: 18px; */
    }
}

.fade-enter-active, .fade-leave-active {
    transition-property: opacity;
    transition-duration: .25s;
}
.fade-enter-active {
    transition-delay: .25s;
}

.fade-enter, .fade-leave-active {
    opacity: 0
}

.fade-no-delay-enter-active, .fade-no-delay-leave-active {
    transition-property: opacity;
    transition-duration: .25s;
}
.fade-no-delay-enter, .fade-no-delay-leave-active {
    opacity: 0
}

.injected-tile-img{
    width: 90%;
    position: relative; top: 50%; left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.cms-image{
    margin-bottom: 30px;
}

/* BOOTSTRAP IS STUPID */
@media (max-width: 576px) {
    body, p, a {
        /* font-size: inherit; */
    }
}

/* REGISTRATION SLOT MACHINE EFFECT */
/* THIS CANNOT BE SCOPED CSS BECAUSE VUE DOESN'T APPLY CSS TO DYNAMIC CONTENT ADDED THROUGH JAVASCRIPT */
/* https://github.com/vuejs/vue-loader/issues/559 */

#rotate {
    display: flex;
    height: 110px;
    overflow: hidden;
    margin: 0 auto 0;
    transform-style: preserve-3d;
}

.ring-container {
    margin: 0 5px;
    position: relative;
}

.ring-shadow {
    background: transparent;
    box-shadow: inset -1px 1px 8px #000;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

.ring {
    height: 110px;
    width: 70px;
    transform-style: preserve-3d;
}

.percentage-sign {
    color: #fff;
    display: block;
    margin-left: 5px;
    font-size: 30px;
    font-weight: 300;
}

.slot {
    position: absolute;
    height: 110px;
    width: 70px;
    background: #FFF;
    z-index: -1;
    -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
            backface-visibility: hidden;
}

.slot p {
    color: #0061A6;
    font-size: 60px;
    font-weight: 600;
    line-height: 120px;
    margin: 0;
    text-align: center;
}


.spin-me    { transform: rotateX(-4049deg); }

@keyframes spin-me {
    0%    { transform: rotateX(30deg); }
    100%  { transform: rotateX(-4049deg); }
}


.warranty-content {
    display: none;
    padding: 30px 0;
}

.warranty-title {
    font-weight: 700;
}

.warranty-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 35px;
}

@media screen and (max-width: 767px) {
    .warranty-content h2 {
        font-size: 24px;
    }
}

.warranty-content .h5 {
    color: #0062A6;
    font-size: 16px;
    font-weight: 600;
}

.warranty-content p {
    font-size: 14px;
}


/* UH Weird tags coming from HQ */
.spec-content .paragraph ul {
    margin: 0;
    padding-left: 10px;
}

.article-content a {
    color: #0061a6;
    text-decoration: underline;
}



/* SWIPER stuff for make-a-wish page */

.swiper-container .swiper-pagination {
    text-align: left;
}
@media screen and (max-width: 650px) {
    .wish-container .swiper-container .swiper-pagination {
        display: none;
    }
}
.wish-container .swiper-container .swiper-pagination-fraction, .swiper-pagination-custom,
.wish-container .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 30px !important;
}
@media screen and (max-width: 1024px) {
    .wish-container .swiper-container .swiper-pagination-fraction,
    .wish-container .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
        bottom: 10% !important;
    }
}

.home-hero .swiper-container .swiper-pagination-fraction, .swiper-pagination-custom,
.home-hero .swiper-container-horizontal .swiper-pagination-bullets {
    /* bottom: 50px !important; */
    /* left: 4vw !important; */
}

.swiper-container .swiper-pagination .swiper-pagination-bullet {
    border: 2px solid #00B3E2;
    opacity: 1;
    width: 12px;
    height: 12px;
    background: white;
    margin: 0 4px;
}
@media screen and (max-width: 650px) {
    .home-hero .swiper-container .swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 2.5px;
        border: 1px solid #00B3E2;
    }
}
.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #00B3E2;
}



/* SLICK slider styles for description page */

.slick-slider {
    width: 20%;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    margin: 0 20px;
}
@media screen and (max-width: 1024px) {
    .slick-slider {
        width: 93%;
        max-width: 500px;
        flex-direction: row;
        margin-top: 20px;
    }
}
@media screen and (max-width: 500px) {
    .slick-slider {
        width: 97%;
        margin-top: 5px;
    }
}

.slick-slider .slick-list {
    max-width: 85px;
    margin: 0 auto;
}
@media screen and (max-width: 1400px) {
    .slick-slider .slick-list {
        max-width: 75px;
    }
}
@media screen and (max-width: 1024px) {
    .slick-slider .slick-list {
        max-width: unset;
    }
}

.slick-slider .slick-list .slick-slide {
    width: 100%;
    margin: 9px 0;
    opacity: 0.35;
}
@media screen and (max-width: 1024px) {
    .slick-slider .slick-list .slick-slide {
        width: unset;
        padding: 0 7px;
    }
}
@media screen and (max-width: 767px) {
    .slick-slider .slick-list .slick-slide {
        padding: 0 5px;
    }
}

.slick-slider .slick-list .slick-slide.active-slide {
    opacity: 1;
}
.slick-slider .slick-prev[aria-disabled="true"],
.slick-slider .slick-next[aria-disabled="true"] {
	opacity: 0;
}

.slick-slider .slick-prev,
.slick-slider .slick-next {
    border: none;
    background: none;
    margin: 0 auto;
    display: block;
}

@media screen and (max-width: 1024px) {
    .slick-slider .slick-prev {
        padding-right: 15px;
    }
    .slick-slider .slick-next {
        padding-left: 15px;
    }
    .slick-slider .slick-prev img, .slick-slider .slick-next img {
        transform: rotate(-90deg);
    }
}
@media screen and (max-width: 500px) {
    .slick-slider .slick-prev {
        padding-right: 5px;
    }
    .slick-slider .slick-next {
        padding-left: 5px;
    }
    .slick-slider .slick-prev img, .slick-slider .slick-next img {
        transform: rotate(-90deg) scale(.8);
    }
}