/* =========================================================================
   Variables
 =========================================================================== */
/* =========================================================================
   Fonts
 =========================================================================== */
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
/* =========================================================================
   General styles
 =========================================================================== */
* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-width: 300px;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  color: #333;
  font-size: 16px;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
  line-height: 1.375;
  background-color: #010101;
  -webkit-text-size-adjust: 100%;
  position: relative;
}

h1 {
  margin: 0;
  font-size: 25px;
  font-weight: 700;
}

.action {
  display: inline-block;
  box-sizing: border-box;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: inherit;
  font: inherit;
  text-align: inherit;
  text-transform: none;
  text-decoration: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  -webkit-appearance: none;
  user-select: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.button-link {
  font-size: 14px;
  text-decoration: none;
  color: #8153FB;
}

.button-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 58px;
  line-height: 58px;
  padding: 0 12px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 10px;
  color: #fff;
  background-color: #8153FB;
}
.button-primary.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.field-wrp {
  display: block;
  margin-bottom: 20px;
}

.field-label {
  display: none;
  font-size: 17px;
  line-height: 18px;
  margin-bottom: 6px;
}

.field {
  display: block;
  box-sizing: border-box;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  outline: none;
  box-shadow: none;
  appearance: none;
  border-radius: 10px;
  border: 1px solid #464646;
  background: #212121;
}

/*.field-error,
.field-error2 {
	display: block;
	margin-top: 4px;
	font-size: 11px;
	font-weight: 500;
	color: $color-red;
}*/
.field-success {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
}
.field-success span {
  cursor: pointer;
  text-decoration: underline;
}

.select {
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 13 8'%3E%3Cpath fill='%23404040' d='M2.03.97A.75.75 0 0 0 .97 2.03L2.03.97ZM6.5 6.5l-.53.53.53.53.53-.53-.53-.53Zm5.53-4.47A.75.75 0 0 0 10.97.97l1.06 1.06Zm-11.06 0 5 5 1.06-1.06-5-5L.97 2.03Zm6.06 5 5-5L10.97.97l-5 5 1.06 1.06Z'/%3E%3C/svg%3E") calc(100% - 16px) center no-repeat;
  background-size: 14px auto;
}

.input {
  width: 100%;
  height: 58px;
  padding: 11px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  caret-color: #8153FB;
  border-radius: 10px;
  border: 1px solid #464646;
  background: #212121;
}

.input:focus {
  border-color: #8153FB;
}

/*.input:invalid, .input-error {
	border-color: $color-red;
}*/
.checkbox-wrp {
  font-size: 12px;
  line-height: 2;
}
.checkbox-wrp .checkbox {
  vertical-align: -32%;
}

.checkbox {
  width: 24px;
  height: 24px;
  border: solid 2px #8153FB;
  border-radius: 4px;
}

.checkbox:checked {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 9 8'%3E%3Cpath fill='%23fff' d='M6.97.97a.75.75 0 0 1 1.07 1.05L4.05 7.01a.75.75 0 0 1-1.08.02L.32 4.38a.75.75 0 1 1 1.06-1.06l2.1 2.1L6.95.99l.02-.02Z'/%3E%3C/svg%3E") center no-repeat, #8153FB;
  background-size: 9px auto;
}

/* =========================================================================
   Backgrounds
 =========================================================================== */
.backgrounds {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.heart {
  position: absolute;
  top: 10vh;
  left: 0;
  right: 0;
}

/* =========================================================================
   Regions
 =========================================================================== */
.region {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  background: #010101;
}
.region.active {
  display: flex;
}

/* =========================================================================
   Registration
 =========================================================================== */
.step {
  display: none;
  flex-grow: 1;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 20px 20px;
}
.step.active {
  display: flex;
}
@media (max-width: 479px) and (min-height: 625px) and (max-height: 629px) {
  body.keyboard-open .active-step-5 .step {
    padding: 0 20px 190px;
  }
}

.step-controls {
  text-align: center;
  margin-top: 20px;
}
.step-controls .button-primary {
  margin-bottom: 10px;
}
.step-controls .terms {
  max-width: 167px;
  margin: 20px auto 0;
  color: #FFF;
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 139%;
  opacity: 0.6;
}

/*.step-bullets {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;

	span {
		display: block;
		width: 6px;
		height: 6px;
		background: rgba(218, 218, 218, 0.42);
		border-radius: 50%;
		margin: 0 3px;
	}
}

.active-step-1 {
	.step-bullets span:nth-child(1) {background: $color-violet;}
	.step-controls .button-primary {display: none;}
}

.active-step-2 {
	.step-bullets span:nth-child(2) {background: $color-violet;}
	.step-controls .terms {display: none;}
}

.active-step-3 {
	.step-bullets span:nth-child(3) {background: $color-violet;}
	.step-controls .terms {display: none;}
}

.active-step-4 {
	.step-bullets span:nth-child(4) {background: $color-violet;}
	.step-controls .terms {display: none;}
}*/
.step-top {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.step-top .prev {
  cursor: pointer;
}
.step-top .to-login {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
  cursor: pointer;
}

.step-title {
  color: #fff;
  text-align: center;
  margin-bottom: 4vh;
  font-size: 26px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.step-logo {
  text-align: center;
  margin-bottom: 5vh;
}
.step-logo img {
  display: block;
  margin: 0 auto;
  max-width: 130px;
}

.step-terms {
  color: #FFF;
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 139%;
  opacity: 0.6;
  width: 158px;
  margin: 10px auto 0;
}
.step-terms a {
  color: inherit;
}

.gender-selection {
  text-align: center;
  display: flex;
  justify-content: space-around;
}

.gender-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #212121;
  cursor: pointer;
  color: #8153FB;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
.gender-box:hover, .gender-box:active, .gender-box.active {
  color: #fff;
  background: #8153FB;
}
.gender-box.pink {
  color: #DD5CDB;
}
.gender-box.pink:hover, .gender-box.pink:active, .gender-box.pink.active {
  color: #fff;
  background: #DD5CDB;
}
.gender-box img {
  display: block;
  width: 82px;
  margin: 0 auto;
}

.field-wrp .field-error,
.field-wrp .field-error2 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 10px;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.9);
}
.field-wrp .field-error > .inner,
.field-wrp .field-error2 > .inner {
  padding: 34px 25px 20px;
  border-radius: 10px;
  background: #212121;
  text-align: center;
  width: 100%;
  max-width: 560px;
  position: relative;
}
.field-wrp .field-error .field-error-close,
.field-wrp .field-error2 .field-error-close {
  width: 18px;
  position: absolute;
  top: 14px;
  right: 18px;
}
.field-wrp .field-error .field-error-close img,
.field-wrp .field-error2 .field-error-close img {
  display: block;
  max-width: 100%;
}
.field-wrp .field-error .field-error-icon,
.field-wrp .field-error2 .field-error-icon {
  width: 69px;
  margin: 0 auto 10px;
}
.field-wrp .field-error .field-error-icon img,
.field-wrp .field-error2 .field-error-icon img {
  display: block;
  max-width: 100%;
}
.field-wrp .field-error .field-error-text,
.field-wrp .field-error2 .field-error-text {
  color: #fff;
  text-align: center;
  font-feature-settings: "clig" off, "liga" off;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  opacity: 0.6;
  margin-bottom: 10px;
}
.field-wrp .field-error .field-error-desc,
.field-wrp .field-error2 .field-error-desc {
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 10px;
}
.field-wrp.has-error .field {
  border-color: #fd5068;
}
.field-wrp.has-error .field-error {
  display: flex;
}
.field-wrp.has-error2 .field {
  border-color: #fd5068;
}
.field-wrp.has-error2 .field-error2 {
  display: flex;
}

.to-signup {
  color: #8153FB;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin-top: 10px;
}
.to-signup span {
  display: block;
  color: #fff;
}

.top-link {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  cursor: pointer;
}

/* =========================================================================
   Login
 =========================================================================== */
.region-login .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.region-login .bottom .button-link {
  font-size: 12px;
}

/* =========================================================================
   Terms, Privacy
 =========================================================================== */
.back {
  display: block;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #202020;
  text-transform: lowercase;
}
.back span {
  display: inline-block;
  vertical-align: middle;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  background-color: #F2F2F2;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s;
}
.back span:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 5px 0;
  border-color: transparent #333 transparent transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: border-color 0.3s;
}
.back span:hover, .back span:active {
  background-color: #8153FB;
}
.back span:hover:before, .back span:active:before {
  border-color: transparent #fff transparent transparent;
}

.region-terms .step,
.region-privacy .step,
.region-cookies .step {
  background: #fff;
  padding: 20px;
  border-radius: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  justify-content: start;
}

@media (max-width: 767px) {
  .rules h1 {
    display: block;
  }
}
/* =========================================================================
   Language selector
 =========================================================================== */
#langSelector {
  display: none;
  border: 1px solid #ccc;
  padding: 0 30px 0 20px;
  box-shadow: none;
  height: 40px;
  line-height: 40px;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0;
  text-transform: uppercase;
  border-radius: 8px;
  mix-blend-mode: normal;
  background: #000;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../images/arrow-down.png");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: right 12px center;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
}
@media (max-width: 767px) {
  #langSelector {
    height: 32px;
    line-height: 30px;
    font-size: 12px;
    text-transform: none;
  }
}

html[lang=fr] #forgotSubmit,
html[lang=de] #forgotSubmit,
html[lang=it] #forgotSubmit,
html[lang=es] #forgotSubmit,
html[lang=nl] #forgotSubmit,
html[lang=ru] #forgotSubmit {
  font-size: 13px;
}

/* =========================================================================
   Hidden language links
 =========================================================================== */
.hidden-langs {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* =========================================================================
   Region start
 =========================================================================== */
.region-start {
  max-width: none;
}
.region-start .step {
  background: url(../images/okaycrush-bg.png) center top no-repeat;
  background-size: cover;
}
.region-start .btn-apple,
.region-start .btn-email {
  background: rgba(0, 0, 0, 0.5);
  position: relative;
}
.region-start .btn-apple svg,
.region-start .btn-email svg {
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -12px;
}
.region-start .btn-apple {
  background: #fff;
  color: #010101;
}

/* =========================================================================
   Initial land
 =========================================================================== */
.land-wrapper, .land-wrapper * {
  font-family: Gilroy, sans-serif;
}

/* =========================================================================
   Header
 =========================================================================== */
.site-logo {
  width: 130px;
}
@media (max-width: 767px) {
  .site-logo {
    width: 90px;
  }
}
.site-logo img {
  display: block;
  max-width: 100%;
}

.btn {
  height: 50px;
  line-height: 50px;
  background: var(--linear, linear-gradient(90deg, #FD2274 0%, #FFA40E 100%));
  border: none;
  border-radius: 25px;
  padding: 0 20px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  font-style: normal;
  font-weight: 500;
  display: inline-block;
  min-width: 120px;
}
.btn:hover, .btn:active {
  color: #fff;
}
.btn.btn-transparent {
  line-height: 48px;
  background: none;
  border: 1px solid #fff;
}
.btn .mob {
  display: none;
}
@media (max-width: 767px) {
  .btn {
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    padding: 0 25px;
    font-size: 13px;
  }
  .btn.btn-transparent {
    line-height: 38px;
  }
  .btn .desk {
    display: none;
  }
  .btn .mob {
    display: inline;
  }
}

.header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 30px 35px;
}
.header.absolute {
  position: absolute;
}
@media (max-width: 767px) {
  .header {
    padding: 20px;
  }
  .header.sticky {
    position: fixed;
    z-index: 99;
    background-color: #fff;
  }
}
.header .header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .header .header-flex {
    align-items: flex-start;
  }
}
.header .header-buttons .btn {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .header .header-buttons .btn {
    padding: 0;
    display: block;
    width: 150px;
    margin-bottom: 10px;
  }
}
.header .header-buttons .text-label {
  display: inline-block;
  font-size: 20px;
  color: #fff;
  font-style: normal;
  font-weight: 500;
  line-height: 50px;
}
@media (max-width: 767px) {
  .header .header-buttons .text-label {
    display: none;
  }
}

/* =========================================================================
   Section Main
 =========================================================================== */
.section-main {
  padding: 130px 0 40px;
  background: url(../images/land-bg.png);
  background-size: cover;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 99px);
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .section-main {
    padding: 140px 0 0;
    background-image: url(../images/land-bg-mob.png);
  }
}
.section-main .container-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .section-main .container-flex {
    display: block;
    text-align: center;
  }
}
.section-main .container-flex .column-left {
  flex: 0 0 auto;
  width: 45%;
  position: relative;
}
@media (max-width: 991px) {
  .section-main .container-flex .column-left {
    width: 59%;
  }
}
@media (max-width: 767px) {
  .section-main .container-flex .column-left {
    width: 100%;
  }
}
.section-main .container-flex .column-right {
  flex: 0 0 auto;
  width: 50%;
}
@media (max-width: 767px) {
  .section-main .container-flex .column-right {
    width: 100%;
  }
}
.section-main .section-title {
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  margin-bottom: 40px;
}
@media (max-width: 1279px) {
  .section-main .section-title {
    font-size: 54px;
    line-height: 1;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .section-main .section-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
}
.section-main .section-subtitle {
  font-size: 36px;
  line-height: 42px;
  color: #fff;
  margin-bottom: 50px;
}
@media (max-width: 1279px) {
  .section-main .section-subtitle {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 45px;
  }
}
@media (max-width: 991px) {
  .section-main .section-subtitle {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .section-main .section-subtitle {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 35px;
  }
}
.section-main .btn {
  min-width: 300px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .section-main .btn {
    display: none;
  }
}
.section-main .download {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .section-main .download {
    text-align: center;
    margin-bottom: 35px;
  }
}
.section-main .download svg {
  width: 195px;
  height: 65px;
}
@media (max-width: 767px) {
  .section-main .download svg {
    width: 156px;
    height: 52px;
  }
}
.section-main .disclaimer {
  font-size: 12px;
  font-weight: 500;
  line-height: 2;
  color: #fff;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .section-main .disclaimer {
    line-height: 1.5;
    margin-bottom: 20px;
  }
}
.section-main .disclaimer a {
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.section-main .image {
  display: flex;
  justify-content: flex-end;
}
.section-main .image.mobile {
  display: none;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section-main .image {
    justify-content: flex-start;
  }
  .section-main .image.desktop {
    display: none;
  }
  .section-main .image.mobile {
    display: flex;
  }
}
@media (max-width: 1459px) {
  .section-main .image img {
    max-width: 800px;
  }
}
@media (max-width: 1279px) {
  .section-main .image img {
    max-width: 670px;
  }
}
@media (max-width: 991px) {
  .section-main .image img {
    max-width: 500px;
  }
}

/* =========================================================================
   Footer
 =========================================================================== */
.footer {
  background: #010101;
  padding: 23px 35px;
}
@media (max-width: 767px) {
  .footer {
    padding: 20px 20px 100px;
  }
}
.footer .footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer .footer-flex {
    display: block;
  }
}
.footer .footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .footer .footer-menu {
    margin-bottom: 15px;
  }
}
.footer .footer-menu li {
  display: inline-block;
  margin-right: 50px;
}
@media (max-width: 767px) {
  .footer .footer-menu li {
    display: block;
    margin: 0 20px 10px;
    text-align: center;
  }
}
.footer .footer-menu a {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  text-decoration: none;
}
.footer .copyright {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
}
@media (max-width: 767px) {
  .footer .copyright {
    text-align: center;
  }
}
.footer .btn {
  display: none;
}
@media (max-width: 767px) {
  .footer .btn {
    display: block;
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 30px;
    z-index: 1;
  }
}

/* =========================================================================
   Pulse
 =========================================================================== */
.btn-pulse {
  box-shadow: 0 0 0 0;
  -webkit-animation: pulse 1.3s infinite;
  animation: pulse 1.3s infinite;
}

@-webkit-keyframes pulse {
  70% {
    box-shadow: 0 0 0 15px rgba(255, 166, 13, 0.1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 166, 13, 0.1);
  }
}
@keyframes pulse {
  70% {
    box-shadow: 0 0 0 15px rgba(255, 166, 13, 0.1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 166, 13, 0.1);
  }
}
/* =========================================================================
   Cookies banner
 =========================================================================== */
.cc-banner {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.cc-banner .cc-banner-inner {
  padding: 10px;
  display: flex;
  background: #fff;
  font-size: 16px;
  border-radius: 0;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  pointer-events: all;
}
.cc-banner .cc-message {
  align-self: center;
  line-height: 1.3em;
  font-weight: 400;
  color: #2F2F2F;
}
.cc-banner .cc-btn-wrap {
  margin: 0 0 0 15px;
  align-self: center;
}
.cc-banner .cc-btn-wrap .btn {
  font-size: 16px;
  background-color: #00AFF0;
  color: #fff;
  height: 40px;
  padding: 7px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.cc-banner .cc-btn-wrap .btn:hover {
  background-color: #00AFF0;
}
.cc-banner .cc-btn-wrap a {
  color: #00AFF0;
}
@media (min-width: 576px) {
  .cc-banner {
    bottom: 10px;
    right: 15px;
    left: 15px;
  }
  .cc-banner .cc-banner-inner {
    border-radius: 5px;
  }
}
.cc-banner.hide {
  display: none !important;
}

.fictional {
  font-size: 14px;
  font-weight: 400;
  margin: 12px 0 0;
  text-align: center;
  color: #fff;
  opacity: 0.7;
  float: none !important;
}

/*# sourceMappingURL=style.css.map */
