.borders{
	border: 2px solid transparent;
	border-image: linear-gradient(to top, #000000a3 0%, #ff0000a3 10%, #ff0000a3 90%, #000000 100%);
	border-image-slice: 1;
	border-top:0;
	border-bottom:0;
}

.text_normal{
	font-family: 'GRB';
	font-weight: 400;
	font-size: 12px;
	color:white;
}

.text_thin{
	font-family: 'GRB';
	font-weight: 200;
	font-size: 12px;
	color:white;
}			

/* width */
::-webkit-scrollbar {
	width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #555;
}


body {
	margin: 0px;
	height: 100%;
}


#rippletext{
	padding-bottom: 350px!important;
}

@media(min-width:1200px){
	#rippletext{
		padding-bottom: 280px!important;
	}
}



@keyframes example2 {
    0%   {transform:scale(1);}
	
    100% {transform:scale(10);}
}


.hiO{
    animation: example2 1s;
}







.border_red_LR{
	border: 2px solid red;
	border-image: linear-gradient(to left, #00000000 0%, #FF283Ba3 10%, #FF283Ba3 90%, #00000000 100%);
	border-image-slice: 1;
	border-left: 0;
	border-right: 0;
	color: #FF283B;
}




.border_blue_LR{
	border: 2px solid blue;
	border-image: linear-gradient(to left, #00000000 0%, #1F68DA 10%, #1F68DA 90%, #00000000 100%);
	border-image-slice: 1;
	border-left: 0;
	border-right: 0;
	color: #1F68DA;
	font-weight: 700 !important;	
	font-size: 20px;
}



.profilephoto{
	height:100px;
	width:100px;
	filter: grayscale(100%);
	    border-radius: 10px;
}

.yellow{
	    background-color: #ffa400;
    width: 100px;
    height: 100px;
    margin: auto;
    top: 0px;
    position: absolute;
    float: left;
    mix-blend-mode: color;
	left: 0px;
}




.noscroll{
	-ms-overflow-style: none;  /* Internet Explorer 10+ */
	scrollbar-width: none;  /* Firefox */
}

.noscroll::-webkit-scrollbar { 
	display: none;  /* Safari and Chrome */
}


.tippy-box[data-theme~='tomato'] {
	color: white;
	font-family: 'GRB';
	font-weight: 400;
	font-size: 12px;
	
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently
	supported by Chrome, Edge, Opera and Firefox */
}


#skip{
	background-color: transparent;
	color: white;
	border: 2px solid white;
	border-radius: 50px;
	width: 80px;
	height: 80px;
	font-family: 'GRB';
	font-weight: 400;
	font-size: 16px;
}

#skip:hover{
	background-color: white;
	color: black;
}	








.obj_behind{
	z-index: 200;
    color: transparent;
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: auto;
    position: relative;
}



.obj {    
    z-index: 300;
    position: absolute;
    color: transparent;
    width: 43%;
    height: 43%;
    object-fit: contain;
    top: 0;
    bottom: 0px;
    left: 0;
    right: 0;
    margin: auto;
}


.obj_reflect{
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);

	-webkit-transform: scaleY(-1);
	transform: scaleY(-1);

	-webkit-mask-image: -webkit-linear-gradient(top, #ffffff00 0%, #ffffff00 70%, #ffffff59 100%);
	mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%,  rgba(0,0,0,0) 70%, rgba(0,0,0,0.4) 100%  );
	position:absolute;
	z-index: 150;
	color: transparent;
    width: 100%;
    height: 42%;
    object-fit: contain;
    top: calc( 100% - 80px);
	
	pointer-events: none;
}













#scroll_icon {
	width: 60px;
	height: 60px;
	z-index: 9999; 
	position: fixed; 
	left: calc( 50% - 30px);
	bottom: 0px; 
	margin: 0 auto;
	border: 2px solid #fff;
	border-radius: 50%;
	animation: down 1.5s infinite;
	-webkit-animation: down 1.5s infinite;

}
	
@media(min-width:1200px){
	#scroll_icon {
		bottom: 40px !important; 
	}
}

#scroll_icon:hover{
	cursor:pointer;
	background-color: #393939;
}

	
#scroll_icon::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 18px;
    width: 18px;
    height: 18px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}


#scroll_icon_up {
	width: 60px;
	height: 60px;
	z-index: 9999; 
	position: fixed; 
	left: calc( 50% - 30px);
	bottom: 0px; 
	margin: 0 auto;
	border: 2px solid #fff;
	border-radius: 50%;
	animation: down 1.5s infinite;
	-webkit-animation: down 1.5s infinite;

}

@media(min-width:1200px){
	#scroll_icon_up {
		bottom: 40px !important; 
	}
}
	
	
#scroll_icon_up:hover{
	cursor:pointer;
	background-color: #393939;
}

	
#scroll_icon_up::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 18px;
    width: 18px;
    height: 18px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-225deg);
}









@keyframes down {
	0% {
		transform: translate(0);
	}
	20% {
		transform: translateY(15px);
	}
	40% {
		transform: translate(0);
	}
}

@-webkit-keyframes down {
	0% {
		transform: translate(0);
	}
	20% {
		transform: translateY(15px);
	}
	40% {
		transform: translate(0);
	}
}




.GiveIt{
    text-align: center !important;
    width: 100% !important;
}

#givetheroyaltreatment{
    position: absolute !important;
    bottom: 15% !important;
}




@media(min-width:1200px){
	
	.GiveIt {
		text-align: start !important;
		left: calc(50% - 580px) !important;
		position: relative !important;
		width: 50% !important;
	}
	
	#givetheroyaltreatment{
		position: absolute !important;
		    bottom: initial !important;
	}
}











.fa {
    font-size: 30px;
    width: 40px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    height: 40px;
    display: inline-block;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}











@media(min-width:1200px){
	.ExtraMargin{
		margin-bottom: 100px !important;
	}
	
	.ExtraMargin30{
		margin-bottom: 30px !important;
	}
}

.ExtraMargin{
	margin-bottom:10px;
}

.ExtraMargin30{
	margin-bottom:10px;
}




.SelectButton{
	background-color: black;
    border-color: #FF283B;
    color: #FF283B;
}

.SelectButton:active{
	background-color: #FF283B !important;
    border-color: #FF283B !important;
    color: black !important;
}

.SelectButton:hover{
	background-color: #FF283B !important;
    border-color: #FF283B !important;
    color: black !important;
}

.SelectButton:focus{
	background-color: #FF283B !important;
    border-color: #FF283B !important;
    color: black !important;
}




.ActionButton{
	width: 250px; 
	padding-top: 10px;
	padding-bottom: 10px; 
	color: #e84340;  
	text-decoration: none; 
	border: 1px solid #e84340; 
	border-radius: 10px; 
	display: flex; 
	align-content: center; 
	justify-content: center; 
	align-items: center;
}

.ActionButton:hover{
	background-color:#e84340;
	color:black;
}