/*
Theme name: crown-shining-ro
Description:
Author: Elena Stanesku
Version: 111.00
*/


:root {
	--white: #fff;
	--black: #000;
	--red: #770009;
	--orange: #cd8233;
}



*, *::before, *::after {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
html {
	font-size: 20px;
}
body {
	background: var(--white);
	color: var(--black);
	font: 0.8rem/1.5 Arial, sans-serif;
}
.wrapper,
body.nav-active {
	overflow: hidden;
}
.box {
	width: 100%;
	min-width: 320px;
	position: relative;
}
.container {
	width: 100%;
	min-width: 320px;
	max-width: 1020px;
	padding-left: 1rem;
	padding-right: 1rem;
	margin: 0 auto;
	position: relative;
	border-top: 0 solid transparent;
}
.container::after {
	content: '';
	display: block;
	clear: both;
	width: 100%;
	height: 0;
}
.flx {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}


a {
	color: var(--red);
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}

input, 
textarea, 
select,
button {
	font-family: Arial, sans-serif;
}
input.error {
	color: #f00 !important;
	border: 1px solid #f00 !important;
}
input.valid {
	border: 1px solid #339e36 !important;
}
input:focus {
	color: var(--black);
}
input::-webkit-input-placeholder {
	color: var(--black);
}
input::-moz-placeholder {
	color: var(--black);
}
input:-moz-placeholder {
	color: var(--black);
}
input:-ms-input-placeholder {
	color: var(--black);
}






.text {
	overflow: hidden;
}
.text p {
	margin-bottom: 1.2rem;
}
.content h1,
.text h2,
.text h3,
.text h4, 
.text h5 {
	margin-bottom: 1.2rem;
	font-size: 2rem;
	line-height: 1.3;
}
.text h2 {
	padding-top: 0.8rem;
	font-size: 1.6rem;
}
.text h3 {
	padding-top: 0.6rem;
	font-size: 1.4rem;
}
.text h4, .text h5 {
	padding-top: 0.4rem;
	font-size: 1.2rem;
}
.text table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 25px;
}
.text table tr td {
	border: 1px solid var(--black);
	padding: 10px;
	margin-bottom: 1.2rem;
}
.text ul, .text ol {
	margin: 0 0 1rem 1.2rem;
}
.text li {
	margin-bottom: 8px;
}
.text img {
	display: block;
	max-width: 100%;
	height: auto;
}




.alignleft {display: inline;float: left;margin: 5px 15px 5px 0;}
.alignright {display: inline;float: right;margin: 5px 0 5px 15px;}
.aligncenter {clear: both;display: block;margin: 5px auto 25px;}
.aligncenter img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.button-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	margin-bottom: 25px;
}
.button {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	min-height: 48px;
	padding: 8px 24px;
	border-radius: 5px;
	background: var(--red);
	border: 2px solid var(--red);
	color: var(--white);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.3;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: all .3s ease;
}
.button:hover {
	background: var(--orange);
}




/* Header ----------------------------------------------------------------------------- */
.header {
	padding-top: 1rem;
	padding-bottom: 1rem;
	background: var(--white);
	box-shadow: 0 0 8px rgba(0, 0, 0, .1);
	z-index: 10;
}
.header .container {
	align-items: center;
}
.header__logo {
	display: block;
	width: 200px;
	height: 60px;
}
.header__logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.header__nav-btn {
	display: none;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	border: none;
	background: transparent;
	outline: none;
	cursor: pointer;
}
.header__nav-btn span {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	height: 2px;
	border-radius: 3px;
	background: var(--red);
	position: relative;
}
.header__nav-btn span::before, 
.header__nav-btn span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 3px;
	background: var(--red);
	transition: all 0.4s ease;
}
.header__nav-btn span::before {
	top: -8px;
}
.header__nav-btn span::after {
	bottom: -8px;
}
.nav-active .header__nav-btn span {
	background: transparent;
}
.nav-active .header__nav-btn span::before {
	top: 0;
	-webkit-transform: rotate(45deg);
}
.nav-active .header__nav-btn span::after {
	bottom: 0;
	-webkit-transform: rotate(-45deg);
}

.header__nav {
	margin-left: auto;
}
.header__nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex: 1;
	gap: 1rem;
	list-style: none;
}
.header__nav ul li {
	position: relative;
}
.header__nav ul li a {
	display: block;
	color: var(--black);
	font-size: 18px;
	line-height: 1.3;
	text-decoration: none;
}
.header__nav ul li a:hover {
	text-decoration: underline;
}

.header__nav li.menu-item-has-children {
	padding-bottom: 10px;
	margin-bottom: -10px;
}
.header__nav li.menu-item-has-children > a {
	padding-right: 12px;
	position: relative;
}
.header__nav li.menu-item-has-children > a::after {
	content: '';
	position: absolute;
	top: 7px;
	right: 2px;
	width: 5px;
	height: 5px;
	border-bottom: 1px solid #000;
	border-left: 1px solid #000;
	transform: rotate(-45deg);
}
.header__nav ul.sub-menu {
	position: absolute;
	top: 70%;
	left: 0;
	display: block;
	min-width: 168px;
	background: #fff;
	box-shadow: 0 0 8px rgba(0, 0, 0, .1);
	padding: 8px;
	opacity: 0;
	pointer-events: none;
	transition: all .3s ease;
}
.header__nav li:hover ul.sub-menu {
	top: 90%;
	opacity: 1;
	pointer-events: auto;
}


.header__button {
	margin-left: 1.5rem;
}





/* Middle ----------------------------------------------------------------------------- */
.content {
	padding-top: 1rem;
	padding-bottom: 3rem;
}


.breadcrumbs {
	margin-bottom: 1rem;
	opacity: .8;
	font-size: 12px;
}



.partner__list {
	padding-top: 8px;
	padding-bottom: 20px;
}
.partner-item {
	display: block;
	background: rgba(0, 0, 0, .01);
	border: 1px solid rgba(0, 0, 0, .05);
	margin-bottom: 20px;
	padding: 8px;
	border-radius: 10px;
	position: relative;
}
.partner-item:first-child {
	border-color: var(--red);
}
.partner-item__top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.partner-item__info {
	width: 16%;
}
.partner-item__thumb {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 80px;
	background: rgba(255, 255, 255, .8);
	border-radius: 8px;
}
.partner-item__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.partner-item__name {
	display: block;
	margin-bottom: 5px;
	color: var(--red);
	font-size: 18px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
}
.partner-item__bonus {
	width: 55%;
}
.partner-item__bonus-subname {
	font-size: 13px;
}
.partner-item__bonus-name {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.2;
}
.partner-item__bonus-name p {
	margin-bottom: 0;
}
.partner-item__bonus-name span {
	font-size: 16px;
	font-weight: normal;
}
.partner-item__button-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 25%;
}
.partner-item__rating {
	width: 100%;
	margin-bottom: 8px;
	font-size: 16px;
	text-align: center;
}
.partner-item__rating span {
	font-weight: bold;
}
.partner-item__button {
	margin: 0 auto;
}

.partner-item__open-arrow {
	position: absolute;
	bottom: -15px;
	left: calc(50% - 15px);
	width: 30px;
	height: 30px;
	border: 1px solid var(--red);
	border-radius: 50%;
	background: var(--white);
	transition: all .3s ease;
	cursor: pointer;
	z-index: 10;
}
.partner-item__open-arrow::before {
	content: '';
	position: absolute;
	top: calc(50% - 8px);
	left: calc(50% - 10px);
	width: 20px;
	height: 20px;
	background: var(--red);
	-webkit-mask: url("i/bg-icon-arrow.svg") center no-repeat;
	mask: url("i/bg-icon-arrow.svg") center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: all .3s ease;
}
.partner-item__open-arrow:hover {
	background: var(--red);
}
.partner-item__open-arrow:hover::before {
	background: var(--white);
}
.partner-item.open .partner-item__open-arrow::before {
	transform: rotate(180deg);
}

.partner-item__bottom {
	max-height: 0;
	opacity: 0;
	transition: all .3s ease;
}
.partner-item.open .partner-item__bottom {
	max-height: 5000px;
}
.partner-item__bottom-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	padding: 10px;
	border-bottom: 1px solid rgba(0, 0, 0, .3);
}
.partner-item__bottom-text {
	width: 60%;
}
.partner-item__payment {
	width: 38%;
}
.partner-item__payment-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}





.demo {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	margin-bottom: 24px;
}
.demo__block {
	width: calc(100% - 280px);
	border: 2px solid #CCC;
	border-radius: 16px;
	overflow: hidden;
}
.demo__block-ins {
	display: block;
	width: 100%;
	padding-top: 64%;
	position: relative;
}
.demo__block-ins iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.demo__button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.demo__side {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	width: 250px;
}

.cas-item {
	width: 100%;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: 5px;
	padding: 8px;
}
.cas-item__top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding-bottom: 5px;
}
.cas-item__logo {
	width: 80px;
}
.cas-item__logo-ins {
	display: block;
	padding-top: 60%;
	position: relative;
}
.cas-item__logo-ins img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cas-item__info {
	width: calc(100% - 90px);
}
.cas-item__name {
	font-size: 16px;
	font-weight: bold;
}
.cas-item__bonus {
	margin-bottom: 8px;
	font-size: 17px;
	line-height: 1.3;
}
.cas-item__bonus span {
	font-size: 15px;
}
.cas-item__button {
	display: flex;
	width: 100%;
}







/* Author ----------------------------------------------------------------------------- */
.author-card {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-top: 2rem;
	margin-bottom: 1rem;
	border: 1px solid #ccc;
	box-shadow: 0 0 20px rgba(0, 0, 0, .1);
	border-radius: 8px;
	padding: 24px;
}
.author-card__photo {
	width: 26%;
}
.author-card__photo img {
	display: block;
	width: 100%;
	height: auto;
}
.author-card__info {
	width: 70%;
}
.author-card__title {
	margin-bottom: 16px;
	font-size: 20px;
	line-height: 1.3;
}
.author-card__title a {
	color: var(--red);
	text-decoration: none;
}
.author-card__title a:hover {
	text-decoration: underline;
}
.author-card__social {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}
.author-card__social-item {
	display: block;
	width: 32px;
	height: 32px;
	background: var(--red);
	-webkit-mask: url('i/bg-icon-in.svg') center no-repeat;
	mask: url('i/bg-icon-in.svg') center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	font-size: 0;
	transition: all .3s ease;
}
.author-card__social-item--in {
	-webkit-mask-size: 36px 36px;
	mask-size: 36px 36px;
}
.author-card__social-item--fb {
	-webkit-mask-image: url('i/bg-icon-fb.svg');
	mask-image: url('i/bg-icon-fb.svg');
}
.author-card__social-item--x {
	-webkit-mask-image: url('i/bg-icon-tw.svg');
	mask-image: url('i/bg-icon-tw.svg');
}
.author-card__social-item:hover {
	background: var(--black);
}
.author-card__details {

}






.author-profile__card {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 2rem;
}
.author-profile__photo {
	width: 40%;
}
.author-profile__photo img {
	display: block;
	width: 100%;
	height: auto;
}
.author-profile__info {
	width: 56%;
}





/* Footer ----------------------------------------------------------------------------- */
.footer {
	padding-top: 1rem;
	padding-bottom: 2.4rem;
	background: var(--black);
	color: var(--white);
}
.footer-top {
	padding-bottom: 1rem;
}
.footer-top .container {
	align-items: center;
}
.footer__logo {
	display: block;
	width: 160px;
	height: 40px;
	background: url('i/logo-crown-shining-ro.png') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	font-size: 0;
}
.footer__nav {
	max-width: calc(100% - 240px);
}
.footer__nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	list-style: none;
	gap: 1rem;
}
.footer__nav ul li {
	position: relative;
}
.footer__nav ul li a {
	display: block;
	color: var(--white);
	font-size: 18px;
	line-height: 1.3;
	text-decoration: none;
}
.footer__nav ul li a:hover {
	text-decoration: underline;
}


.footer-middle {
	border-top: 1px solid rgba(255, 255, 255, .1);
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.footer-middle .container {
	align-items: center;
}
.footer-warn {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 12px;
	width: 38%;
}
.footer-warn__link {
	display: block;
}
.footer-warn__link img {
	display: block;
	max-width: 100px;
	max-height: 32px;
}

.footer-attention {
	width: 60%;
	font-size: 12px;
}
.footer-attention a {
	color: #fff;
}

.footer-subnav {
	width: 100%;
	padding-top: 20px;
}
.footer-subnav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 16px;
	list-style: none;
}
.footer-subnav li {
	position: relative;
}
.footer-subnav a {
	display: block;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
}
.footer-subnav a:hover {
	text-decoration: underline;
}


.footer-bottom {
	padding-top: 1.2rem;
}
.footer__copyright {
	width: 100%;
	font-size: 13px;
	line-height: 1.2;
	text-align: center;
}
.footer__copyright a {
	color: #fff;
}




/* === COOKIE BANNER === */
#cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #1f2937;
	color: #ffffff;
	padding: 10px 20px;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	z-index: 9999;
}
.cookie-banner__info {
	width: calc(100% - 160px);
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	max-width: 900px;
}
#cookie-banner a {
	color: #60a5fa;
	text-decoration: underline;
}
.cookie-buttons {
	display: flex;
	gap: 10px;
}
.cookie-btn {
	border: none;
	padding: 10px 16px;
	font-size: 14px;
	cursor: pointer;
	border-radius: 4px;
}
.cookie-accept {
	background: #22c55e; /* green */
	color: #000000;
}
.cookie-reject {
	background: #e5e7eb; /* light gray */
	color: #000000;
}
@media (max-width: 600px) {
	#cookie-banner {
		flex-direction: column;
		align-items: flex-start;
	}

	.cookie-banner__info {
		width: 100%;
	}
}



/* ==============================================================
   ========================  MEDIA  =============================
   ============================================================== */
@media screen and (max-width:1020px) {

	.footer__logo {
		margin: 0 auto 16px;
	}
	.footer__nav {
		width: 100%;
		max-width: 100%;
	}
	.footer__nav ul {
		justify-content: center;
	}

}








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

	html {
		font-size: 18px;
	}
	body {
		font-size: 1rem;
	}


	.header__nav {
		position: absolute;
		top: 20px;
		right: 20px;
		padding: 8px;
		background: #fff;
		box-shadow: 0 0 8px rgba(0, 0, 0, .2);
		opacity: 0;
		pointer-events: none;
		transition: all .3s ease;
	}
	.nav-active .header__nav {
		top: 64px;
		opacity: 1;
		pointer-events: auto;
	}
	.header__nav ul {
		display: block;
	}
	.header__nav li.menu-item-has-children > a::after {
		display: none;
	}
	.header__nav ul.sub-menu {
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		padding-left: 24px;
		opacity: 1;
		pointer-events: auto;
	}

	.header__nav-btn {
		display: flex;
	}


	.partner-item__info {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		padding-bottom: 10px;
		border-bottom: 1px solid rgba(0, 0, 0, .05);
		margin-bottom: 10px;
	}
	.partner-item__thumb {
		order: -1;
		width: 200px;
	}
	.partner-item__name {
		width: calc(100% - 220px);
	}
	.partner-item__bonus {
		width: 64%;
	}
	.partner-item__button-list {
		width: 32%;
	}


	.author-card {
		padding: 16px;
	}



	.author-profile__photo {
		width: 100%;
		margin-bottom: 1rem;
	}
	.author-profile__info {
		width: 100%;
	}

}












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

	.author-card__photo {
		width: 50%;
		margin: 0 auto 0.8rem;
	}
	.author-card__info {
		width: 100%;
	}



	.partner-item__bonus {
		width: 100%;
		padding-bottom: 20px;
	}
	.partner-item__button-list {
		width: 100%;
		padding-bottom: 16px;
	}


	.footer-warn {
		justify-content: center;
		width: 100%;
		padding-bottom: 1rem;
	}
	.footer-attention {
		width: 100%;
	}


}












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

	html {
		font-size: 16px;
	}
	body {
		font-size: 1.1rem;
	}


	.partner-item__info {
		justify-content: center;
		width: 100%;
	}
	.partner-item__thumb {
		order: 1;
		width: 200px;
	}
	.partner-item__name {
		width: 100%;
		padding-bottom: 10px;
	}


	.author-card__photo {
		width: 80%;
	}

}












/* END ============================================================= */

