/*------ CSS Use Case Example START ------*/

/* import font ROBOTO */
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700');

body {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    margin: 0 15px;
}

.background-0 { background: #f5f7fa; }
.background-1 { background: #f5f7fa; }
.background-2 { background: #f5f7fa; }
.background-3 { background: #f5f7fa; }
.background-4 { background: #f5f7fa; }
.background-5 { background: #f5f7fa; }

.background-6 { background: #f5f7fa; }
.background-7 { background: #f5f7fa; }

.background-0,
.background-1,
.background-2,
.background-3,
.background-4,
.background-5,
.background-6,
.background-7 {
	transition: all 400ms ease;
}


.stageBase { max-width: 600px; margin: 0 auto; opacity: 1;}
.stageBase .stackedcards { margin: 30px auto;}

/* class created only for a better preview*/
.stage {
    position: absolute;
    opacity: 1;
    max-width: 600px;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.stage.hidden {
	opacity: 0;
	transition: all 400ms ease;
}

@media screen and (max-width: 600px) {
    .stage {
        max-width: 100%;
	}
}

h1, h2, h3 {
	margin: 0;
}

h1 {
	font-size: 32px;
	font-weight: 400;
}

h2 {
	font-size: 24px;
	font-weight: 100;
	color: #000;
	text-align: center;
}

h3 {
	font-size: 18px;
	font-weight: 300;
	color: #BFBFBE;
	margin-top: 10px;
}

.title {
	width: 100%;
	padding-bottom: 30px;
	text-align: center;
	font-weight: 400;
	font-size: 22px;
	color: #000;
}

.card-content {
	position: relative;
	color: #000;
	
}

.card-image {
	width: 100%;
	height: 100%;
}
.card-image img {
	border-radius: 10px;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 100%;
	min-height: 330px;
}

.card-titles {
	position: absolute;
	bottom: 0;
	padding: 40px 30px;
}

.card-footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 25px 35px;
}

.popular-destinations-text {
	font-size: 16px;
	font-weight: 400;
	color: #8E9AA4;
	width: 100%;
	min-width: 110px;
}

.popular-destinations-images {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	width: 100%;
}

.circle {
	width: 40px;
	height: 40px;
	border-radius:  50%;
	background: #fff;
	margin-left: 8px;
}

.circle img {
	border-radius: 50%
}

/* global actions buttons*/
.global-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
    padding-top: 15px;
    min-width: 200px;
}

.top-action,
.right-action,
.left-action {
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #fff;
	-webkit-box-shadow: 0 3px 4px 0px rgba(0,0,0,0.5);
	box-shadow: 0 3px 4px 0px rgba(0,0,0,0.5);
}
.right-action,
.left-action {
	width: 65px;
	height: 65px;
	pointer-events: auto;
    cursor: pointer;
	transition-timing-function: ease;
	transition-duration: .25s;
}

.top-action {
    width: 60px;
    height: 60px;
    margin: 0 20px;
	pointer-events: auto;
    cursor: pointer;
	transition-timing-function: ease;
	transition-duration: .25s;
}
.right-action:hover,
.left-action:hover , .top-action:hover {
	-webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.final-state.active {
	position: absolute;
	opacity: 1;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	transition: all 400ms ease;
}

.final-state.hidden {
	opacity: 0;
}


/*------ CSS Use Case Example END ------*/

/*----- Stacked Cards component css START -----*/
body {
    overflow-x: hidden;
}

.no-transition {
	-webkit-transition: none ! important;
	transition: none ! important;
}

.stackedcards-overflow {
	overflow-y: hidden !important;
}

.stackedcards.init {
	opacity: 0;/* set the opacity to 0 if you want a fade-in effect to stacked cards on page load */
}

.stackedcards {
	position: relative;
}

.stackedcards * {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.stackedcards--animatable {
	-webkit-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}

.stackedcards .stackedcards-container > *,
.stackedcards-overlay {
	position: absolute;
	width: 100%; /* set 100% */
	height: 100%; /* set 100% */
	will-change: transform, opacity;
	top: 0;
	border-radius: 10px;
	min-width: 265px;
}

.stackedcards-overlay.left > div,
.stackedcards-overlay.right > div,
.stackedcards-overlay.top > div {
	width: 100%;
	height: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.stackedcards-overlay.left,
.stackedcards-overlay.right,
.stackedcards-overlay.top {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	left: 0;
	opacity: 0;
	top: 0;
	height: 100%;
}


.stackedcards-overlay.left:empty,
.stackedcards-overlay.right:empty,
.stackedcards-overlay.top:empty {
	display: none !important;
}

.stackedcards-overlay-hidden {
	display: none;
}

.stackedcards-origin-bottom {
	-webkit-transform-origin: bottom;
	-ms-transform-origin: bottom;
	transform-origin: bottom;
}

.stackedcards-origin-top {
	-webkit-transform-origin: top;
	-ms-transform-origin: top;
	transform-origin: top;
}

.stackedcards-bottom,
.stackedcards-top,
.stackedcards-none {
	background: #fff; /* set card background background */
	box-shadow: 1px 1px 14px 2px rgba(0,0,0,0.30);
    height: 100%;
}

.stackedcards .stackedcards-container > :nth-child(1) {
	position: relative;
	display: block;
}

/*----- Stacked Cards component css END -----*/




.stackedcards-overlay.left img {
    margin-top: 0%;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: 50%;
}


.stackedcards-overlay.top img {
    margin-top: 150%;
}

.stackedcards-overlay.right img {
    margin-top: 0%;
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-right: 50%;
}
.stackedcards {
    position: relative;
    min-height: 500px;
    width: 375px;
}
.stackedcards  { 
    min-height: 500px;
}

.card-image img {
    min-height: 500px;
    background-position: center;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
	transition-timing-function: ease;
	
}
.card.stackedcards-active {
    min-height: 500px;
	z-index: 5 !important;
}
.stackedcards .card-content {
    min-height: 500px;
}
.stackedcards .card-content .card-image {
	
    min-height: 500px;
}


.stackedcards-overlay.top {
    width: 100%;
    height: 200px;
}




.g_slide {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
}

.g_slide .item {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
}

.switch_main { position: relative; }

.g_slide .switch_nav {
	width: 100%;
	position: absolute;
	right: 0;
	top: 0px;
	z-index: 11;
	text-align: center;
}

.g_slide .switch_nav_item {
	display: inline-block;
    margin: 0 10px 0 0;
    width: 30px;
    height: 4px;
    line-height: 200px;
    overflow: hidden;
    font-size: 0;
    border-radius:20%;
    background: #b7b7b7;
    text-align: center;
    font-size: 18px;
    color: #000;
}

.g_slide .switch_nav_item:hover { text-decoration: none; }

.g_slide .switch_nav_item_current { background: #ffffff; }

.g_slide .prev,
.g_slide .next {
	position: absolute;
	top: 50%;
	z-index: 10;
	margin-top: -15px;
	width: 18px;
	height: 30px;
	overflow: hidden;
	background: url(/assets/landings/theme1/images/slide.png) no-repeat;
	transition: margin-left .3s ease, margin-right .3s ease;
}

.g_slide .prev {
	left: -18px;
	_left: 10px;
}

.g_slide .next {
	right: -18px;
	_right: 10px;
	background-position: -19px 0;
}

.g_slide .prev:hover { background-position: 0 -70px; }

.g_slide .next:hover { background-position: -19px -70px; }

.g_slide:hover .prev { margin-left: 28px; }

.g_slide:hover .next { margin-right: 28px; }

.scroll {
	position: relative;
	width: 752px;
	height: 117px;
	border: solid 1px #dfdfdf;
	overflow: hidden;
}

.switch_main { position: relative; }

.scroll .item {
	float: left;
	width: 250px;
	height: 100%;
	border-right: solid 1px #dfdfdf;
}

.scroll .switch_item {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
}

.scroll .prev,
.scroll .next {
	position: absolute;
	top: 50%;
	margin-top: -20px;
	width: 19px;
	height: 39px;
	overflow: hidden;
	background: url(/assets/landings/theme1/images/slide.png) no-repeat;
}

.scroll .prev {
	left: 0;
	background-position: 0 -31px;
}

.scroll .next {
	right: 0;
	background-position: -20px -31px;
}

.scroll .prev:hover { background-position: 0 -101px; }

.scroll .next:hover { background-position: -20px -101px; }










.global-actions.topact .logo img {
        max-width: 130px;
    margin-bottom: 5px;
}

.leftuser {
    left: 0;
    display: block;
    position: absolute;
    font-size: 30px;
    color: #dadfe6;
    padding: 2px 8px;
    border-radius: 50%;
}
.rightmsg {
    right: 0;
    display: block;
    position: absolute;
    font-size: 30px;
    color: #dadfe6;
    padding: 2px 8px;
    border-radius: 50%;
}


.numeop {
    font-size: 30px;
    color: white;
    font-weight: bold;
}
.numeop span {
    font-size: 26px;
    font-weight: normal;
}
.locatieop {
    font-size: 15px;
    color: white;
}

.textwinner {
    position: absolute;
    top: 0;
    margin: 0 auto;
    display: block;
    width: 100%;
    text-align: center;
    padding-top: 0px;
}
.card1 {
    height: 500px;
}
.contactwinner {
    position: absolute;
    top: 150px;
    left: 0;
    margin: 0 auto;
    display: block;
    width: 100%;
    padding-bottom: 20px;
    z-index: 99;
} 


.txtformx i.fa.fa-heart {
    display: block;
	animation: heartbeat 1s infinite;
}


@keyframes heartbeat
{
	0%
	{
		transform: scale( .75 );
	}
	20%
	{
		transform: scale( 1 );
	}
	40%
	{
		transform: scale( .75 );
	}
	60%
	{
		transform: scale( 1 );
	}
	80%
	{
		transform: scale( .75 );
	}
	100%
	{
		transform: scale( .75 );
	}
}


.txtformx {
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: #19c0ea;
    padding-bottom: 10px;
}


.containerx {
    margin: 0 10px;
}

.formx {
    background: #fff;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}


.btnx {
    border: 0;
    outline: 0;
    padding: 0;
    -webkit-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    cursor: pointer;
    text-transform: uppercase;
    color: #00008c;
    font-weight: bold;
    background: white;
}

.formfieldx {
    width: 75%;
    background: #fff;
    color: #a3a3a3;
    font: inherit;
    border: 0;
    outline: 0;
    padding: 14px 10px;
    font-size: 14px;
    right: 0;
    border-radius: 20px;
}

.startb {
    position: absolute;
    width: 100%;
    height: 100%;
    will-change: transform, opacity;
    top: 0;
    border-radius: 10px;
    min-width: 265px;
    z-index: 999;
	background-color: white;
	box-shadow: 1px 1px 14px 2px rgba(0,0,0,0.30);
}
.titlufinal {
    padding: 20px;
}



.stackedcards-overlay.left,.stackedcards-overlay.right {
    width: 100%;
    height: 200px;
}


img#winnerpic {
    box-shadow: 1px 1px 14px 2px rgba(0,0,0,0.30);
    border-radius: 10px;
}




/* !!!!!!! navigare !!!!!!!  */

.g_slide .next {
    margin-right: 28px;opacity: 0.3;
}
.g_slide .prev {
    margin-left: 28px;opacity: 0.3;
}

.g_slide .next:hover, .g_slide .prev:hover {
	opacity: 0.7;
}


.global-actions.topact {
    margin-bottom: 5px;
}

.startb {
    min-height: 575px;
}
p.blg a {
    color: #9e9e9e;
} 

@media(min-width:440px) and (min-height:770px) {
 .card-image img {
    min-height: 530px; 
}
.g_slide { 
    height: 530px;
 }
.stackedcards .card-content .card-image {
    min-height: 530px;
}
.stackedcards .card-content {
    min-height: 530px;
}
.card.stackedcards-active {
    min-height: 530px;
}
.stackedcards {
    min-height: 530px;
	} 
.startb {
    min-height: 640px;
}
}

@media(max-width:439px) and (max-height:769px) {
.stackedcards {
    min-height: 450px;
    width: 300px;
}
.card.stackedcards-active {
    min-height: 450px;
}
.stackedcards .card-content {
    min-height: 450px;
}
.stackedcards .card-content .card-image {
    min-height: 450px;
}
.g_slide {
    height: 450px;
}
.card-image img {
    min-height: 450px;
}
.formfieldx {
    width: 65%;
 
}
.card1 {
    height: 450px;
}


.startb {
    min-height: 640px;
}
#smsform .btn { 
    max-width: 275px !important;
    min-width: 275px !important; 
}
button.btn.sms.tsf-wizard-btn { 
    width: 275px;
}



}



.ssss {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 575px;
}
.sms-window h4 { 
    font-size: 18px;
}
.container.sendmsg-container div#smsform span {
    font-size: 18px;
}

.titlufinal {
    padding: 0 10px;
}
.g_slide { 
    border-radius: 10px;
}
 input.formfieldx {
    border: 0px solid white;
}


input.formfieldx {
     -webkit-user-select: initial;
      -khtml-user-select: initial;
      -moz-user-select: initial;
      -ms-user-select: initial;
      user-select: initial;
}
  input, input:before, input:after {
      -webkit-user-select: initial;
      -khtml-user-select: initial;
      -moz-user-select: initial;
      -ms-user-select: initial;
      user-select: initial;
     } 
	 
	 
	 
	 
	 .g_slide .prev {
    background: url(/assets/landings/theme1/images/slidestanga.png) no-repeat;
    width: 93px;
    height: 48px;
}


.g_slide .prev {
    background: url(/assets/landings/theme1/images/slidestanga.png) no-repeat;
    width: 120px;
    height: 75px;
    opacity: 0.5;
}


.g_slide .next {
	background: url(/assets/landings/theme1/images/slidedreapta.png) no-repeat;
    width: 120px;
    height: 75px;
    opacity: 0.5;
}

.g_slide .prev:hover {
    background-position: unset;
}

.g_slide .next:hover {
    background-position: unset;
}

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


.image-cropper {
    width: 100px;
    height: 100px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto;
}

img.profile-pic {
    display: inline-block;
    width: 100px;
    height: 155px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
span#afnumeprofilnew {
    display: none;
}


.container.sendmsg-container {
    font-size: 15px;
    text-align: center;
	font-weight: bold;
}


.stage.finaldiv {
    top: 40%;
}


/* Extra */

/*.formx { display: flex;}
.formx .btnx { background-color: #f5f5f5; padding: 4px 12px; margin: 4px; border-radius: 5px;}
.formxNLink { display: block; color: #327687; text-decoration: none; text-align: center;}
.formxNLBox { padding: 8px 16px;}
.formxNLBtn { display: inline-block; background-color: teal; border: 1px solid #015353; font-size: 15px; color: #ffffff; font-weight: 600; text-transform: uppercase; border-radius: 5px; padding: 12px 24px; margin: 12px auto;}
.formxNLBox1 { font-size: 13px; margin-bottom: 4px;}
.formxNLBox2 { font-size: 12px;}
.formxNLBox2 span.bullx { display: inline-block; background-color: #f5eed0; padding: 3px 6px; font-weight: 600; color: #145768; border-radius: 3px;}
.formxNLBox2 small { display: inline-block; font-size: 12px; margin: 4px auto;}
.formxNLBoxCH { font-size: 11px; color: #92d6e6; text-transform: uppercase; letter-spacing: 0.8pt; background-color: #cfeff788; padding: 8px; border-radius: 10px; margin-top: 4px;}
.termsBox { text-align: center; color: #9e9e9e; font-size: 10px; padding: 4px; margin-top: 30px; _height: 57px; _overflow-y: auto;}
.termsBox a { color: #63b6c9; text-decoration: none;}
.formxTiLo { background-color: #cfeff788; color: #119cbf; text-shadow: 0 0 1px #145768; border-radius: 4px; padding: 8px;}

.d-none { display: none;}
.mb1 { margin-bottom: 8px;}
.mb2 { margin-bottom: 16px;}
.mb3 { margin-bottom: 24px;}

@media (min-width: 768px) {

    .d-md-none { display: none;}
}*/


.sesHead { background-color: #00000069; color: #b8e7f1; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0 0 8px 2px #0000002d;}
.cnnsPS .btnTheme { background-color: #4dc5a1; border-color: transparent; border-radius: 12px; box-shadow: 0 3px 4px 0px #3ea8c02a;}
.cnnsPS .btnTheme:hover,
.cnnsPS .btnTheme:active,
.cnnsPS .btnTheme:focus { background-color: #56caa7; border-color: #44b996;}
.cnnsPS a,
.cnnsPS .colorLink { color: #60d3b0;}


.cnnsPS { overflow-y: auto; box-shadow: 0 0 8px 2px #0000002d;}

.chatOnlines { position: fixed; width: 500px; max-width: 90vw; top: 10px; left: 50%; transform: translateX(-50%); z-index: 1100;}
.chatOnlines .conBox { margin-bottom: 10px;}
.chatOnlines .conBox .box { background-color: #323942;}
.chatOnlines .conBox .box .onlineIcon { position: absolute; bottom: 0; right: 0; font-size: 12px; color: #c0f83d; text-shadow: 0 0 1px #000000;}

.boxSMNI { background-color: #f0f0b6; font-weight: 600; color: #054d5c;}

.blur4 { filter: blur(4px);}
.blur8 { filter: blur(8px);}
  
.boxShake { animation: shake 0.3s; animation-iteration-count: infinite;}

/* Common */

.noOutline:hover,
.noOutline:focus,
.noOutline:active { outline: none; box-shadow: none;} 

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

.text-gray1 { color: #cacaca;}

.squareBox { display: block; width: 100%; padding-top: 100%; position: relative;}
.squareBox > div { position: absolute; top: 0; left: 0; right: 0; bottom: 0;}
.squareBox > div img { width: 100%; height: 100%;}

.imgCover { object-fit: cover; object-position: center;}
.imgContain { object-fit: contain; object-position: center;}

.shadowGray,
.shadowGrayHover { box-shadow: 0px 0px 8px 0px rgba(30, 22, 102, 0.10); transition: box-shadow 0.3s;}

.shadowGray2,
.shadowGrayHover:hover { box-shadow: 0px 0px 12px 0px rgba(30, 22, 102, 0.30); transition: box-shadow 0.3s;}

.subShadowHover .sshBlock { box-shadow: 0px 0px 8px 0px rgba(30, 22, 102, 0.10); transition: box-shadow 0.3s;}
.subShadowHover:hover .sshBlock { box-shadow: 0px 0px 12px 0px rgba(30, 22, 102, 0.30); transition: box-shadow 0.3s;}

.flexCenter { display: flex; align-items: center; justify-content: center;}
.flexMW { min-width: 0;}
.flexBasis0 { flex-basis: 0;}
.breakWord { word-wrap: break-word;}
.imgCover { object-fit: cover; object-position: center;}

.txtOverflow { width: 100%; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
.txtNoWrap { white-space: nowrap;}
.txtStrike { text-decoration: line-through;}
.txtItalic { font-style: italic;}
.txtUpper { text-transform: uppercase;}
.txtUnderline { text-decoration: underline;}
.txt900 { font-weight: 900;}
.txt800 { font-weight: 800;}
.txt700 { font-weight: 700;}
.txt600 { font-weight: 600;}
.txt500 { font-weight: 500;}
.txt400 { font-weight: 400;}
.txt300 { font-weight: 300;}
.txt200 { font-weight: 200;}
.txt100 { font-weight: 100;}

.opac00 { opacity: 0.00;}
.opac15 { opacity: 0.15;}
.opac25 { opacity: 0.25;}
.opac50 { opacity: 0.50;}
.opac75 { opacity: 0.75;}
.opac80 { opacity: 0.80;}
.opac90 { opacity: 0.90;}

.fs8 { font-size: 8px;}
.fs10 { font-size: 10px;}
.fs11 { font-size: 11px;}
.fs12 { font-size: 12px;}
.fs13 { font-size: 13px;}
.fs14 { font-size: 14px;}
.fs15 { font-size: 15px;}
.fs16 { font-size: 16px;}
.fs17 { font-size: 17px;}
.fs18 { font-size: 18px;}
.fs20 { font-size: 20px;}
.fs22 { font-size: 22px;}
.fs24 { font-size: 24px;}
.fs26 { font-size: 26px;}
.fs28 { font-size: 28px;}
.fs30 { font-size: 30px;}
.fs40 { font-size: 40px;}
.fs50 { font-size: 50px;}
.fs60 { font-size: 60px;}
.fs70 { font-size: 70px;}
.fs80 { font-size: 80px;}

.txt300 { font-weight: 300;}
.txt600 { font-weight: 600;}

.w60 { width: 60px;}
.w200 { width: 200px;}

.dNone { display: none;}



/* Small devices (landscape phones, 576px and up) */

@media (min-width: 576px) {

    .contactwinner .containerx { max-width: 375px; margin: 0 auto;}
}


/* Medium devices (tablets, 768px and up) */

@media (min-width: 768px) {

    .chatOnlines { margin-left: -9px;}

    .fs8-md { font-size: 8px;}
    .fs10-md { font-size: 10px;}
    .fs11-md { font-size: 11px;}
    .fs12-md { font-size: 12px;}
    .fs13-md { font-size: 13px;}
    .fs14-md { font-size: 14px;}
    .fs15-md { font-size: 15px;}
    .fs16-md { font-size: 16px;}
    .fs17-md { font-size: 17px;}
    .fs18-md { font-size: 18px;}
    .fs20-md { font-size: 20px;}
    .fs22-md { font-size: 22px;}
    .fs24-md { font-size: 24px;}
    .fs26-md { font-size: 26px;}
    .fs28-md { font-size: 28px;}
    .fs30-md { font-size: 30px;}
    .fs40-md { font-size: 40px;}
    .fs50-md { font-size: 50px;}
    .fs60-md { font-size: 60px;}
    .fs70-md { font-size: 70px;}
    .fs80-md { font-size: 80px;}
}


/* Animations */

@keyframes wave {
    0%, 60%, 100% { transform: initial;}
    30% { transform: translateY(-6px);}
}

@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}