.goko-mccp {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: grid;
	place-items: center;
	padding: 18px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.goko-mccp.is-open {
	opacity: 1;
	pointer-events: auto;
}

.goko-mccp[hidden],
.goko-mccp [hidden],
.goko-mccp-tab-wrap[hidden] {
	display: none !important;
}

.goko-mccp__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.62);
}

.goko-mccp__dialog {
	position: relative;
	display: grid;
	grid-template-columns: minmax(280px, 40%) minmax(420px, 60%);
	width: min(94vw, 960px);
	min-height: 520px;
	overflow: hidden;
	border-radius: 10px;
	background: #ffffff;
	color: #080808;
	box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32);
	transform: translateY(14px);
	transition: transform 0.2s ease;
}

.goko-mccp.is-open .goko-mccp__dialog {
	transform: translateY(0);
}

.goko-mccp__close {
	position: absolute;
    top: 0px;
    right: 8px;
    z-index: 3;
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    color: #555668;
    font-size: 30px;
    font-weight: 400;
    line-height: 0.72;
    cursor: pointer;
}
button.goko-mccp__close:hover,button.goko-mccp__close:active,button.goko-mccp__close:focus{
	background: transparent;
    color: #000;
}

.goko-mccp__media {
	min-height: 520px;
	background-color: #d9edf7;
	background-image: linear-gradient(180deg, #cdeeff 0%, #f3fbff 44%, #79b443 45%, #3e8a27 100%);
	background-position: center;
	background-size: cover;
}

.goko-mccp__content {
	display: grid;
	align-items: center;
	padding: 64px 64px 46px;
}

.goko-mccp__panel {
	width: 100%;
}

.goko-mccp h2 {
	margin: 0 0 28px;
    color: #050505;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0;
    text-align: center;
}

.goko-mccp__form {
	display: grid;
	gap: 22px;
}

.goko-mccp__field {
	display: block;
	margin: 0;
}

.goko-mccp__form input {
	width: 100%;
    height: 45px;
    border: 1px solid #d6d8e3;
    border-radius: 9px;
    padding: 0 20px;
    background: transparent;
    color: #111827;
    font-size: 18px;
    line-height: 1;
    box-shadow: none;
	margin-bottom: -1px;
}

.goko-mccp__form input::placeholder {
	color: #9aa3ad;
}

.goko-mccp__form input:focus {
	border-color: #00a0e9;
	
}

.goko-mccp__phone {
	position: relative;
	display: grid;
	grid-template-columns: 132px 1fr;
	height: 45px;
	border: 1px solid #cbd5e1;
	border-radius: 9px;
	background: #ffffff;
}

.goko-mccp__phone-country {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	border: 0;
	border-right: 1px solid #cbd5e1;
	border-radius: 9px 0 0 9px;
	background: #ffffff;
	color: #111827;
	font-size: 18px;
	cursor: pointer;
	line-height: 24px;
	padding: 9px 24px 8px 15px;
    border-bottom: 1px solid #cbd5e1;
}

.goko-mccp__phone-country span.country-flag{
	width: 26px;
}
button.goko-mccp__phone-country:hover,button.goko-mccp__phone-country:active,button.goko-mccp__phone-country:focus{
	background: transparent;

}

.goko-mccp__phone-country [data-goko-country-dial] {
	color: #64748b;
	font-size: 18px;
}

.goko-mccp__phone-caret {
	width: 10px;
	height: 10px;
	border-right: 2px solid #111827;
	border-bottom: 2px solid #111827;
	transform: rotate(45deg) translateY(-3px);
}

.goko-mccp__phone input {
	height: 45px;
	border: 0;
	border-radius: 18px;
	font-size: 18px;
}

.goko-mccp__country-menu {
	position: absolute;
	left: 0;
	top: calc(100% + 8px);
	z-index: 5;
	width: min(448px, 92vw);
	max-height: 246px;
	overflow: auto;
	border: 1px solid #d6d8e3;
	border-radius: 9px;
	background: #ffffff;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}

.goko-mccp__country-search {
	display: grid;
	grid-template-columns: 44px 1fr;
	align-items: center;
	margin: 16px;
	border: 1px solid #cbd5e1;
	border-radius: 9px;
	color: #111827;
}

.goko-mccp__country-search span {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
    margin-top: -6px;
}

.goko-mccp__country-search input {
	height: 36px;
    border: 0; 
    padding: 0 10px 0 2px;
    font-size: 16px;
}

.goko-mccp__country-list {
	min-height: 225px;
    overflow-y: auto;
    padding: 0 0 8px;
}

.goko-mccp__country-option {
	display: grid;
    grid-template-columns: 26px 1fr auto;
    align-items: center;
    width: 100%;
    min-height: 45px;
    border: 0;
    padding: 8px 18px;
    background: #ffffff;
    color: #111827;
    text-align: left;
    cursor: pointer;
}

.goko-mccp__country-option:hover,
.goko-mccp__country-option:focus,
.goko-mccp__country-option em:hover,
.goko-mccp__country-option em:focus {
	background: #342a2a;
	color: #fff;
}


.goko-mccp__country-option strong {
	font-size: 16px;
    font-weight: 400;
	padding-left: 7px;
}

.goko-mccp__country-option em {
	color: #64748b;
	font-size: 18px;
	font-style: normal;
}

.goko-mccp__form button[type="submit"],
.goko-mccp__shop {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 45px;
    border: 0;
    border-radius: 9px;
    padding: 10px 22px;
    background: #00a0e9;
    color: #ffffff;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
	background: linear-gradient(90deg, #68D0FF 0%, #0079FF 33%, #000000 100%);
}

.goko-mccp__form button[type="submit"]:hover,
.goko-mccp__form button[type="submit"]:active,
.goko-mccp__shop:hover,
.goko-mccp__shop:active,
.goko-mccp-tab:hover,
.goko-mccp-tab:active {
	background: #000000;
	color: #ffffff;
}
button.goko-mccp__no-thanks:hover,button.goko-mccp__no-thanks:active{
	background: transparent;
    color: #1f5cff;
}

.goko-mccp__form button[type="submit"]:disabled {
	cursor: wait;
	opacity: 0.68;
}

.goko-mccp__no-thanks {
	border: 0;
    background: transparent;
    color: #1f5cff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
	background: linear-gradient(90deg, #68D0FF 0%, #0079FF 25%, #000000 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.goko-mccp__legal,
.goko-mccp__message {
	margin: -2px 0 0;
    color: #7c7171;
    font-size: 17px;
    line-height: 1.45;
    text-align: center;
    font-weight: 300;
}

.goko-mccp__message.is-error {
	color: #b91c1c;
}

.goko-mccp__hp {
	position: absolute;
	left: -9999px;
	opacity: 0;
}

.goko-mccp__panel--success h2 {
	margin-bottom: 16px;
	font-size: 40px;
	line-height: 1.15;
}

.goko-mccp__success-lead {
	margin: 0 0 30px;
	color: #111111;
	font-size: 28px;
	line-height: 1.25;
	text-align: center;
}

.goko-mccp__coupon-row {
	display: grid;
	grid-template-columns: 1fr 74px;
	height: 50px;
	overflow: hidden;
	border: 1px solid #d6d8e3;
	border-radius: 9px;
	margin-bottom: 32px;
	background: #ffffff;
}

.goko-mccp__coupon-row input {
	width: 100%;
	border: 0;
	padding: 0 22px;
	color: #111827;
	font-size: 26px;
	letter-spacing: 0.06em;
}

.goko-mccp__coupon-row button {
	border: 0;
	background: #ffffff;
	color: #6f7083;
	font-size: 36px;
	cursor: pointer;
}

.goko-mccp__limit {
	margin: 22px 0 0;
	color: #5f6368;
	font-size: 17px;
	line-height: 1.35;
	text-align: center;
}

.goko-mccp-tab-wrap {
	position: fixed;
	left: 0;
	top: 50%;
	z-index: 99990;
	transform: translateY(-50%);
}

.goko-mccp-tab {
	display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    min-height: 200px;
    border: 0;
    background: #000;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.15;
    cursor: pointer;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    padding: 5px 8px 5px 8px
}

.goko-mccp-tab span {
	display: block;
	writing-mode: vertical-rl;
	text-orientation: mixed;
}

.goko-mccp-tab-close {
	position: absolute;
    top: -18px;
    right: -10px;
    z-index: 2;
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 0.8;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    padding: 0;
}

.goko-mccp .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

@media (max-width: 767px) {
	.goko-mccp__dialog {
		grid-template-columns: 1fr;
		width: min(90vw, 520px);
		min-height: 0;
	}

	.goko-mccp__media {
		display: none;
	}

	.goko-mccp__content {
		padding: 62px 28px 18px;
	}
	.goko-mccp__country-search span{
		font-size: 28px;
	}

	.goko-mccp h2 {
		font-size: 24px;
	}
	.goko-mccp__success-lead{
		font-size: 24px;
		margin: 0 0 26px;
	}

	.goko-mccp__panel--success h2 {
		font-size: 28px;
	}
	.goko-mccp__coupon-row input{
		font-size: 24px;
		letter-spacing: normal;
		padding: 0 22px;
		padding-bottom: 2px;
	}
	.goko-mccp__coupon-row button{
		font-size: 32px;
	}
	.goko-mccp__country-menu{
		width: min(448px, 81vw);
	}
	.goko-mccp__phone-country{
		border-bottom: 1px solid #cbd5e1;
	}

	.goko-mccp__form input,
	.goko-mccp__phone,
	.goko-mccp__form button[type="submit"],
	.goko-mccp__shop { 
		margin-bottom: -1px;
        font-size: 18px;
	}
	.goko-mccp__phone-country span.country-flag{
		width: 24px;
	}

	.goko-mccp__close{
		top: -3px;
        right: 14px;
		font-size: 29px;
	}
	.goko-mccp-tab-close{
		width: 20px;
        height: 20px;
	}

	.goko-mccp__phone {
		grid-template-columns: 118px 1fr;
	}

	.goko-mccp__no-thanks {
		font-size: 18px;
        padding: 6px 18px 4px 18px;
	}

	.goko-mccp__legal {
		font-size: 16px;
		margin: -8px 0 0;
	}

	.goko-mccp-tab {
		width: 26px;
        min-height: 183px;
        font-size: 13px;
        padding: 3px 12px 3px 12px;
	}
}