/*
RV PRIMARY STYLESHEET -----
v1.0

Used everywhere
--Must include
*/


/* FONTS */
@font-face {
font-family: "GoogleSansFlex";
src: url("../fonts/GoogleSansFlex.ttf") format("truetype");
font-weight: 100 900;  
font-stretch: 75% 125%; 
font-style: normal;
}






/* GENERAL PAGES */
/*--- GENERAL: MAIN BODY ---*/ 
html {
box-sizing: border-box;
font-size: 16px;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: transparent;
}

*,
*::before,
*::after {
box-sizing: inherit;
}

body {
margin: 0;
font-family: 'GoogleSansFlex', sans-serif;
font-weight: 400;
font-size: 1rem;
line-height: 1.5;
color: #212529;  
text-align: left;
background-color: white;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
overflow: hidden;
}

/*--- GENERAL: ELEMENTS ---*/ 
button,
button:hover,
button:active,
button:focus {
outline: 0;
cursor: pointer;
}

button {
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
border-radius: 0.375rem;
}

button,
input,
optgroup,
select,
textarea {
font: inherit;
}

a {
color:inherit;
text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
font-weight: 500;
line-height: 1.2;
margin-top: 0;
margin-bottom: 0.5rem;
}

h2 { font-size: 2rem; line-height: 1.25; }
h3 { font-size: 1.75rem; line-height: 1.3; }
h4 { font-size: 1.5rem; line-height: 1.35; }
h5 { font-size: 1.25rem; line-height: 1.4; }
h6 { font-size: 1rem; line-height: 1.5; }

p {
margin-top: 0;
margin-bottom: 1rem;  /* vertical rhythm */
}


img,
svg,
video,
iframe,
object,
embed {
vertical-align: middle;  /* prevents inline baseline gaps */
max-width: 100%;         /* responsive by default */
height: auto;            /* maintain aspect ratio */
display: inline-block;   /* inline by default for images and svg */
}


/*REUSABLE ELEMENTS*/
/*---REUSABLE ELEMENTS: DROPDOWN---*/ 
.dropdown{
position: relative; 
}

.dropdown-menu {
display: none;
min-width: 10rem;
background: white;
border: none;
}

.dropdown.show .dropdown-menu {
display: block;
}

/*---REUSABLE ELEMENTS: COLLAPSE---*/ 
.collapse {
display: none;
overflow: hidden; 
}

.collapse.show {
display: block;
}

.collapsing {
height: 0;
overflow: hidden;
transition: height 0.35s ease;
}


/*---REUSABLE ELEMENTS: MODAL---*/ 
.modal {
position: fixed;
top: 0;
left: 0;
z-index: 1050;
display: none;         
width: 100%;
height: 100%;
overflow: hidden;       
outline: 0;
}

.modal.show {
display: block;
}





/* COOKIE ALERT */
/*--- COOKIE ALERT: LAYOUT ---*/
.rv-bloom-alert-group{
z-index:9999;
padding: 20px 5%;
border-radius:0px;
background-color:floralwhite;
color: #333;
opacity:0.98;
position:fixed;
bottom:0;
width:100%;
box-shadow:0 -1px 2px rgba(0,0,0,0.07),
0 -2px 4px rgba(0,0,0,0.07),
0 -4px 8px rgba(0,0,0,0.07),
0 -8px 16px rgba(0,0,0,0.07),
0 -16px 32px rgba(0,0,0,0.07);
}

.rv-bloom-alert-row {
display: flex;
}

.rv-bloom-alert-col-a {
width: 80%;
text-align:left;
padding:20px;
}

.rv-bloom-alert-col-b {
width: 20%;
text-align:left;
padding:20px;
}

.rv-bloom-alert-group h1{
font-size:30px;
font-weight:600;
}

.rv-bloom-alert-group h2{
font-size:18px;
font-weight:400;
margin:0;
margin-top:10px;
opacity:0.9;
}

.rv-bloom-alert-group button{
padding:8px 16px;
border-radius:0px;
width:100%;
font-size:16px;
}

.rv-bloom-alert-group button.note{
border:none;
background-color:#c86c13;
color: #fff;
margin-bottom:10px;
}

.rv-bloom-alert-group button.note:hover{
background-color:#333;
color:#c86c13;
}

.rv-bloom-alert-group button.policy{
border:1px solid #c86c13;
background-color:inherit;
color: #c86c13;
}

.rv-bloom-alert-group button.policy:hover{
background-color:#c86c13;
color:#fff;
}

/*--- COOKIE ALERT: RESIZED ---*/
@media screen and (max-width: 800px) {
.rv-bloom-alert-row{
flex-direction: column;
}

.rv-bloom-alert-col-a {
width:100%;
padding:10px 0px 0px 0px;
}

.rv-bloom-alert-col-b {
width:100%;
padding:20px 0% 0px 0%;
}
}












/* MISC */
/*--- MISC: SHUFFLE ---*/
.webox-inner-con, .uniriv-banner-inner-content{
display:none;
}

.webox-inner-con.active, .uniriv-banner-inner-content.active{
display:block;
}

.wx-hidden-item {
display: none;
}


