/*------------------------------------------------------
					Fonts
--------------------------------------------------------*/
@font-face {
	font-family: "Pridi";
	src: url("../fonts/pridi-light.woff2") format("woff2");
	font-weight: 300;
	font-style: normal;
}

/* ------------------------------------------------------- */

*,
::before,
::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/*------------------------------------------------------
					General style
--------------------------------------------------------*/

.chat-content-typing {
	position: relative;
	top: 0px;
}
.dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #000;
	animation: bounce 1s infinite alternate;
	margin-right: 5px;
}
.dot:nth-child(2) {
	animation-delay: 0.2s;
}
.dot:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes bounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-5px);
	}
}

html {
	background: #000;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Sarabun", sans-serif;
	font-size: 22px;
	line-height: 36px;
	font-weight: 400;
}

body::before {
	content: "";
	display: block;
	background: url("../img/image4.jpg");
	background-position: top left;
	background-repeat: no-repeat;
	background-size: cover;
	position: fixed;
	height: 100vh;
	width: 100vw;
	z-index: -1;
}

.container {
	max-width: 1024px;
	margin: 0 auto;
}

/* p {
	font-size: 24px;
	line-height: 36px;
	font-weight: 300;
} */

ul,
li,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

li {
	color: #313131;
}

.inline li {
	display: inline-block;
	vertical-align: top;
}

/* a,
a:hover,
a:focus,
a:active {
  display: inline-block;
  vertical-align: top;
  color: #313131;
  text-decoration: none;
} */

/* a:hover,
a:focus,
a:active {
	color: #313131;
} */

a {
	font-weight: 700;
	cursor: pointer;
	color: #990a00;
	text-decoration: none;
}

img {
	display: inline-block;
	max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #313131;
	font-style: normal;
	font-weight: normal;
	line-height: 7rem;
	text-rendering: optimizelegibility;
}

h1 {
	font-size: 4rem;
	line-height: 4.5rem;
	margin: 0 0 1rem;
}

h2,
.like-h2 {
	color: #fbf5d2;
	font-size: 42px;
	line-height: 48px;
	margin: 20px 0;
	text-align: center;
	font-weight: 700;
}

h3 {
	color: #fff;
	font-size: 40px;
	font-weight: 500;
	line-height: 50px;
	margin: 20px 0;
	text-align: center;
}

*:focus {
	outline: none !important;
}

form {
	position: relative;
}

button, select {
	font-family: inherit;
}

/* button,
.button {
    background: #ffffff;
    background: linear-gradient(to bottom, #ffffff 0%, #b5b5b5 100%);
    color: #141018;
    display: inline-block;
    text-transform: uppercase;
    font-size: 1.6rem;
    letter-spacing: 0.35rem;
    font-weight: 600;
    padding: 1.5rem 2rem;
    border: 1px solid #fff;
    vertical-align: middle;
    width: auto;
    border-radius: 5px;
    transition: 0.4s ease 0s;
} */

.button:hover,
.button:focus,
.button:active {
	background: linear-gradient(to bottom, #b5b5b5 0%, #ffffff 100%);
}

.btn-group {
	display: block;
	margin: 0;
	text-align: center;
	/* position: relative; */
	/* right: -14px; */
}

.radius {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
}

.inline li {
	display: inline-block;
	position: relative;
	vertical-align: top;
}

.align_left {
	text-align: left;
}

.align_right {
	text-align: right;
}

.center {
	text-align: center;
}

.wght_light {
	font-weight: 100;
}

.wght_bold {
	font-weight: 600;
}

.fl {
	float: left !important;
}

.fr {
	float: right !important;
}

.clr {
	clear: both !important;
	float: none !important;
}

.noleft {
	padding-left: 0;
}

.noright {
	padding-right: 0;
}

.nopadding {
	padding-left: 0;
	padding-right: 0;
}

.full-width {
	width: 100% !important;
	max-width: inherit;
}

section {
	padding: 2rem 0 0;
}

/* --------------------------------------------------------- */

@keyframes fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.fade-in {
	animation: fade-in 1s linear 1;
}

@keyframes spinAroundRight {
	0% {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(359deg);
	}
}

.spin5s {
	animation: spinAroundRight 5s linear infinite;
}

@keyframes fade-in-down {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-down {
	animation: fade-in-down 1s cubic-bezier(0.95, 0.05, 0.8, 0.04) 1;
}

.fade-in-down-ease {
	animation: fade-in-down 1.3s ease 1;
}

/*------------------------------------------------------
					HEADER
--------------------------------------------------------*/
header {
	left: 0;
	padding: 7px 0 0 0;
	top: 0;
	width: 100%;
	z-index: 100;
	border-bottom: 1px solid #7c7981b8;
	background: rgba(0, 0, 0, 0.85);
}

.logo img {
	width: 70px;
	display: block;
	margin: 0 auto;
}

.logo h1 {
	color: #fff;
	display: inline-block;
	font-size: 38px;
	line-height: 46px;
	font-weight: 700;
	margin: 5px 0 5px 0;
}

.logo span {
	font-size: 1.6rem;
}

.right-header a {
	color: #989898;
	font-size: 2rem;
	margin: 1.1rem 1rem 0;
	opacity: 0.5;
	-webkit-transition: 0.5s ease 0s;
	-moz-transition: 0.5s ease 0s;
	-ms-transition: 0.5s ease 0s;
	transition: 0.5s ease 0s;
}

.right-header a:hover {
	opacity: 1;
}

/* ------------------------------------------------------
          CONTENT
-------------------------------------------------------- */
.dark-section {
	background: none;
	padding: 20px 0;
}

@keyframes zoombg {
	50% {
		background-size: 113%;
	}
}

.dark-section.section-step {
	padding: 3rem 0 7rem;
}

.dark-section p {
	color: #fff;
}

.radius.profil.fl {
	height: 107px;
	margin: 2rem 2rem 0rem 0;
	width: 105px;
	object-fit: contain;
	background: #fff;
}

.title {
	border-bottom: 1px solid #fff;
	display: inline-block;
	font-size: 1.8rem;
	margin-bottom: 20px;
	font-weight: 700;
}

.card li {
	width: 4%;
	z-index: 20;
	position: absolute;
	-webkit-transition: 0.5s ease 0s;
	-moz-transition: 0.5s ease 0s;
	-ms-transition: 0.5s ease 0s;
	transition: 0.5s ease 0s;
}

.card li.block {
	z-index: 0;
}

.card li:nth-child(1) {
	left: 0%;
}

.card li:nth-child(2) {
	left: 4%;
}

.card li:nth-child(3) {
	left: 8%;
}

.card li:nth-child(4) {
	left: 12%;
}

.card li:nth-child(5) {
	left: 16%;
}

.card li:nth-child(6) {
	left: 20%;
}

.card li:nth-child(7) {
	left: 24%;
}

.card li:nth-child(8) {
	left: 28%;
}

.card li:nth-child(9) {
	left: 32%;
}

.card li:nth-child(10) {
	left: 36%;
}

.card li:nth-child(11) {
	left: 40%;
}

.card li:nth-child(12) {
	left: 44%;
}

.card li:nth-child(13) {
	left: 48%;
}

.card li:nth-child(14) {
	left: 52%;
}

.card li:nth-child(15) {
	left: 56%;
}

.card li:nth-child(16) {
	left: 60%;
}

.card li:nth-child(17) {
	left: 64%;
}

.card li:nth-child(18) {
	left: 68%;
}

.card li:nth-child(19) {
	left: 72%;
}

.card li:nth-child(20) {
	left: 76%;
}

.card li:nth-child(21) {
	left: 80%;
}

.card li:nth-child(22) {
	left: 84%;
}

.card.shake li:nth-child(5) {
	left: 0%;
	z-index: 1;
}

.card.shake li:nth-child(21) {
	left: 4%;
	z-index: 2;
}

.card.shake li:nth-child(22) {
	left: 8%;
	z-index: 3;
}

.card.shake li:nth-child(8) {
	left: 12%;
	z-index: 4;
}

.card.shake li:nth-child(16) {
	left: 16%;
	z-index: 5;
}

.card.shake li:nth-child(1) {
	left: 20%;
	z-index: 6;
}

.card.shake li:nth-child(2) {
	left: 24%;
	z-index: 7;
}

.card.shake li:nth-child(11) {
	left: 28%;
	z-index: 8;
}

.card.shake li:nth-child(18) {
	left: 32%;
	z-index: 9;
}

.card.shake li:nth-child(20) {
	left: 36%;
	z-index: 10;
}

.card.shake li:nth-child(3) {
	left: 40%;
	z-index: 11;
}

.card.shake li:nth-child(12) {
	left: 44%;
	z-index: 12;
}

.card.shake li:nth-child(9) {
	left: 48%;
	z-index: 13;
}

.card.shake li:nth-child(17) {
	left: 52%;
	z-index: 14;
}

.card.shake li:nth-child(15) {
	left: 56%;
	z-index: 15;
}

.card.shake li:nth-child(4) {
	left: 60%;
	z-index: 16;
}

.card.shake li:nth-child(10) {
	left: 64%;
	z-index: 17;
}

.card.shake li:nth-child(13) {
	left: 68%;
	z-index: 18;
}

.card.shake li:nth-child(19) {
	left: 72%;
	z-index: 19;
}

.card.shake li:nth-child(6) {
	left: 76%;
	z-index: 20;
}

.card.shake li:nth-child(7) {
	left: 80%;
	z-index: 21;
}

.card.shake li:nth-child(14) {
	left: 84%;
	z-index: 22;
}

.card li.cut-li {
	left: 42.5% !important;
	position: absolute;
	z-index: 1;
	-webkit-transition: 0.5s ease 0s;
	-moz-transition: 0.5s ease 0s;
	-ms-transition: 0.5s ease 0s;
	transition: 0.5s ease 0s;
}

.card ul {
	left: 15px;
	margin: 0 auto;
	min-height: 145px;
	position: relative;
	width: 80%;
}

.btn-group .button {
	margin: 0 0.5rem;
	min-width: 15rem;
	text-align: center;
}

.mask {
	background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	display: none;
}

/*------------------------------------------------------
          ANIMATION CARTE
--------------------------------------------------------*/
.card img {
	max-width: inherit;
	top: 0;
	width: 116px;
	position: relative;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0);
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0);
	-ms-box-shadow: 0 0 5px rgba(0, 0, 0, 0);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0);
	-webkit-transition: 0.5s ease 0s;
	-moz-transition: 0.5s ease 0s;
	-ms-transition: 0.5s ease 0s;
	transition: 0.5s ease 0s;
	border-radius: 5px;
}

.card .back-card.hover {
	top: -10px;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
	-ms-box-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
	-webkit-transition: 0.5s ease 0s;
	-moz-transition: 0.5s ease 0s;
	-ms-transition: 0.5s ease 0s;
	transition: 0.5s ease 0s;
}

.card .hidden-card {
	left: 0;
	position: absolute;
	top: 0;
	-webkit-transform: rotateY(90deg);
	-moz-transform: rotateY(90deg);
	-ms-transform: rotateY(90deg);
	transform: rotateY(90deg);
	-webkit-transition: 0.5s ease 0s;
	-moz-transition: 0.5s ease 0s;
	-ms-transition: 0.5s ease 0s;
	transition: 0.5s ease 0s;
}

.card .hidden-card.rotate-in {
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	transform: rotateY(0deg);
	-webkit-transition: 0.5s ease 0s;
	-moz-transition: 0.5s ease 0s;
	-ms-transition: 0.5s ease 0s;
	transition: 0.5s ease 0s;
}

.card .back-card {
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	transform: rotateY(0deg);
	-webkit-transition: 0.5s ease 0s;
	-moz-transition: 0.5s ease 0s;
	-ms-transition: 0.5s ease 0s;
	transition: 0.5s ease 0s;
}

.card .back-card.rotate {
	-webkit-transform: rotateY(90deg);
	-moz-transform: rotateY(90deg);
	-ms-transform: rotateY(90deg);
	transform: rotateY(90deg);
	width: 114px;
	-webkit-transition: 0.5s ease 0s;
	-moz-transition: 0.5s ease 0s;
	-ms-transition: 0.5s ease 0s;
	transition: 0.5s ease 0s;
}

.hide-mask {
	height: 218px;
	left: 0;
	position: absolute;
	top: 0;
	width: 116px;
	z-index: 1000;
}

/*------------------------------------------------------
          INTERPRETATION
--------------------------------------------------------*/
.interpretation-step h3 {
	font-size: 2.7rem;
	line-height: 3rem;
	margin: 0 0 2rem;
	text-align: left;
}

.interpretation-step p + h3 {
	margin-top: 5rem;
}

.interpretation-step p {
	text-align: justify;
}

/**/

#mainHead {
	font-size: 34px;
	padding: 15px;
	line-height: 46px;
	margin: 25px 10px;
}

.row-card {
	margin: 40px 0;
}

h3#prety-f {
	font-size: 32px;
	font-weight: 700;
}

/*------------------------------------------------------
          FOOTER
--------------------------------------------------------*/
footer {
	width: 100%;
	display: block;
	background: rgba(0, 0, 0, 0.85);
	bottom: 0;
	z-index: 1000;
	box-shadow: 0 0px 2px 0 rgb(255 255 255 / 60%);
	margin-top: 0;
	font-size: 28px;
}

/* @media screen and (max-width: 1023px) {

.add-info {

}

#mainHead {
    position: relative;
    bottom: 0;
    font-size: 22px;
}



} */ /* end 1023px */

/* 
@media screen and (max-width: 980px) {

    .card ul {
        left: -15px;
    }

    .dark-section .card-chosen::after {
        left: 16%;
    }

    .right-form {
        text-align: center;
    }

    .bottom-cards,
    .top-cards {
        display: none;
    }

    .mobile-cards {
        display: block;
    }

    .middle-cards h3 {
        text-align: center;
        font-size: 2.2rem;
        line-height: 2.2rem;
    }

    .form-optin select {
        max-width: 100%;
    }
}

@media screen and (max-width: 800px) {

    .card ul {
        left: -40px;
    }

    .dark-section .card-chosen::after {
        left: 6%;
    }

}


@media screen and (max-width: 767px) {

  body {
      background: #000 url("../img/magichesk-mob.jpg") repeat-y scroll 50% 0;
      background-size: 100%;
      animation: zoombg 5s; 
  }

  @keyframes zoombg {
    50% {
      background-size:130%;
    }
  }

    .see-more {
        margin: 2rem 0 10rem;
    }

    .about-section {
        padding: 7.5rem 0 0;
    }

    footer .row div {
        margin: 2rem 0;
        text-align: center !important;
    }

    footer {
        padding: 0;
    }

    .dark-section .col-sm-5 {
        margin: 0 0 5rem;
    }

    .interpretation-step .col-md-2 .col-md-2 {
        width: 100%;
        padding: 0;
    }

    .btn-group .button {
        margin: 0 0.5rem 2rem;
    }

    .dark-section .card-chosen::after {
        left: 0;
    }

    .other-tarot li {
        width: 50% !important;
    }

} */

@media screen and (max-width: 640px) {
	.card img {
		max-height: 160px;
	}

	.card li {
		width: 3.8%;
	}

	.card ul {
		left: -14px;
	}

	.card img,
	.card .back-card.rotate {
		width: auto;
	}

	.dark-section .card-chosen {
		min-height: 490px;
	}
}

/*
@media screen and (max-width: 500px) {

    header .col-xs-6 {
        text-align: center;
        width: 100%;
    }

    .right-header.align_right {
        display: none;
    }

    .card li {
        margin: 0.2rem 0;
        width: 15%;
    }

    .card ul {
        left: 0px;
        min-height: 120px;
    }

    footer nav a,
    footer nav span {
        margin: 0 2rem 0.5rem 0;
    }


    .dark-section .card-chosen {
        min-height: 300px;
    }

    .other-tarot li {
        width: 100% !important;
    }
}



@media screen and (max-width:480px) {

  .dark-section {
      padding: 44px 0 7rem;
  }

} 



@media screen and (max-width: 320px) {

  .card ul {
      left: -11px;
  }

  .btn-group .button {
      margin: 1rem 0;
  }

  .dark-section .card-chosen {
      min-height: 270px;
  }

  h2 {
      font-size: 3rem;
      line-height: 3rem;
  }

} */

/*------------------------------------------------------
          ***
--------------------------------------------------------*/

.profil {
	margin-right: 15px;
	margin-top: 11px;
	border: 1px solid #f3edfb82;
	width: 160px;
	display: block;
	margin: 10px auto;
}

.add-info {
	background: rgba(0, 0, 0, 0.75);
	padding: 15px;
	border-radius: 7px;
	border: 1px solid #f3edfb82;
	margin: 10px;
	line-height: 39px;
	color: #fff;
	text-align: center;
}

.fix-anim {
	animation-play-state: paused;
}

/* .fix-anim::before {
  transform: scale(1.25);
} */

.footer-txt {
	color: #fff;
	margin: 0;
	line-height: 26px;
	font-size: 16px;
	padding: 12px 0 6px 0;
}

.mgt100 {
	margin: 100px 0 5px 0;
}
.mgb100 {
	margin: 5px 0 100px 0;
}
.mg100 {
	margin: 100px 0;
}

.mgt70 {
	margin: 70px 0 5px 0;
}
.mgb70 {
	margin: 5px 0 70px 0;
}
.mg70 {
	margin: 70px 0;
}

.mgt50 {
	margin: 50px 0 5px 0;
}
.mgb50 {
	margin: 5px 0 50px 0;
}
.mg50 {
	margin: 50px 0;
}

.mgt35 {
	margin: 35px 0 5px 0;
}
.mgb35 {
	margin: 5px 0 35px 0;
}
.mg35 {
	margin: 35px 0;
}

.mgt30 {
	margin: 30px 0 5px 0;
}
.mgb30 {
	margin: 5px 0 30px 0;
}
.mg30 {
	margin: 30px 0;
}

.mgt25 {
	margin: 25px 0 5px 0;
}
.mgb25 {
	margin: 5px 0 25px 0;
}
.mg25 {
	margin: 25px 0;
}

.mgt20 {
	margin: 20px 0 5px 0;
}
.mgb20 {
	margin: 5px 0 20px 0;
}
.mg20 {
	margin: 20px 0;
}

.mgt15 {
	margin: 15px 0 5px 0;
}
.mgb15 {
	margin: 5px 0 15px 0;
}
.mg15 {
	margin: 15px 0;
}

.mgt10 {
	margin: 10px 0 5px 0;
}
.mgb10 {
	margin: 5px 0 10px 0;
}
.mg10 {
	margin: 10px 0;
}

.mg5a {
	margin: 5px !important;
}

.mgt5 {
	margin: 5px 0 0 0;
}

.mg5 {
	margin: 5px 0;
}

.mg0 {
	margin: 0 !important;
}

.d-none {
	display: none !important;
}

/*------------------------------------------------------
          ***
--------------------------------------------------------*/

.ovh {
	overflow: hidden;
}

#additionalInfo,
#miniPopUp {
	display: none;
}

.show {
	display: block !important;
}

.hide {
	display: none !important;
}

/**/

.popUp-wrp {
	background: rgba(0, 0, 0, 0.8);
	position: fixed;
	z-index: 99;
	width: 100vw;
	height: 100vh;
	top: 0;
	overflow: hidden;
}

.step-1 {
	max-width: 600px;
	border: 1px solid #fff;
	top: 30px;
	z-index: 9;
	width: 97%;
	background: #000;
	padding: 10px;
	border-radius: 20px;
	box-shadow: 0px 0px 150px #000;
	position: absolute;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	text-align: center;
	color: #fff;
}

#loaderImg {
	position: relative;
	top: 5px;
}

/* .step-1 p {
    font-size: 20px;
    line-height: 30px;
} */

.step-1 h2 {
	color: #fff;
	margin: 10px 0;
}

#additionalInfo {
	background: rgb(0 0 0 / 80%);
	max-width: 1100px;
	margin: 0 auto;
	color: #fff;
}

#additionalInfo p {
	font-size: 20px;
	line-height: 28px;
	color: #fff;
}

#loaderImg {
	padding: 20px;
}

#thxMsg {
	font-size: 22px;
	line-height: 30px;
	margin: 10px 0;
}

/**/

/* *** Styles for Countdown *** */

@keyframes spinAround {
	0% {
		transform: rotate(359deg);
	}

	to {
		transform: rotate(0deg);
	}
}

.offer-counter {
	margin: 10px 0 5px 0;
	flex-basis: 100%;
}

.countdown-title {
	color: #000;
	font-size: 40px;
	margin: 40px 0px 20px;
	font-weight: 400;
}

.countdown-separator {
	display: inline-block;
	color: #000;
	font-weight: bold;
	position: relative;
	bottom: 5px;
	margin: 0 7px;
}

.countdown {
	font-family: sans-serif;
	color: #fff;
	font-weight: 400;
	font-size: 40px;
	height: 85px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 10px 0;
}

.countdown img[alt="check"] {
	width: 85px;
}

.countdown-number {
	border-radius: 3px;
	background: transparent;
	display: inline-block;
	position: relative;
	width: 85px;
	height: 85px;
	text-align: center;
	color: #000;
}

.countdown-number::before {
	content: "";
	display: inline-block;
	background: url("../img/line-countdown-uncprs.png") no-repeat;
	background-size: contain;
	width: 85px;
	height: 85px;
	position: absolute;
}

.countdown-number.min::before {
	animation: spinAround 120s linear infinite;
}

.spin-left,
.countdown-number.sec::before {
	animation: spinAround 5s linear infinite;
}

.countdown-time {
	border-radius: 3px;
	background: transparent;
	display: inline-block;
	color: #000;
	font-weight: 500;
	width: 85px;
	height: 85px;
	line-height: 84px;
}

.countdown-text {
	display: block;
	padding-top: 5px;
	font-size: 16px;
	color: #000;
	font-weight: bold;
}

.hide {
	display: none;
}

.is-visible {
	display: block;
}

#countdown.stop-time .countdown-number::before {
	animation: none;
}

#countdown_2.stop-time .countdown-number::before {
	animation: none;
}

/* **************************************** */

/**/

/**/

.cart-descr {
	color: #000;
	background: #000;
	text-align: center;
	margin: 10px 0;
	padding: 5px;
	border: 1px solid #fff;
	color: #ffffff;
	font-size: 22px;
	font-weight: bold;
	border-radius: 15px;
	box-shadow: 1px 1px 40px 0px rgba(32, 32, 32, 0.51);
}

/**/

.inputs-blks {
	display: flex;
	flex-flow: column wrap;
	max-width: 500px;
	margin: 30px auto 0 auto;
}

.inputs-blks input {
	margin: 10px 0;
	height: 50px;
	font-size: 20px;
	padding: 10px;
}

.inputs-blks input:focus {
	border-color: #66afe9;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
		0 0 8px rgba(102, 175, 233, 0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
		0 0 8px rgba(102, 175, 233, 0.6);
}

.inputs-blks button {
	margin-top: 17px;
	text-decoration: none !important;
}

.order-btn {
	color: #091413;
	padding: 15px 100px;
	font-size: 21px;
	margin: auto;
	font-weight: 500;
	background-color: #d3b37c;
	border-radius: 6px;
	text-align: center;
	text-decoration: none;
	display: block;
	cursor: pointer;
}

.price {
	text-align: center;
}

.price p {
	margin: 2px auto;
}

.price .old-price {
	color: #e6e6e6;
	text-decoration: line-through;
}

.toform {
	cursor: pointer !important;
}

.amulet-ph {
	max-width: 310px !important;
}

.block-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.name {
	width: 75%;
}

.name p {
	color: #ddc091;
	text-align: center;
	font-size: 2.4em;
	margin: 0;
	line-height: 1.3;
}

.prediction-gen p {
	color: #ddc091;
	text-align: center;
	font-size: 1.5em;
}

.prediction-gen img {
	display: block;
	margin: 10px auto 20px;
	border-radius: 50%;
	max-width: 60px;
}

#preloader {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
	overflow: visible;
}

#preloader img {
	display: block;
	position: relative;
	margin: auto;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	border-radius: 50%;
}

.hidden {
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s 2s, opacity 2s linear;
}

/* *********************************************************** */

/* *** */

.white {
	color: #fff;
}

.red {
	font-weight: bold;
	color: #f00;
	text-shadow: 0px 0px 1px;
}

.yellow {
	font-weight: bold;
	color: #ff0;
	text-shadow: 0px 0px 1px;
}

b,
.bold {
	font-weight: bold;
	text-shadow: 0px 0px 1px;
}

.str {
	text-decoration: line-through;
}

.f28 {
	font-size: 28px;
}

.f30 {
	font-size: 30px;
}

.f32 {
	font-size: 32px;
}

/**/

.logo {
	text-decoration: none;
}

.detail {
	display: flex;
	/* margin: 15px; */
	flex-flow: row wrap;
}

hr {
	content: "";
	display: block;
	border: none;
	height: 1px;
	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0) 0%,
		#00d8ff 50%,
		rgba(255, 255, 255, 0) 100%
	);
	margin: 15px 0;
}

/* *** */

#secondPage .second-page-inr {
	background: rgba(0, 0, 0, 0.75);
	padding: 10px;
	border-radius: 7px;
	border: 1px solid #f3edfb82;
	max-width: 1024px;
	margin: 10px;
	color: #fff;
	min-height: 1000px;
}

#thirdPage {
	margin: 10px;
	line-height: 42px;
	border-radius: 7px;
	margin-top: 20px;
}

#thirdPage .third-page-inr {
	background: rgba(0, 0, 0, 0.75);
	padding: 10px;
	margin: 0 auto;
	max-width: 100%;
	border-radius: 7px;
	border: 1px solid #f3edfb82;
	padding: 10px;
	margin: 0;
}

/* **************************************** */

#formForName {
	display: flex;
	margin: 10px 0;
}

#nameInpt {
	max-width: 375px;
	height: 40px;
	width: 100%;
	border-radius: 5px;
	border: 1px solid #01c6ec;
	box-shadow: 0px 1px 5px #ccc;
	padding: 3px 7px 3px 7px;
	font-size: 24px;
	margin: 5px;
}

input[readonly] {
	opacity: 0.5;
	cursor: default;
}

.noactive {
	opacity: 0.5;
	pointer-events: none;
}

.stdFormBtn {
	display: block;
	width: 100px;
	cursor: pointer;
	margin-left: 12px;
	background: linear-gradient(
		to bottom,
		#f5f6f6 0%,
		#dbdce2 21%,
		#b8bac6 49%,
		#dddfe3 80%,
		#f5f6f6 100%
	);
	border-radius: 5px;
	border: 1px solid #ccc;
	font-size: 26px;
	box-shadow: 0px 2px 5px #e7e7e7;
	padding: 0;
	height: 40px;
	margin: 5px;
}

.stdFormBtn:hover {
	background: linear-gradient(
		#f5f6f6 0%,
		#f0f1f9 21%,
		#fff 49%,
		#edeff3 80%,
		#f5f6f6 100%
	);
	color: #001cff;
}

.stdFormBtn:active {
	color: #00d8ff;
}

button[disabled] {
	background: #ccc !important;
	color: #888 !important;
	cursor: default;
}

/**/

/**/

#surveyGender {
	display: flex;
	margin: 15px auto;
	justify-content: center;
	flex-flow: row wrap;
}

/**/

#formOpr {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 10px 0;
}

#formOpr .form-group-inline {
	margin-right: 10px;
	margin: 5px;
}

#formOpr select {
	font-size: 22px;
	padding: 4px 12px;
	border-radius: 5px;
	border: 1px solid #01c6ec;
	box-shadow: 0px 1px 5px #ccc;
	font-size: 24px;
	background: #f1f1f1;
	height: 40px;
}

.frm-q {
	width: 100%;
	margin: 7px 0;
	font-size: 28px;
	width: 100%;
}

/* **************************************** */

.card170 {
	width: 170px;
	height: auto;
}

/* **************************************** */

.chat-content-blk,
.chat-content-blk-zodiac,
.chat-content-blk-additional {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 20px 0;
	position: relative;
	flex-flow: row nowrap;
	padding-top: 10px;
	width: 100%;
}

.chat-content-blk-zodiac {
	flex-flow: row nowrap;
	width: initial;
}

.chat-content-blk:first-of-type {
	margin-top: 10px;
}

.chat-content-blk-usr {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 35px 0;
	position: relative;
	flex-flow: row-reverse nowrap;
	padding-top: 10px;
	justify-content: end;
}

.chat-msg-blk-usr {
	position: relative;
	background: #c8e7fe;
	color: #000;
	border-radius: 15px;
	padding: 10px 15px;
	margin: 0 30px 0 0px;
	min-height: 52px;
	text-align: right !important;
}

.chat-msg-blk-usr::after {
	content: "";
	position: absolute;
	top: 10px;
	right: -20px;
	border-width: 21px;
	border-style: solid;
	border-color: transparent transparent #c8e7fe transparent;
	border-top-width: 13px;
	border-right-width: 20px;
	border-bottom-width: 21px;
	border-left-width: 15px;
}

.text-left {
	text-align: left;
}

.chat-img-ava,
.chat-img-ava-usr {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 50%;
	background: #fff;
	margin: 0;
	align-self: start;
	position: relative;
	top: 0px;
	border: 1px solid #3c3c3c;
}

.chat-img-ava-usr {
	align-self: center;
}

/* /* .chat-img-ava.robot {

} */

/* .chat-img-ava.man {
  background: url(../img/astrologer-photo.jpg) no-repeat;
  background-size: contain;
} */

.chat-msg-blk {
	position: relative;
	background: #fff;
	color: #000;
	border-radius: 15px;

	padding: 10px 15px;
	margin: 0 0 0 4px;
	width: calc(100% - 77px);
	min-height: 52px;
}

.chat-msg-blk img[alt="card"] {
	max-width: 185px;
}

.chat-msg-blk::after {
	content: "";
	position: absolute;
	top: 10px;
	left: -20px;
	/* border-width: 21px; */
	border-style: solid;
	border-color: transparent transparent #fff transparent;
	/* border-top-width: 13px; */
	border-right-width: 13px;
	border-bottom-width: 21px;
	border-left-width: 21px;
}

.chat-msg-blk p:first-child {
	margin: 0;
}

/*  **** FORM ORDER */

#form_after_chat_blk {
	margin-bottom: 25px;
}

#form_after_chat_blk .product-name {
	font-size: 28px;
	line-height: 44px;
	margin-top: 10px;
}

#form_after_chat_blk .product-description {
	max-width: 500px;
	background: rgb(0, 0, 0) none repeat scroll 0% 0%;
	text-align: center;
	padding: 5px;
	border: 1px solid rgb(255, 255, 255);
	color: rgb(255, 255, 255);
	font-size: 27px;
	font-weight: bold;
	border-radius: 15px;
	box-shadow: 1px 1px 40px 0px rgba(32, 32, 32, 0.51);
	margin: 25px auto;
	line-height: 40px;
}

#form_after_chat_blk .label-discont {
	margin: 0;
	position: relative;
	top: 16px;
	width: 100px;
}

#form_after_chat_blk .product-image-blk {
	background-color: aliceblue;
	width: 100%;
	max-width: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px auto;
	text-align: center;
	padding: 0 0 10px 0;
	border-radius: 5px;
}

#form_after_chat_blk .product-image {
	margin: 0;
}

#form_after_chat_blk .order-form-blocks {
	display: flex;
	flex-flow: column wrap;
	max-width: 400px;
	margin: 0 auto;
}

#form_after_chat_blk .order-form-blocks * {
	margin: 8px 0;
}

#form_after_chat_blk .order-form-blocks input {
	height: 47px;
	padding: 5px;
	font-size: 22px;
	max-width: 400px;
	box-shadow: 0px 0px 5px #fff;
	padding: 7px;
	border-radius: 5px;
	border: none;
	width: 100%;
	font-family: inherit;
}

#form_after_chat_blk .order-form-blocks .order-btn {
	height: 50px;
	padding: 5px;
	font-size: 28px;
	cursor: pointer;
	background: linear-gradient(
		to bottom,
		#f5f6f6 0%,
		#dbdce2 21%,
		#b8bac6 49%,
		#dddfe3 80%,
		#f5f6f6 100%
	);
	border: none;
	border-radius: 5px;
	box-shadow: 0px 0px 5px #fff;
}

#form_after_chat_blk .toform-btn-note {
	display: block;
	margin: 10px auto;
	font-size: 24px;
	text-align: center;
	color: white;
}

/*  /end FORM ORDER */

/*  *** COMMENTS *** */

.npr-article-content img {
	margin: 20px auto;
	display: block;
}
#comment-component-text * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
#comment-component-text {
	margin-top: 55px;
	background-color: #fff;
	border-radius: 5px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
	margin-bottom: 8px;
	padding: 16px 0 0;
	padding: 10px;
	border-top: 4px solid #365398;
	color: #000;
}
#comment-component-text #comment_num {
	border-bottom: 1px dashed #365398;
	color: #365398;
	font-weight: bold;

	width: 100%;
}
#comment-component-text .comment,
#comment-component-text .txt-cmt {
	margin: auto !important;
	width: 100%;
}
#comment-component-text .txt-cmt {
	display: flex;
	align-items: flex-start;
	padding: 20px 0;
}
#comment-component-text .txt-cmt .form-comment__img {
	padding: 0 5px;
	width: 80px;
}
#comment-component-text img {
	max-width: 100%;
	line-height: 1;
	display: inline-block;
	width: 65px;
	border-radius: 50px;
}
#comment-component-text .form-comment__content {
	width: 100%;
	padding: 0 5px;
}
#comment-component-text .your-name,
#comment-component-text .txt-content {
	font-size: 16px;
}
#comment-component-text .your-name {
	border: 1px solid #ddd;
	padding: 5px 10px;
	width: 100%;
	margin-bottom: 0;
	border-radius: none;
}
#comment-component-text .txt-content {
	width: 100%;
	min-height: 40px;
	display: block;
	margin: 15px 0 5px 0;
	padding: 10px;
	resize: none;
	border: 1px solid #ddd;
	box-sizing: border-box;
}
.form-comment__content input,
.form-comment__content textarea {
	font-family: inherit;
}
#comment-component-text .add-comment-button {
	background-color: #4267b2;
	border: 1px solid #4267b2;
	border: none;
	color: #fff;
	font-size: 14px;
	border-radius: 2px;
	padding: 0 8px;
	line-height: 22px;
	cursor: pointer;
	font-weight: bold;
	text-decoration: none;
	width: initial;
}
#comment-component-text .comment {
	border-top: 1px dashed #ccc;
	display: flex;
	align-items: flex-start;
	padding: 25px 0;
	margin: 0 -10px;
	white-space: normal;
}
#comment-component-text .comment:last-of-type {
	border-bottom: 1px dashed #ccc;
}
#comment-component-text .comment__content {
	padding: 0 10px;
	width: 100%;
}
#comment-component-text .comment__content .comment__name {
	margin-top: 0;
	color: #365398;
	font-size: 18px;
	text-align: left;
	text-align-last: left;
	font-weight: 700;
	white-space: nowrap;
}
#comment-component-text .comment .comment__text {
	margin: 0 0 7px 0;
	font-size: 16px;
	line-height: 1.6;
}
#comment-component-text .comment__details {
	font-size: 12px;
	color: #365398;
	line-height: 2;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding-top: 16px;
}
#comment-component-text .comment__details a,
#comment-component-text .comment__details span {
	text-decoration: none;
	color: #365398;
	font-size: 12px;
	line-height: 1.4;
	font-weight: 400;
	cursor: pointer;
}
#comment-component-text .comment__details img {
	border-radius: 0;
}
#comment-component-text .comment__details img {
	width: 16px;
	position: relative;
	top: 2px;
}
#comment-component-text .comment .comment__text img {
	display: block;
	width: 300px;
	margin: 8px 0 0;
	border-radius: 0 !important;
	cursor: pointer;
}
#comment-component-text .form-comment {
	font-size: 20px;
	width: 100%;
}
#comment-component-text .comment__details button {
	background: transparent;
	border: none;
	color: #365398;
	cursor: pointer;
}
#comment-component-text .events-stop {
	pointer-events: none;
}

#comment-component-text .make-comment {
	display: inline-block;
	white-space: nowrap;
}
#comment-component-text .comment__details button::after,
#comment-component-text .comment__details .make-comment::after {
	content: "‧";
	display: inline-block;
	width: 13px;
	text-align: center;
}
#comment-component-text .comment__time {
	white-space: nowrap;
}
#comment-component-text .comment__time:hover {
	cursor: default;
}
.comment__img {
	cursor: pointer;
}
#comment-img-dummy {
	border-radius: 50%;
}
@media screen and (max-width: 500px) {
	.comment {
		position: relative;
		right: 5px;
	}
	#comment-img-dummy {
		line-height: 1;
		display: inline-block;
		max-width: initial !important;
	}
}

/* *** /end COMMENT *** */

.std-btn {
	padding: 15px;
	display: block;
	margin: 30px auto 15px auto;
	width: 200px;
	text-align: center;
	border-radius: 5px;
	text-decoration: none;
	color: #fff !important;
	/* box-shadow: 0px 0px 15px #555; */
	background: linear-gradient(45deg, #001cff, #00dbff);
	font-weight: bold;
	/* transform: scale(1.1); */
	box-shadow: 0px 3px 5px #000;
	cursor: pointer;
}

.std-btn:hover {
	background: linear-gradient(120deg, #0037ff, #00adff);
	transition: background 1s linear;
}

/*  buy-button */

@keyframes pulseBg {
	from {
		transform: scale3d(1, 1, 1);
	}

	50% {
		transform: scale3d(1.15, 1.15, 1.15);
	}

	to {
		transform: scale3d(1, 1, 1);
	}
}

@keyframes pulseBgx {
	from {
		transform: scale3d(1.15, 1.15, 1.15);
	}

	50% {
		transform: scale3d(1, 1, 1);
	}

	to {
		transform: scale3d(1.15, 1.15, 1.15);
	}
}

@keyframes pulse {
	from {
		transform: scale3d(1, 1, 1);
	}

	50% {
		transform: scale3d(1.05, 1.05, 1.05);
	}

	to {
		transform: scale3d(1, 1, 1);
	}
}

.buy-button {
	font-size: 25px;
	font-weight: 700;
	display: block;
	max-width: 500px;
	width: 96%;
	color: #fff;
	text-align: center;
	background: rgb(219, 32, 32) none repeat scroll 0% 0%;
	padding: 20px 20px 14px;
	border-image: none;
	border-radius: 6px;
	text-decoration: none;
	margin: 50px auto 35px auto;
	border-bottom: 6px solid transparent;
	animation: 1.7s pulse infinite alternate ease-in-out;
}

.open__comments {
	font-size: 28px;
	font-weight: 700;
	display: block;
	max-width: 355px;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	background: rgb(219, 32, 32) none repeat scroll 0% 0%;
	padding: 20px 20px 14px;
	border-image: none;
	border-radius: 6px;
	text-decoration: none;
	margin: 50px auto 35px auto;
	border-bottom: 6px solid transparent;
	animation: 1.7s pulse infinite alternate ease-in-out;
	white-space: nowrap;
	cursor: pointer;
}
@media screen and (max-width: 1199px) {
	.buy-button {
		margin: 20px auto 7px auto;
	}
}

/**/

#countdown.stop-time .countdown-number::before {
	animation: none;
}

/**/

.lh24d {
	line-height: 36px;
}

@media screen and (min-width: 641px) {
	.card ul {
		min-height: 220px;
		left: 0;
	}
}

/* DESKTOPN ONLY  */

@media screen and (min-width: 1024px) {
	body {
		background: #000 url("../img/image54.jpg") no-repeat scroll 50% 0;
		background-size: 100%;
		background-attachment: fixed;
		animation: zoombg 5s;
	}

	.header,
	#main {
		animation: none;
	}

	body::before {
		content: none;
	}

	.dark-section {
		background: linear-gradient(
			to right,
			rgba(0, 0, 0, 0.8) 0%,
			rgba(184, 186, 198, 0) 50%,
			rgba(0, 0, 0, 0.8) 100%
		);
	}

	/* .profil {
	float: left;
	margin-right: 20px;
	margin-top: 11px;
	border: 1px solid #f3edfb82;
	width: 150px;
} */

	.detail {
		display: flex;
		/* margin: 10px; */
		flex-flow: row nowrap;
	}

	.card ul {
		min-height: 220px;
		left: 0;
	}

	/* .readme {
	margin: 10px 0 10px 10px;
	font-size: 24px;
	line-height: 38px;
} */

	.other-tarot li {
		max-height: 240px;
	}

	.about {
		min-height: 234px;
		margin-left: 0;
	}

	.lh24d {
		line-height: 42px;
	}

	#thirdPage .third-page-inr {
		margin: 10px;
	}
} /* DESKTOPN ONLY  */

/* Swiper Container */
.swiper-container {
	width: 100%;
	margin: 20px auto;
	position: relative;
	overflow: hidden;
}

/* Swiper Slide */
.swiper-slide {
	text-align: center;
	font-size: 18px;
	padding: 40px;
	box-sizing: border-box;
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: 50%;
	width: 30px;
	height: 30px;
	margin-top: -15px;

	color: #fff !important;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.img-k {
	max-width: 650px;
	width: 100%;
}

.topic {
	font-size: 24px;
}

/* Hide Navigation Buttons on Small Screens */
@media (max-width: 768px) {
	.swiper-button-next,
	.swiper-button-prev {
		display: none;
	}

	.logo h1 {
		font-size: 34px;
	}

	.f28 {
		font-size: 23px;
		line-height: 1.5;
	}

	.mob-s {
		font-size: 18px;
	}

	#mainHead {
		font-size: 28px;
	}

	h3#prety-f {
		font-size: 27px;
		line-height: 1.5;
	}

	.like-h2 {
		font-size: 30px;
	}

	.topic {
		font-size: 21px;
	}

	#form_after_chat_blk .product-name {
		font-size: 25px;
	}

	#form_after_chat_blk .product-description {
		font-size: 22px;
	}
}
