/*//////////////////////////////////////////*/
/* Reset styles */
/*//////////////////////////////////////////*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, i{
	border:0;
	font-family:inherit;
	font-size:100%;
	font-style:inherit;
	font-weight:inherit;
	margin:0;
	outline:0;
	padding:0;
	vertical-align:baseline;
}
:focus{
	outline:0;
}
body{
	line-height:1;
}
ol, ul{
	list-style:none;
}
caption{
	font-weight:normal;
	text-align:left;
}
blockquote:before, blockquote:after,
q:before, q:after{
	content:"";
}
blockquote, q{
	quotes:"" "";
}
a img{
	border:0;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section{
	display:block;
}
/*//////////////////////////////////////////*/
/* RV Land Sans */
/*//////////////////////////////////////////*/

@font-face {
	font-family: 'RVLandSans';
	src: url('/static/fonts/RVLandSans.eot');
	src: url('/static/fonts/RVLandSans.eot?#iefix') format('embedded-opentype'),
	url('/static/fonts/RVLandSans.woff2') format('woff2'),
	url('/static/fonts/RVLandSans.woff') format('woff'),
	url('/static/fonts/RVLandSans.ttf') format('truetype');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}/*//////////////////////////////////////////*/
/* Template tool badge */
/*//////////////////////////////////////////*/

/* Core */

html{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;

	-ms-text-size-adjust:100%;
	-webkit-text-size-adjust:100%;
	-webkit-overflow-scrolling:touch;
}
body{
	font-family:'Roboto', Arial, Tahoma, Helvetica, sans-serif;
	font-weight:400;
	overflow:hidden;
	position:relative;
}
*,
:before,
:after{
	-webkit-box-sizing:inherit;
	-moz-box-sizing:inherit;
	box-sizing:inherit;
}
*::selection{
    background: transparent !important;

	-webkit-box-sizing:inherit;
	-moz-box-sizing:inherit;
	box-sizing:inherit;
}

/* Animation */

@-webkit-keyframes glare {
	0% { left: -20%; }
	15% { left: 120%; }
	100% { left: 120%; }
}
@-moz-keyframes glare {
	0% { left: -20%; }
	15% { left: 120%; }
	100% { left: 120%; }
}
@keyframes glare {
	0% { left: -20%; }
	15% { left: 120%; }
	100% { left: 120%; }
}

/* Badge 150x50 */

#rvland_rating_badge{
    display: flex;
    flex-direction: row;
    justify-content: center;
	width:150px;
    height:50px;
    padding:5px 5px 23px;
    position:relative;
    color:#ffffff;
    background: #039ae4;
    background: linear-gradient(-45deg, #35cd92 0%, #039ae4 100%);
    text-decoration: none;
}
#rvland_rating_badge:before{
    content:'';
    position:absolute;
    top:-10%;
    left:-20%;
    width:10px;
    height: 120%;
    background: #ffffff;
    z-index: 5;

    -webkit-filter:blur(10px);
    -moz-filter:blur(10px);
    filter:blur(10px);

    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    transform: rotate(25deg);

    -webkit-animation: glare 5s ease-out infinite;
    -moz-animation: glare 5s ease-out infinite;
    animation: glare 5s ease-out infinite;
}
#rvland_rating_badge .logo{
    width: 28px;
    height: 22px;
    margin-right:10px;
    opacity:0.8;
    position:relative;
    z-index: 10;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('/static/graphics/logos/rvland_120x94_white.svg');
}
#rvland_rating_badge .rating{
    height: 20px;
    position:relative;
    z-index: 10;
}
#rvland_rating_badge .rating strong{
    font-family: 'RVLandSans';
    font-size:20px;
    line-height: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}
#rvland_rating_badge .rating span{
    font-size:12px;
    font-weight: 400;
    opacity:0.8;
}
#rvland_rating_badge .footer{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    line-height:10px;
    padding:4px 0;
    font-size:8px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 10;
}

/* Badge 220x90 */

#rvland_rating_badge.size_220x90{
    width:220px;
    height:90px;
    padding:12px 12px 30px;
}
#rvland_rating_badge.size_220x90 .logo{
	width: 46px;
    height: 36px;
    margin-right:12px;
}
#rvland_rating_badge.size_220x90 .rating{
    height: 40px;
}
#rvland_rating_badge.size_220x90 .rating strong{
    font-size:30px;
    line-height: 40px;
}
#rvland_rating_badge.size_220x90 .rating span{
    font-size:16px;
}
#rvland_rating_badge.size_220x90 .footer{
    line-height:30px;
    padding:0;
    font-size:12px;
}

/* Badge colors */

#rvland_rating_badge.blue{
    background: #039ae4;
}
#rvland_rating_badge.green{
    background: #35cd92;
}
