/*
---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
FONTS
---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
*/

@font-face{
    font-family: 'Nexa';
    src: url('/assets/fonts/NexaRegular.otf');
}


@font-face{
    font-family: 'NexaBold';
    src: url('/assets/fonts/NexaBold.otf');
}


@font-face{
    font-family: 'NexaHeavy';
    src: url('/assets/fonts/NexaHeavy.otf');
}

/*
---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
GENERAL
---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
*/

:root{
    /* Colors */
    --color-black: #000;
    --color-old-blue: #5B89B4;
    --color-blue: #47729B; /* Main mid-blue */
    --color-old-light-blue: #97CAEB;
    --color-light-blue: #E8F4FD; /* Main light-blue */
    --color-dark-blue: #274357; /* Main dark-blue */
    --color-yellow: #FFC843;
    --color-light-gray: #F8F8F8;
    --color-gray: #757575; /* Gray text */
    --color-mid-gray: #656565; /* Gray text on dark*/
    --color-dark-gray: #535353;
    --color-darker-gray: #2a2a2a;
    --color-capsa-blue: #1B4C6F;
    --color-red: #F68880;
    --color-red-dark: #C23C32;
    --color-red-light: #FFEBEA;
    --color-green: #32853B;
    --color-white: white;
    --color-disabled: #d8d8d8; /* Disabled gray */
    --color-transparent: rgba(255, 255, 255, 0.3);

    /* Screen Sizes */
    --xs: 320px;
    --sm: 480px;
    --md: 768px;
    --lg: 992px;
    --xl: 1300px;
    --contentWidth: 1440px;
}

*:focus {
    box-shadow:0 0 0 3px var(--color-darker-gray);
    outline: 2px solid #fff;
    outline-offset: 3px;
}
:focus:not(:focus-visible) { outline: none; box-shadow: none; }
*:focus-visible {
    box-shadow:0 0 0 3px var(--color-darker-gray);
    outline: 2px solid #fff;
    outline-offset: 3px;
}

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

body {
    padding: 0px;
    margin: 0px;
    color: var(--color-gray);
    font-family: 'Nexa', serif;
    font-size: 1.6rem;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.show-sidebar {
    overflow: hidden;
}

body.noscroll{
    overflow: hidden;
}
.stop-scrolling {
    overflow: hidden;
}
p, li{
	font-family: 'Nexa';
	font-size: 14px;
    line-height: 18px;
    margin: 0;
    font-variant-numeric: lining-nums;
    font-size: 20px;
    line-height: 36px;
}

@media screen and (max-width: 1150px){
    p, li{
        font-size: 18px;
        line-height: 32px;
    }
}
@media screen and (max-width: 900px){
    p, li{
        font-size: 16px;
        line-height: 22px;
    }
}

.bold{font-family: 'NexaBold'!important;}
.heavy{font-family: 'NexaHeavy'!important;}
.regular{font-family: 'Nexa' !important;}
.italic{font-style: italic; }

h1,h2,h3,h4,h5,h6{
    font-family: 'NexaHeavy';
    font-variant-numeric: lining-nums;
    margin-bottom: 0.8rem;
}
.no-transform{text-transform: none;}


h1{font-size: 44px; line-height: 58px; text-transform: uppercase;}
h2{font-size: 38px; line-height: 50px;}
h3{font-size: 28px;}
h4{font-size: 24px; line-height: 35px;}
h5{font-size: 20px;}
h6{font-size: 18px;}
h6.small{font-size: 16px;}

@media screen and (max-width: 1440px) {
    h1{
        font-size: 38px;
        line-height: 42px;
    }
    h2{
        font-size: 32px;
        line-height: 40px;
    }
    h4{
        font-size: 22px;
        line-height: 31px;
    }
}
@media screen and (max-width: 900px) {
    h1{
        font-size: 32px;
        line-height: 38px;
    }
    h2{
        font-size: 28px;
        line-height: 34px;
    }
    h4{
        font-size: 20px;
        line-height: 28px;
    }
}
@media screen and (max-width: 767px) {
    h1{
        font-size: 28px;
        line-height: 34px;
    }
    h2{
        font-size: 24px;
        line-height: 30px;
    }
    h4{
        font-size: 18px;
        line-height: 25px;
    }
}
@media screen and (max-width: 500px) {
    h1{
        font-size: 20px;
        line-height: 26px;
    }
    h2{
        font-size: 20px;
        line-height: 26px;
    }
    h4{
        font-size: 16px;
        line-height: 22px;
    }
}


.caps{
    text-transform: uppercase;
}

.text-blue{
	color: var(--color-blue);
}

.text-light-blue{
    color: var(--color-light-blue);
}

.text-grey{
	color: var(--color-med-grey);
}

.text-light-grey{
    color: var(--color-light-grey);
}

.text-med-gray {
    color: var(--color-med-gray);
}

.text-red{
	color: var(--color-red);
}

.text-yellow{
    color: var(--color-yellow)!important;
}

.text-green{
	color: var(--color-green);
}
.text-darker-gray{
    color: var(--color-darker-gray);
}
.text-black {
    color: var(--color-black);
}



.bg-white{
    background: #fff;
}
.bg-light-gray {
    background: var(--color-light-gray);
}

.bg-med-gray {
    background: var(--color-med-gray);
}
.bg-gray{
    background: #626263
}

.bg-dark-gray {
    background: var(--color-dark-gray);
}

.bg-blue {
    background: var(--color-blue);
}

.bg-light-blue {
    background: var(--color-light-blue);
}
.bg-yellow {
    background: var(--color-yellow);
}

.bg-black {
    background: var(--color-black);
}
.bg-capsa-blue{
    background: var(--color-capsa-blue);
}
.bg-transparent{
    background: var(--color-transparent);
}

.virtual-btn{cursor: pointer; user-select: none;}
.virtual-link{cursor: pointer; user-select: none;}
.virtual-link:hover{text-decoration: underline;}
.virtual-link:hover.dark{color: #3A3738 !important;}
.virtual-link.pre-decorated{text-decoration: underline;}

/*
---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
STYLED ELEMENTS
---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
*/

hr{
    margin: 20px 0px;
    border-top: 1px solid var(--color-light-grey);
}

a, a:visited{
    font-family: 'NexaHeavy';
    color: var(--color-blue);
    text-decoration: 2px underline transparent;
    text-underline-offset: .125em;
}
a:hover, 
a:active,
a:hover p,
a:active p{
    font-family: 'NexaHeavy';
    text-decoration: none;
    color: var(--color-blue);
    text-decoration: 2px underline var(--color-blue);
}


a.default p,
a.default,
a:hover.default p,
a:hover.default{
    font-family: 'Nexa';
    text-decoration: none;
}


img{
    max-width: 100%;
}

.hide-text {
    font-size: 0;
    line-height: 0;
}
.no-style {
    background: none;
    border: none;
}
.selection-box{
    width: 16px; 
    height: 16px;
    cursor: pointer;
    background: transparent;
    border: 1px solid #3A3738;
    position: relative; display: inline-block;
}
.selection-box-inner{
    width: 12px; height: 12px;
    position: absolute; top: 1px; left: 1px;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.23,0.59,0.24,1);
}
.selection-box-inner.active{
    background: #3A3738;
}

.select-div{
    position: relative;
}
.select-div.small{
    width: 100%;
    max-width: 150px;
    min-width: 120px;
}
select{
    font-family: 'Nexa'; font-size: 14px;
    font-variant-numeric: lining-nums;
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 0px;
    padding: 0 20px 0 0;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #4a4a4a;
    cursor: pointer;
}
.select-arrow{
    position: absolute; right: 0px;
    top: 50%; transform: translateY(-50%);
    pointer-events: none;
}

.select-div.boxed select{
    border: 1px solid;
    border-color: var(--color-dark-grey);
    padding: 2px 10px;
}
.select-div.boxed .select-arrow{
    right: 15px;
}

select option{
    background: #fff;
}

.input-div-rounded{
    max-width: 500px; 
    position: relative;
    margin: 20px;
}
input.input-rounded {
    background-color: white;
    border: none;
    color: var(--color-gray);
    font-family: 'Nexa';
    font-size: 20px;
    padding: 5px 15px 0;
    position: relative;
    border-radius: 50px;
    width: 100%;
    text-overflow:ellipsis;
}
.input-div{
    max-width: 350px; position: relative;
}
input, textarea {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--color-blue);
    color: var(--color-blue);
    font-family: 'NexaHeavy';
    font-size: 22px;
    padding: 0px;
    padding-bottom: 0px;
    padding-right: 15px;
    position: relative;
    border-radius: 0;
    width: 100%;
    text-overflow:ellipsis;
}
::-webkit-input-placeholder {font-size: 20px; color: var(--color-gray);text-overflow:ellipsis;}
::-moz-placeholder {font-size: 20px; color: var(--color-gray);text-overflow:ellipsis;}
::-ms-placeholder {font-size: 20px; color:var(--color-gray);text-overflow:ellipsis;}
::placeholder {font-size: 20px; color: var(--color-gray);text-overflow:ellipsis;}
[placeholder]{
    text-overflow:ellipsis;
}
.input-inactive{
    color: var(--color-med-grey);
}

.clear-input{
    position: absolute; right: 0px;
    top: 5px; cursor: pointer;
}


.loading-outer{
    position: absolute; width: 100%; height: 100%;
    top: 0; left: 0;
    background: rgba(255,255,255,0.8); z-index: 700;
}
.loading-inner{
    position: absolute; top: 50%; left: 50%;
    transform: translateX(-50%) translateY(-50%);
    height: 100px; width: auto;
}

/*
---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
BUTTONS
---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
*/
.onwatch-btn{
    font-size: 14px;
    font-family: 'NexaHeavy';
    line-height: 2; 
    padding: .4rem 1rem .1rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--color-blue);
    cursor: pointer;
    border-radius: 50px;
    border: 2px solid var(--color-blue);
    transition: 0.15s ease-in-out;
    background: unset;
}
.onwatch-btn.min-width{
    min-width: 250px;
}
.onwatch-btn.no-border{
    border: none;
}
.onwatch-btn:hover{
    text-decoration: 2px underline;
}
.onwatch-btn.no-border:hover{
    background: unset;
}
@media screen and (max-width: 900px) {
    .onwatch-btn{
        font-size: 12px;
        letter-spacing: 1.2px;
    }
}
@media screen and (max-width: 520px) {
    .onwatch-btn:hover{
        background: unset;  
    }
}
.onwatch-btn:disabled:hover{
    color: var(--color-yellow);
    border: 2px solid var(--color-yellow);
    background: unset;
}


.btn-white {
    color: var(--color-white);
    border-color:var(--color-white);
}


.btn-blue {
    color: var(--color-blue);
    border: 2px solid var(--color-blue);
}


.btn:disabled, .btn.disabled{
    background: var(--color-med-grey);
    cursor: not-allowed;
}

/*
---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
VUE ANIMATIONS
---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
*/

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

.slide-left-leave-active,
.slide-left-enter-active {
  transition: 0.3s cubic-bezier(0.23,0.59,0.24,1);
}
.slide-left-enter, .slide-left-leave-to {
  transform: translateX(340px);
}

.loading-outer{
    position: absolute; width: 100%; height: 100%;
    top: 0; left: 0;
    background: rgba(255,255,255,0.8); z-index: 700;
}
.loading-inner{
    position: absolute; top: 50%; left: 50%;
    transform: translateX(-50%) translateY(-50%);
    height: 100px; width: auto;
}


.slide-fade-leave-active, .slide-fade-enter-active {
    transition: all .8s ease;
}
.slide-fade-enter, .slide-fade-leave-to
    /* .slide-fade-leave-active below version 2.1.8 */ {
    opacity: 0.999;
}

.slide-fade-enter-active .modal-box, .slide-fade-leave-active .modal-box{
    transition: all .8s ease;
}
.slide-fade-enter .modal-box, .slide-fade-leave-to .modal-box {
    opacity: 1;
    transform: translateY(100vh)
}

.slide-fade-enter-active .modal-bg, .slide-fade-leave-active .modal-bg{
    transition: all .8s ease;
}
.slide-fade-enter .modal-bg, .slide-fade-leave-to .modal-bg {
    opacity: 0;
}

/*
---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
TRUSTARC COOKIE LINK
---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
*/
#teconsent {
    margin: 0 10px;
}
#teconsent a,
#teconsent a:visited {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.2px;
    color: #fff;
    text-underline-offset: .125em;
}
#teconsent a:hover,
#teconsent a:active {
    text-decoration: underline;
    color: var(--color-light-blue);
    cursor: pointer;
}
@media screen and (max-width: 950px) {
    #teconsent {
        margin: 0 5px;
    }
}

@media screen and (max-width: 678px) {
    #teconsent {
        flex-direction: column;
        margin: 10px 5px;
    }
    #teconsent a,
    #teconsent a:visited {
        font-size: 10px;
    }
}
