.card-wrapper {
	font-size: 0;
	width: 100%;
}
.wrapper {
	overflow: auto !important;
	background-color: #fafbff !important;
}
.header-sub-menu {
	margin-top: 0px;
}

.card {
	margin-right: 15px;
	margin-bottom: 15px;
	position: relative;
	vertical-align: top;
	display: inline-block;
	max-width: 300px;
	min-height: 200px;
	width: 90%;
	/*border: 1px solid #999;*/
	transition: .3s;
	background-color: #fff;
	box-shadow: 0px 0px 30px rgb(0 0 0 / 15%);
	margin-top: 20px;
	border-radius: 10px;
}
.card__image {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 90%;
	max-height: 90%;
	width: auto;
	height: auto;
	z-index: 0;
}
.card__image:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
}
.card__title,
.card__subtitle,
.card__subscribe-button {
	position: relative;
	z-index: 1;
}
.card__title {
	width: 90%;
	font-weight: 500;
    margin-right: auto;
    margin-left: auto;
	margin-top: 70px;
	font-size: 18px;
	color: #555;
}
.card__subtitle {
	font-size: 16px;
	font-weight: 300;
}
.card__button {
	margin: 10px auto;
	display: block;
	border-radius: 5px;
	padding: 10px;
	text-align: center;
	font-size: 16px;
	color: #fff;
	background-color: #3CB371;
}
.card:hover {
	border: none;
	box-shadow: 0 0 5px #aaa;
	font-weight: 300;
}

.form {
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: 98%;
	max-width: 700px;
	padding: 10px;
	border: 1px solid #4566b1;
	border-radius: 5px;
	box-sizing: border-box;
	background-color: transparent;
}
.form__group {
	margin: 5px;
	padding: 10px;
	border-radius: 5px;
	border: 1px dashed #555;
	display: inline-block;
	width: 45%;
}
@media screen and (max-width: 535px) {
	.form__group {
		width: 90%;
	}
}
.form__group--hidden {
	display: none;
}
.form__field {
	margin-bottom: 30px;
	position: relative;
	border: none;
	padding-top: 25px;
	text-align: left;
}
.form_topic {
	width: 70% !important;
}
.form__input {
	width: 100%;
	padding: 5px 7px;
	font-size: 16px;
	color: #000;
	border-color: #fff;
	transition: .3s;
	box-sizing: border-box;
}

::-webkit-input-placeholder {
	color: #fff;
}
::-moz-placeholder {
	color: #fff;
}
:-ms-input-placeholder {
	color: #fff;
}
:-moz-placeholder {
	color: #fff;
}

.form__label {
	position: absolute;
	top: 2px;
	left: 5px;
	color: #555;
	font-size: 15px;
	padding: 5px;
	background-color: #fff;
	border-radius: 3px;
	transition: .3s;
}
.form__input:placeholder-shown {
	color: #000;
	border-color: #000;
}
.form__input:focus {
	color: #000;
	border-color: #000;
	font-size: 16px;
}
.form__input:focus + .form__label {
	top: 2px;
	color: #000;
	font-size: 14px;
}
.form__input:placeholder-shown + .form__label {
	top: 15px;
	font-size: 14px;
}
.form__hint {
	margin: 7px 0 0 0;
	color: #555;
	font-size: 14px;
	padding: 0 7px;
}
.form__hint--set-hint {
	margin: 10px 0 30px;
}
.form__preview {
	/*display: none;*/
}
.form__button {
	margin: 20px auto 0;
	display: block;
	width: 150px;
	height: 50px;
	line-height: 25px;
	border: none;
	outline: none;
	color: #fff;
	background-color: #359bcf;
	transition: .3s;
	cursor: pointer;
}
.form__button:focus {
	background-color: #40a8dd;
}
.form__button:hover {
	background-color: #4faddd;
	opacity: 1;
}
.form__button--add-card {
	margin-left: auto;
	margin-right: initial;
	width: initial;
	height: initial;
	line-height: initial;
	position: relative;
	padding: 0;
	color: #999999;
	background-color: transparent;
}
.form__button--add-card::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: currentColor;
	transition: .3s;
}
.form__button--add-card:focus {
	color: #226c91;
	background-color: transparent;
}
.form__button--add-card:hover {
	color: #1d5c7c;
	background-color: transparent;
}
.form__button--remove-card {
	margin-left: auto;
	margin-right: initial;
	width: initial;
	height: initial;
	line-height: initial;
	position: relative;
	padding: 0;
	font-size: 14px;
	color: #ff8888;
	background-color: transparent;
}
.form__button--remove-card::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: currentColor;
	transition: .3s;
}
.form__button--remove-card:focus {
	color: #ff6c91;
	background-color: transparent;
}
.form__button--remove-card:hover {
	color: #ff5c7c;
	background-color: transparent;
}
.screen {
	display: none;
}
.screen--show {
	display: block;
}

.hidden_iframe {
	display: none;
}
.loader {
	font-size: 18px;
	text-align: center;
}
.screen__link {
	color: #09e;
	font-size: 18px;
	text-decoration: underline;
}


.screen-cards {
	margin-top: 20px;
}
.screen-cards__card {
	margin: 15px 15px 15px 0;
	position: relative;
	vertical-align: top;
	display: inline-block;
	max-width: 280px;
	width: 90%;
	transition: .3s;
	background-color: #fff;
	border-radius: 10px;
}
.screen-cards__card--edit-mode {
	cursor: default;
}
.screen-cards__card-image-container {
	position: relative;
	width: 100%;
	height: 150px;
}
.screen-cards__card-image {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 90%;
	max-height: 90%;
	width: auto;
	height: auto;
	z-index: 0;
	padding: 0px;
	margin-top: 0px;
}
.screen-cards__card-image:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
}
.screen-cards__card-controls {
	position: absolute;
	top: 5px;
	right: 5px;
}
.screen-cards__card-cards-control,
.screen-cards__card-edit-control,
.screen-cards__card-remove-control {
	width: 20px;
	height: 20px;
	cursor: pointer;
	transition: .3s;
	display: inline-block;
	vertical-align: top;
}
.screen-cards__card-remove-control {
	margin-left: 3px;
	margin-right: 3px;
}
.screen-cards__card-cards-control:hover,
.screen-cards__card-edit-control:hover,
.screen-cards__card-remove-control:hover {
	opacity: 0.6;
}
.screen-cards__card-title {
	margin-top: 5px;
	padding-bottom: 25px;
	position: relative;
	width: 90%;
	font-weight: 300;
    margin-right: auto;
    margin-left: auto;
	font-size: 16px;
	color: #555;
	text-align: center;
	/*z-index: 1;*/
}
.promptModal-button {
	width: 170px;
	padding: 10px 0;
}

.discount_offer {
	display: none;
}

.wrapper-content {
	vertical-align: top;
	display: inline-block;
	height: auto;
	overflow: auto;
	background-color: color(display-p3 0.98 0.983 1);
	width: 100%;
	z-index: 1;
}

.breadcrumbs {
margin-top: 50px;
margin-bottom: 30px;
width: 90%;
margin-left: auto;
margin-right: auto;
padding-left: 10px;
box-sizing: border-box;
transition: .5s;
}

.breadcrumbs--expanded {
	padding-left: 290px;
}

.container_content {
margin: auto;
width: 100%;
font-size: 0;
}

.wrapper-clusters {
margin: auto;
display: flex;
align-items: flex-start;
padding-top: 0;
width: 100% !important;
height: auto;
}

.clm-container--y-58 {
	margin-top: -98px !important;
}

.title {
	text-align: left;
	color: #242424;
	font-size: 30px;
	font-weight: 900;
	padding-left: 90px;
	padding-top: 20px;
	background-color: color(srgb 0.9794 0.9845 1);
	margin-bottom: 0px;
	margin-top: 80px;
	padding-bottom: 20px;
}

.title--expanded {
	padding-left: 275px;
}

@media screen and (max-width: 815px) {
	.title {
		padding: 0px;
		margin-top: 50px;
		margin-bottom: 30px !important;
	}
}

.flash_backgr_img {
	width: 400px;
display: block;
margin-left: auto;
margin-right: auto;
}

@media screen and (max-width: 768px) {
	.flash_backgr_img {
		width: 80%;
	}
}

footer {
	margin-top: 0px !important;
}


.fav__button {
margin-top: 30px;
display: inline-block;
margin-left: auto;
margin-right: 10px;
width: 280px;
padding: 20px 0;
font-size: 14px;
text-align: center;
outline: none;
border: none;
transition: .7s;
cursor: pointer;
font-weight: 300;
color: #fff;
box-shadow: rgba(50,50,93,0.25) 0px 50px 100px -20px, rgba(0,0,0, 0.3) 0px 30px 60px -30px;
border-radius: 5px;
background-color: #006fce;
margin-bottom: 30px;
}
.button_disabled {
	opacity: 0.5;
}

@media screen and (max-width: 580px) {
	.fav__button {
		margin-bottom: 0px;
	}
}


.modalFavEx {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.22);
	z-index: 9999;
	overflow: auto;
}

.modalFavEx.show {
	display: block;
}

.modalFavEx__content {
	position: relative;
	top: 0;
	left: 0;
	transform: none;
	width: min(1680px, calc(100vw - 40px));
	max-width: none;
	min-height: calc(100vh - 40px);
	margin: 20px auto;
	padding: 0;
	background: #f4f6fb;
	border: 1px solid #e3e8f0;
	border-radius: 0;
	box-shadow: none;
	overflow: hidden;
	transition: none;
	outline: none;
}

.modalFavEx__content.show {
	left: 0;
	width: min(1680px, calc(100vw - 40px));
}

.modalFavEx__title {
	margin: 0;
	padding: 28px 70px;
	font-size: 28px;
	line-height: 1.25;
	font-weight: 700;
	color: #465563;
	border-bottom: 1px solid #d9e0ea;
	background: #f4f6fb;
	text-align: left;
}

.modalFavEx__list {
	list-style: none;
	margin: 0;
	padding: 0 106px;
	height: auto;
	max-height: none;
	overflow: visible;
}

.modalFavEx__item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	align-items: center;
	column-gap: 40px;
	padding: 34px 22px;
	background: transparent;
	border-bottom: 1px solid #d9e0ea;
	transition: none;
}

.modalFavEx__item:last-child {
	border-bottom: none;
}

.modalFavEx__item[data-visible="true"] {
	background: transparent;
}

.modalFavEx__card-content {
	display: grid;
	grid-template-columns: minmax(260px, 420px) auto;
	align-items: center;
	column-gap: 40px;
	row-gap: 12px;
}

.modalFavEx__text {
	display: block;
	min-width: 0;
	text-align: left;
}

.modalFavEx__word {
	margin: 0;
	font-size: 26px;
	line-height: 1.2;
	font-weight: 700;
	color: #4b5b6a;
	word-break: break-word;
}

.modalFavEx__translation,
.modalFavEx__definition {
	margin: 14px 0 0;
	font-size: 18px;
	line-height: 1.45;
	font-weight: 400;
	color: #5d6b7c;
	word-break: break-word;
}

.modalFavEx__card-content > div:last-child {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: nowrap;
}

.modalFavEx__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	margin-right: 0;
	padding: 16px;
	background: #eef1f7;
	border-radius: 50%;
	box-sizing: border-box;
	cursor: pointer;
	transition: background-color .2s ease, transform .2s ease, opacity .2s ease;
	box-shadow: none;
}

.modalFavEx__icon:hover {
	box-shadow: none;
	background: #e4e9f2;
	transform: translateY(-1px);
}

.modalFavEx__preview {
	display: block;
	width: 150px;
	height: 110px;
	object-fit: contain;
	margin-left: auto;
	margin-right: 24px;
	border: none;
	padding: 0;
	border-radius: 0;
	cursor: pointer;
	background: transparent;
	transition: transform .2s ease, opacity .2s ease;
}

.modalFavEx__preview:hover {
	border: none;
	background: transparent;
	transform: translateY(-1px);
}

.modalFavEx__exitButton {
	display:block;
	width:320px;
	height:56px;
	margin:40px 46px 30px auto;
	border:none;
	border-radius:10px;
	background:#004b6e;
	color:#fff;
	font-size:18px;
	line-height:1;
	font-weight:600;
	cursor:pointer;
	transition:all .2s ease;
}

.modalFavEx__exitButton:hover {
	background: #0b5578;
	transform: translateY(-1px);
}

.modalFavEx__message {
	position: fixed;
	left: 50%;
	bottom: 28px;
	transform: translate(-50%, 100px);
	background: #1f2937;
	padding: 14px 28px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,.18);
	transition: transform .25s ease, opacity .25s ease;
	opacity: 0;
	z-index: 10000;
}

.modalFavEx__message--visible {
	transform: translate(-50%, 0);
	opacity: 1;
}

.modalFavEx__message p {
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
	color: #fff;
}

.no-cards {
	margin: 0;
	padding: 40px 0;
	font-size: 18px;
	color: #5d6b7c;
	text-align: center;
}

@media screen and (max-width: 1280px) {
	.modalFavEx__content,
	.modalFavEx__content.show {
		width: calc(100vw - 24px);
		min-height: calc(100vh - 24px);
		margin: 12px auto;
	}

	.modalFavEx__title {
		padding: 24px 32px;
		font-size: 24px;
	}

	.modalFavEx__list {
		padding: 0 34px;
	}

	.modalFavEx__item {
		grid-template-columns: minmax(0, 1fr) 210px;
		column-gap: 20px;
		padding: 28px 10px;
	}

	.modalFavEx__card-content {
		grid-template-columns: minmax(220px, 1fr) auto;
		column-gap: 24px;
	}

	.modalFavEx__word {
		font-size: 22px;
	}

	.modalFavEx__translation,
	.modalFavEx__definition {
		font-size: 17px;
	}

	.modalFavEx__icon {
		width: 56px;
		height: 56px;
		padding: 14px;
	}

	.modalFavEx__preview {
		width: 126px;
		height: 96px;
		margin-right: 0;
	}

	.modalFavEx__exitButton {
		width: 420px;
		height: 66px;
		margin: 40px 34px 28px auto;
		font-size: 22px;
	}
}

@media screen and (max-width: 820px) {
	.modalFavEx__content,
	.modalFavEx__content.show {
		width: calc(100vw - 12px);
		min-height: calc(100vh - 12px);
		margin: 6px auto;
	}

	.modalFavEx__title {
		padding: 18px 16px;
		font-size: 20px;
	}

	.modalFavEx__list {
		padding: 0 14px;
	}

	.modalFavEx__item {
		grid-template-columns: 1fr;
		row-gap: 18px;
		padding: 20px 0;
	}

	.modalFavEx__card-content {
		grid-template-columns: 1fr;
		row-gap: 16px;
	}

	.modalFavEx__card-content > div:last-child {
		gap: 14px;
	}

	.modalFavEx__word {
		font-size: 20px;
	}

	.modalFavEx__translation,
	.modalFavEx__definition {
		font-size: 16px;
		margin-top: 10px;
	}

	.modalFavEx__icon {
		width: 52px;
		height: 52px;
		padding: 13px;
	}

	.modalFavEx__preview {
		width: 120px;
		height: 90px;
		margin-left: 0;
	}

	.modalFavEx__exitButton {
		width: calc(100% - 28px);
		max-width: none;
		height: 58px;
		margin: 24px 14px 18px;
		font-size: 20px;
		border-radius: 10px;
	}
}


.modal-overlay{
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.34);
  box-sizing: border-box;
}

.modal-box{
  position: relative;
  width: min(660px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #f3f3f3;
  border-radius: 34px;
  box-shadow: 0 20px 60px rgba(0,0,0,.16);
  box-sizing: border-box;
}

.promptModal{
  position: relative;
  padding: 54px 56px 44px;
  color: #222;
  box-sizing: border-box;
}

.promptModal-title{
  margin: 0 0 34px;
  padding-right: 72px;
  font-size: 68px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #000;
  text-align: left;
}

.promptModal__x{
  position: absolute;
  top: 26px;
  right: 26px;
  width: 56px;
  height: 56px;
  border: none;
  background: transparent;
  color: #4a4a4a;
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.promptModal-upload{
  margin-bottom: 28px;
}

.promptModal-upload-label{
  display: block;
  width: 100%;
}

.promptModal-upload-button{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 112px;
  padding: 18px 26px;
  border: none;
  border-radius: 28px;
  background: #dbe3e8;
  color: #0f4f75;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

.promptModal-fileName{
  margin: 16px 0 0;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 400;
  color: #5a5a5a;
  text-align: left;
  word-break: break-word;
  min-height: 32px;
}

.promptModal-buttons{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 34px;
}

.promptModal-button{
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 10px 26px;
  border: none;
  border-radius: 28px;
  font-size:22px;
  line-height: 1.15;
  font-weight: 700;
  cursor: pointer;
  box-sizing: border-box;
}

.promptModal-button--primary{
  background: #004b6e;
  color: #fff;
}

.promptModal-button--secondary{
  background: #e8e8e8;
  color: #222;
}

@media (max-width: 1024px){
  .modal-box{
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    border-radius: 26px;
  }

  .promptModal{
    padding: 34px 24px 24px;
  }

  .promptModal-title{
    margin-bottom: 24px;
    padding-right: 52px;
    font-size: 40px;
  }

  .promptModal__x{
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    font-size: 34px;
  }

  .promptModal-upload-button{
    min-height: 74px;
    border-radius: 18px;
    font-size: 22px;
  }

  .promptModal-fileName{
    font-size: 16px;
    min-height: 22px;
  }

  .promptModal-buttons{
    gap: 16px;
    margin-top: 24px;
  }

  .promptModal-button{
    min-height: 74px;
    border-radius: 18px;
    font-size: 26px;
  }
}


.js-resetImage {
	padding: 6px 12px;
	margin-left: 8px;
	border: 1px solid #ccc;
	border-radius: 6px;
	background-color: #f7f7f7;
	color: #333;
	cursor: pointer;
	font-size: 14px;
	transition: background-color 0.2s ease;
}

.js-resetImage:hover {
	background-color: #eaeaea;
}

.modal-window {
	background: white;
	padding: 20px;
	border-radius: 8px;
	max-width: 400px;
	text-align: center;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.modal-btn-close {
	margin-top: 20px;
	padding: 10px 20px;
	background: #ff8800;
	border: none;
	color: white;
	border-radius: 6px;
	cursor: pointer;
}

.modal-text {
	font-size: 12px;
}

.modalFavEx__close{
	position:absolute;
	top:5px;
	right:24px;
	width:48px;
	height:48px;
	border:none;
	border-radius:12px;
	background:#e9edf5;
	color:#465563;
	font-size:26px;
	line-height:1;
	cursor:pointer;
	display:flex;
	align-items:center;
	justify-content:center;
	transition:all .2s ease;
	z-index:2;
}

.modalFavEx__close:hover{
	background:#dfe5ef;
	transform:scale(1.05);
}

.modalFavEx__previewWrap{
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	gap:10px;
	margin-left:auto;
	margin-right:24px;
	cursor:pointer;
}

.modalFavEx__uploadText{
	font-size:14px;
	color:#6b7280;
	font-weight:500;
	text-align:center;
	transition:color .2s ease;
}

.modalFavEx__previewWrap:hover .modalFavEx__uploadText{
	color:#4f46e5;
}


.setEditModal{
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}

.setEditModal.is-open{
  display: block;
}

.setEditModal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.22);
}

.setEditModal__dialog{
  position: relative;
  width: min(980px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  background: #f4f6fb;
  border: 1px solid #d9e0ea;
  border-radius: 28px;
  overflow-y: auto;
  box-sizing: border-box;
}

.setEditModal__close{
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: #e9edf5;
  color: #465563;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.setEditModal__imageWrap{
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: #eef2f8;
  border-right: 1px solid #d9e0ea;
  box-sizing: border-box;
}

.setEditModal__preview{
  display: block;
  width: 100%;
  max-width: 240px;
  max-height: 240px;
  object-fit: contain;
}

.setEditModal__body{
  padding: 34px 32px 28px;
  box-sizing: border-box;
}

.setEditModal__title{
  margin: 0 0 24px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #465563;
}

.setEditModal__field{
  margin-bottom: 22px;
}

.setEditModal__label{
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  color: #5d6b7c;
}

.setEditModal__input{
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid #d9e0ea;
  background: #fff;
  font-size: 18px;
  color: #465563;
  box-sizing: border-box;
  border-radius: 10px;
}

.setEditModal__actionsTop{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.setEditModal__upload,
.setEditModal__reset,
.setEditModal__cancel,
.setEditModal__save{
  min-width: 160px;
  min-height: 48px;
  padding: 0 18px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-decoration: none;
}

.setEditModal__upload{
  background: #e9edf5;
  color: #465563;
}

.setEditModal__reset{
  background: #eef1f7;
  color: #6b7280;
}

.setEditModal__actionsBottom{
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-bottom: 4px;
}

.setEditModal__cancel{
  background: #d7dbe1;
  color: #495867;
}

.setEditModal__save{
  background: #004b6e;
  color: #fff;
}


@media (max-width: 760px){
  .setEditModal{
    overflow-y: auto;
  }

  .setEditModal__dialog{
    width: calc(100vw - 12px);
    max-height: none;
    min-height: calc(100vh - 12px);
    margin: 6px auto;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .setEditModal__imageWrap{
    min-height: 220px;
    border-right: none;
    border-bottom: 1px solid #d9e0ea;
  }

  .setEditModal__body{
    padding: 22px 16px 24px;
  }

  .setEditModal__title{
    font-size: 22px;
    padding-right: 54px;
  }

  .setEditModal__actionsBottom{
    flex-direction: column;
    gap: 12px;
    padding-bottom: 12px;
  }

  .setEditModal__cancel,
  .setEditModal__save,
  .setEditModal__upload,
  .setEditModal__reset{
    width: 100%;
  }
}

.screen-cards__card{
	position:relative;
}

.screen-cards__card-link{
	display:block;
	text-decoration:none;
	color:inherit;
}

.screen-cards__card-controls{
	position:absolute;
	top:5px;
	right:5px;
	z-index:3;
}


.modal-box{
  position: relative;
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #f3f3f3;
  border-radius: 34px;
  box-shadow: 0 20px 60px rgba(0,0,0,.16);
  box-sizing: border-box;
}

.promptModal--image{
  max-width: 100%;
  padding: 38px 38px 32px;
}

.promptModal--image .promptModal-title{
  margin: 0 0 26px;
  padding-right: 56px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.promptModal-imageCard{
  width: 100%;
  margin-bottom: 20px;
  border-radius: 26px;
  overflow: hidden;
  background: #e7ecef;
}

.promptModal-imagePreview{
  display: block;
  width: 100%;
  height: 330px;
  object-fit: contain;
  background: #e7ecef;
}

.promptModal-imageActions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}

.promptModal-upload-label--half{
  width: 100%;
}

.promptModal-button--half{
  width: 100%;
  min-width: 0;
}

.promptModal-button--primary{
  background: #004b6e;
  color: #fff;
}

.promptModal-button--secondary{
  background: #e8e8e8;
  color: #222;
}

.promptModal--image .promptModal-upload-button,
.promptModal--image .promptModal-button--half{
  min-height: 72px;
  border-radius: 18px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}

.promptModal--image .promptModal-fileName{
  margin: 8px 0 0;
  min-height: 20px;
  font-size: 14px;
  color: #666;
}

.promptModal--image .promptModal-buttons{
  gap: 14px;
  margin-top: 22px;
}

.promptModal--image .promptModal-button{
  min-height: 72px;
  border-radius: 18px;
  font-size: 20px;
}

@media (max-width: 1024px){
  .modal-box{
    width: min(760px, calc(100vw - 24px));
    border-radius: 26px;
  }

  .promptModal--image{
    padding: 24px 20px 20px;
  }

  .promptModal--image .promptModal-title{
    font-size: 28px;
    margin-bottom: 18px;
    padding-right: 44px;
  }

  .promptModal-imagePreview{
    height: 260px;
  }

  .promptModal-imageActions{
    gap: 12px;
  }

  .promptModal--image .promptModal-upload-button,
  .promptModal--image .promptModal-button--half,
  .promptModal--image .promptModal-button{
    min-height: 60px;
    border-radius: 16px;
    font-size: 18px;
  }
}

@media (max-width: 640px){
  .modal-overlay{
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
  }

  .modal-box{
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .promptModal--image{
    min-height: 100vh;
    padding: 22px 16px 24px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }

  .promptModal--image .promptModal-title{
    font-size: 22px;
    line-height: 1.15;
    margin: 0 0 18px;
    padding-right: 52px;
  }

  .promptModal__x{
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .promptModal-imageCard{
    border-radius: 0;
    background: #eef2f6;
  }

  .promptModal-imagePreview{
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: #eef2f6;
  }

  .promptModal-imageActions{
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 0;
  }

  .promptModal--image .promptModal-upload-button,
  .promptModal--image .promptModal-button--half,
  .promptModal--image .promptModal-button{
    min-height: 56px;
    border-radius: 16px;
    font-size: 16px;
    padding: 12px 14px;
  }

  .promptModal--image .promptModal-fileName{
    display: none;
  }

  .promptModal--image .promptModal-buttons{
    gap: 12px;
    margin-top: 12px;
  }
}

.promptModal--confirm{
  padding: 28px 24px 24px;
  max-width: 100%;
  text-align: center;
}

.promptModal-title--confirm{
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.15;
}

.promptModal-text{
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.45;
  color: #4b5563;
  text-align: left;
}

.promptModal-buttons--confirm{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.promptModal-button--danger{
  background: #0d567a;
  color: #fff;
}

@media (max-width: 640px){
  .promptModal--confirm{
    padding: 20px 16px 16px;
  }

  .promptModal-title--confirm{
    font-size: 22px;
  }

  .promptModal-text{
    font-size: 16px;
    margin-bottom: 16px;
  }

  .promptModal-buttons--confirm{
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}


.promptModal--editCard{
  position: relative;
  padding: 28px 28px 24px;
  max-width: 100%;
}

.promptModal-title--editCard{
  margin: 0 0 20px;
  padding-right: 52px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.promptModal-field--editCard{
  margin-bottom: 14px;
}

.promptModal-field--editCard label{
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  color: #5f6368;
}

.promptModal--editCard .promptModal-input{
  width: 100%;
  min-height: 64px;
  padding: 0 20px;
  border: 1px solid #d6d9dd;
  border-radius: 14px;
  font-size: 18px;
  line-height: 1.2;
  color: #222;
  background: #fff;
  box-sizing: border-box;
}

.promptModal-buttons--editCard{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}

.promptModal-button--primary{
  background: #004b6e;
  color: #fff;
}

.promptModal-button--secondary{
  background: #efefef;
  color: #222;
}

.promptModal--editCard .promptModal-button{
  min-height: 64px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 640px){
  .promptModal--editCard{
    padding: 18px 16px 18px;
    min-height: 100vh;
    box-sizing: border-box;
  }

  .promptModal-title--editCard{
    margin: 0 0 16px;
    padding-right: 42px;
    font-size: 22px;
    line-height: 1.15;
  }

  .promptModal--editCard .promptModal__x{
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    font-size: 28px;
  }

  .promptModal-field--editCard{
    margin-bottom: 12px;
  }

  .promptModal-field--editCard label{
    margin-bottom: 6px;
    font-size: 15px;
  }

  .promptModal--editCard .promptModal-input{
    min-height: 56px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 16px;
  }

  .promptModal-buttons--editCard{
    gap: 12px;
    margin-top: 18px;
  }

  .promptModal--editCard .promptModal-button{
    min-height: 56px;
    border-radius: 14px;
    font-size: 16px;
  }
}

/* === controls container === */
.screen-cards__card-controls{
  position: absolute;
  top: 10px;
  right: 10px;

  display: flex;
  gap: 8px;
}

/* === каждая кнопка === */
.screen-cards__card-cards-control,
.screen-cards__card-edit-control,
.screen-cards__card-remove-control{
  width: 36px;
  height: 36px;

  padding: 8px;
  box-sizing: border-box;

  background: rgba(255,255,255,0.9);
  border-radius: 10px;

  backdrop-filter: blur(4px);

  cursor: pointer;
  transition: all .2s ease;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* === hover эффект === */
.screen-cards__card-cards-control:hover,
.screen-cards__card-edit-control:hover,
.screen-cards__card-remove-control:hover{
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* === сами SVG внутри === */
.screen-cards__card-controls img{
  width: 20%;
  height: 100%;
  object-fit: contain;
}

.removeSetConfirmModal{
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
  max-width: calc(100vw - 32px) !important;
  overflow: visible !important;
}

.removeSetConfirmModal .modal-window__content{
  background: transparent !important;
  padding: 0 !important;
  overflow: visible !important;
}

.removeSetConfirmModal .modal-window__close{
  display: none !important;
}

.removeSetConfirm{
  position: relative;
  width: min(560px, calc(100vw - 32px));
  margin: 0 auto;
  box-sizing: border-box;
}

.removeSetConfirm__content{
  position: relative;
  background: #f4f6fb;
  border-radius: 24px;
  padding: 28px 24px 24px;
  text-align: center;
  box-sizing: border-box;
}

.removeSetConfirm__close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: #eef2f6;
  color: #4b5563;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.removeSetConfirm__title{
  margin: 0 0 12px;
  padding-right: 36px;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
  color: #111827;
}

.removeSetConfirm__text{
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.5;
  color: #5b6472;
}

.removeSetConfirm__actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.removeSetConfirm__btn{
  width: 100%;
  min-width: 0;
  min-height: 56px;
  border: none;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-sizing: border-box;
}

.removeSetConfirm__btn--danger{
  background: #004b6e;
  color: #fff;
}

.removeSetConfirm__btn--light{
  background: #ececec;
  color: #222;
}

@media (max-width: 640px){
  .removeSetConfirm{
    width: calc(100vw - 20px);
  }

  .removeSetConfirm__content{
    padding: 20px 14px 14px;
    border-radius: 18px;
  }

  .removeSetConfirm__title{
    font-size: 24px;
    padding-right: 32px;
  }

  .removeSetConfirm__text{
    font-size: 16px;
    margin-bottom: 16px;
  }

  .removeSetConfirm__actions{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .removeSetConfirm__btn{
    min-height: 52px;
    font-size: 16px;
    border-radius: 14px;
  }
}

.modal-window__modal {
	max-width: 100% !important;
}


.theme-title{
  margin: 60px 0 30px 0px;
  text-align: center;
  font-size: 24px;
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #000;
}

.theme-title__subtext{
  margin: 90px auto 0;
  max-width: 760px;
  min-height: 200px;
  text-align: center;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 400;
  color: #6a7280;
}

.form{
  position: relative;
  width: min(1240px, calc(100vw - 48px));
  max-width: none;
  margin: 0 auto 90px auto;
  padding: 34px 34px 32px;
  border: 1px solid #dbe1ea;
  border-radius: 34px;
  background: #f4f6fb;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .06);
  box-sizing: border-box;
}

.form__group{
  display: inline-block;
  vertical-align: top;
  width: calc(50% - 12px);
  margin: 0 24px 24px 0;
  padding: 26px 24px 22px;
  border: 1px solid #dbe1ea;
  border-radius: 28px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .04);
}

.form__group:nth-of-type(2n){
  margin-right: 0;
}

.form__group--hidden{
  display: none;
}

.form__field{
  position: relative;
  margin: 0 0 20px;
  padding: 0;
  border: none;
  text-align: left;
}

.form_topic{
  width: 100% !important;
}

.form__input{
  width: 100%;
  height: 74px;
  padding: 20px 22px 0;
  border: 2px solid #d7dde7;
  border-radius: 22px;
  background: #fff;
  font-size: 22px;
  line-height: 1.2;
  color: #1f2937;
  box-sizing: border-box;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.form__input:focus{
  outline: none;
  border-color: #0b5177;
  box-shadow: 0 0 0 4px rgba(11, 81, 119, .08);
}

.form__label{
  position: absolute;
  top: 12px;
  left: 16px;
  padding: 0 8px;
  margin: 0;
  background: #fff;
  border-radius: 999px;
  color: #667085;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
  pointer-events: none;
}

.form__input:placeholder-shown{
  color: #1f2937;
  border-color: #d7dde7;
}

.form__input:focus + .form__label{
  color: #0b5177;
}

.form__hint{
  margin: 6px 0 0;
  padding: 0 4px;
  font-size: 15px;
  line-height: 1.45;
  color: #6a7280;
}

.form__hint--set-hint{
  margin: 2px 0 22px;
}

.form__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 49%;
  height: 74px;
  margin: 22px auto 0;
  padding: 0 28px;
  border: none;
  border-radius: 22px;
  background: #0b5177;
  color: #fff;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 700;
  cursor: pointer;
  box-shadow: none;
  transition: transform .18s ease, opacity .18s ease, background-color .18s ease;
}

.form__button:hover{
  background: #0d5c87;
  opacity: 1;
  transform: translateY(-1px);
}

.form__button:focus{
  outline: none;
  background: #0d5c87;
}

.form__button--add-card{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 49%;
  height: 74px;
  margin: 6px 10px 0 0;
  padding: 0 28px;
  border-radius: 20px;
  background: #e6eef3;
  color: #0f4d73;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 700;
  position: static;
  border: 2px solid #000;
}

.form__button--add-card::after{
  display: none;
}

.form__button--add-card:hover,
.form__button--add-card:focus{
  background: #dce8ef;
  color: #0b4565;
}

.form__button--remove-card{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 58px;
  margin: 8px 0 0 auto;
  padding: 0 18px;
  border-radius: 18px;
  background: #f4e7e7;
  color: #b94b4b;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 700;
}

.form__button--remove-card::after{
  display: none;
}

.form__button--remove-card:hover,
.form__button--remove-card:focus{
  background: #f0dcdc;
  color: #a53e3e;
}

.hidden_iframe{
  display: none;
}

.loader{
  margin-top: 18px;
  font-size: 18px;
  text-align: center;
  color: #5d6b7c;
}

@media screen and (max-width: 1100px){
  .theme-title{
    font-size: 44px;
    margin-bottom: 22px;
  }

  .theme-title__subtext{
    max-width: 680px;
    font-size: 18px;
  }

  .form{
    width: calc(100vw - 28px);
    padding: 24px 20px 24px;
    border-radius: 26px;
  }

  .form__group{
    width: calc(50% - 8px);
    margin: 0 16px 16px 0;
    padding: 20px 18px 18px;
    border-radius: 22px;
  }

  .form__input{
    height: 64px;
    padding: 18px 18px 0;
    border-radius: 18px;
    font-size: 18px;
  }

  .form__label{
    top: 10px;
    left: 14px;
    font-size: 14px;
  }

  .form__button--remove-card{
    min-width: 190px;
    height: 52px;
    border-radius: 16px;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px){
  .theme-title{
    font-size: 32px;
    line-height: 1.08;
    margin-bottom: 18px;
  }

  .theme-title__subtext{
    max-width: 320px;
    font-size: 16px;
    line-height: 1.45;
  }

  .form{
    width: calc(100vw - 18px);
    padding: 18px 14px 18px;
    border-radius: 22px;
  }

  .form__group{
    width: 100%;
    margin: 0 0 14px;
    padding: 16px 14px 14px;
    border-radius: 18px;
  }

  .form__field{
    margin-bottom: 14px;
  }

  .form__input{
    height: 58px;
    padding: 16px 14px 0;
    border-radius: 16px;
    font-size: 16px;
  }

  .form__label{
    top: 9px;
    left: 10px;
    font-size: 13px;
    padding: 0 6px;
  }

  .form__hint{
    font-size: 13px;
  }

  .form__button{
    width: 100%;
    min-width: 0;
    height: 58px;
    border-radius: 16px;
    font-size: 18px;
  }

  .form__button--add-card{
    width: 100%;
    height: 54px;
    margin-top: 4px;
    font-size: 17px;
  }

  .form__button--remove-card{
    width: 100%;
    min-width: 0;
    height: 50px;
    margin-top: 6px;
    font-size: 16px;
  }
}

.form__field--image{
  margin-bottom: 18px;
}

.form__input--file{
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.form__field--image .form__label{
  position: static;
  display: block;
  margin: 0 0 12px;
  padding: 0;
  background: transparent;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
  color: #667085;
}

.form__fileButton{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  border-radius: 18px;
  background: #e6eef3;
  color: #0f4d73;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  margin-bottom: 14px;
  transition: background-color .2s ease, transform .2s ease;
}

.form__fileButton:hover{
  background: #dce8ef;
  transform: translateY(-1px);
}

.form__previewWrap{
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #eef2f5;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form__preview{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width: 767px){
  .form__field--image .form__label{
    font-size: 16px;
    margin-bottom: 10px;
  }

  .form__fileButton{
    min-height: 56px;
    border-radius: 16px;
    font-size: 16px;
    margin-bottom: 12px;
  }

  .form__previewWrap{
    border-radius: 16px;
  }
}

.createSuccessModal{
  position: fixed;
  inset: 0;
  z-index: 6000;
  display: none;
}

.createSuccessModal.is-open{
  display: block;
}

.createSuccessModal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.34);
}

.createSuccessModal__dialog{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100vw - 24px));
  padding: 28px 24px 24px;
  background: #f5f5f5;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
  box-sizing: border-box;
}

.createSuccessModal__close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  color: #555;
  cursor: pointer;
}

.createSuccessModal__title{
  margin: 0 40px 12px 0;
  font-size: 32px;
  line-height: 1.08;
  font-weight: 800;
  color: #000;
}

.createSuccessModal__text{
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.45;
  color: #4b5563;
}

.createSuccessModal__actions{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.createSuccessModal__btn{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: none;
  border-radius: 18px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}

.createSuccessModal__btn--primary{
  background: #0b5177;
  color: #fff;
}

.createSuccessModal__btn--secondary{
  background: #ececec;
  color: #222;
}

/*body.createSuccessModal-open{
  overflow: hidden;
}*/

.screen-cards{
	margin-top:20px;
	margin-bottom: 130px;
}

.screen-cards__topActions{
	margin-bottom:30px;
	display: none;
}

.screen-cards__grid{
	display:grid;
	grid-template-columns:repeat(3, minmax(0, 1fr));
	gap: 26px 18px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.screen-cards__card--module{
	position:relative;
	width:100%;
	max-width:none;
	margin:0;
	display:block;
	background:transparent;
	border-radius:0;
}

.screen-cards__card-link{
	display:block;
	text-decoration:none;
	color:inherit;
}

.screen-cards__module-cover{
	position:relative;
	border-radius:0;
	overflow:hidden;
	background:#62d0c6;
	min-height:210px;
}

.screen-cards__module-coverImg{
	display:block;
	width:100%;
	height:210px;
	object-fit:cover;
}

.screen-cards__module-overlay{
	position:absolute;
	inset:0;
	padding:24px 32px;
	display:flex;
	flex-direction:column;
	align-items:flex-start;
	justify-content:flex-start;
	pointer-events:none;
}

.screen-cards__module-topText{
	font-size:12px;
	line-height:1.2;
	font-weight:300;
	letter-spacing:.02em;
	color:#fff;
	text-transform:uppercase;
	margin-bottom:6px;
}

.screen-cards__module-number{
	font-size:20px;
	line-height:1;
	font-weight:800;
	letter-spacing:.01em;
	color:#fff;
	text-transform:uppercase;
}

.screen-cards__module-circle{
	position:absolute;
	right:26px;
	bottom:18px;
	width:84px;
	height:84px;
	border-radius:50%;
	background:#f5f5f5;
	display:flex;
	align-items:center;
	justify-content:center;
	overflow:hidden;
	box-shadow:0 4px 18px rgba(0,0,0,.12);
}

.screen-cards__module-circleImg{
	width:100%;
	height:100%;
	object-fit:cover;
	border-radius:50%;
	position:static;
	transform:none;
	max-width:none;
	max-height:none;
	padding:0;
	margin:0;
}

.screen-cards__module-bottom{
	display:flex;
	align-items:flex-start;
	justify-content:space-between;
	gap:18px;
	padding:22px;
	background-color: #fff;
}

.screen-cards__card-title{
	margin:0;
	font-size:18px;
	line-height:1.5;
	font-weight:300;
	color:#111;
	max-width:calc(100% - 72px);
	width:auto;
	text-align:left;
	padding-bottom:0;
}

.screen-cards__module-actions{
	position:relative;
	flex:0 0 auto;
}

.screen-cards__module-menuBtn{
	width:48px;
	height:48px;
	border:0;
	background:transparent;
	padding:0;
	display:flex;
	align-items:center;
	justify-content:center;
	cursor:pointer;
}

.screen-cards__module-menuBtn img{
	width:40px;
	height:40px;
	display:block;
	object-fit:contain;
}

.screen-cards__module-menu{
	position:absolute;
	top:56px;
	right:0;
	min-width:220px;
	padding:10px;
	border-radius:16px;
	background:#fff;
	box-shadow:0 14px 30px rgba(0,0,0,.12);
	display:none;
	z-index:20;
}

.screen-cards__module-menu.is-open{
	display:block;
}

.screen-cards__module-menuItem{
	width:100%;
	border:0;
	background:#fff;
	text-align:left;
	padding:12px 14px;
	border-radius:12px;
	font-size:15px;
	line-height:1.3;
	font-weight:500;
	cursor:pointer;
}

.screen-cards__module-menuItem:hover{
	background:#f4f6fb;
}

.screen-cards__module-menuItem--danger{
	color:#d43c3c;
}

@media (max-width: 1100px){
	.screen-cards__grid{
		grid-template-columns:repeat(2, minmax(0, 1fr));
		gap:28px 28px;
	}
}

@media (max-width: 767px){
	.screen-cards__grid{
		grid-template-columns:1fr;
		gap:24px;
	}

	.screen-cards__module-cover,
	.screen-cards__module-coverImg{
		height:180px;
		min-height:180px;
	}

	.screen-cards__module-overlay{
		padding:20px 20px;
	}

	.screen-cards__module-topText{
		font-size:14px;
	}

	.screen-cards__module-number{
		font-size:34px;
	}

	.screen-cards__module-circle{
		width:74px;
		height:74px;
		right:18px;
		bottom:14px;
	}

	.screen-cards__module-bottom{
		padding-top:16px;
	}

	.screen-cards__card-title{
		font-size:20px;
		line-height:1.4;
	}
}