/* цвета */

:root {
	--backtext:#f5f5f5;
	--button: #EBA900;
	--buttontext: #fff;
}

/* цвета */

.button.orange {
    color: var(--buttontext);
    background: var(--button);
}

.form1 {
    padding: 36px;
    position: relative;
    background: #464646;
    border-radius: 0px 10px 10px 10px;
    left: -20px;
    top: 0px;
	margin-bottom: 50px;
    /* display: none !important; */
}

.form1>p
{
	margin: 0px;
	padding: 0.5em 0;
	color: #fff;
}

.form1 input[name="country"]
{
padding: 10px 20px;
    width: 100%;
    border-radius: 0px 10px 0px 0px;
    border: 1px solid #777;
}

.variants
{
	padding: 2% 0%;
/*	height: 300px;*/
}

.variants a.country
{
	min-height: 100px;
	padding-top: 0px;
	margin-top: 0px;
}

.variants .slick-list {
    padding: 10px 0;
}

/* карточки стран */
a.country
{
	text-decoration: none;
}

div.country
{
    display: flex;
    cursor: pointer;
    position: relative;
    border-radius: 22px;
    transition: 0.2s;
	 border-radius: 30px;

        box-sizing: border-box;
        width: clamp(141px, 7vw, 178px);
        height: clamp(260px, 20vw, 300px);
        border-radius: 4px;
        clip-path: polygon(0% 0%, 79% 0%, 100% 11.67%, 100% 100%, 0% 100%);
	font-size: 14px;
	text-decoration: none;
	color: #000;
	margin: 12px auto;
}

a.country.selected>div.country,
div.country:hover 
{
            transform: scale(1.1);
            padding: 2px;
            background: linear-gradient(to right, rgb(235, 169, 0), rgb(255, 211, 100));
}

div.country>div.inner
{
	padding: 18px;
        border-radius: 28px;
	background-color: rgb(245, 245, 245);
	background: hsla(0, 0%, 100%, .01);
	background: linear-gradient(to right, rgb(235, 235, 235), rgb(245, 245, 245));
    color: rgb(29, 32, 35);
    box-shadow: none;
    overflow: hidden;
    display: flex;
    cursor: pointer;
    -webkit-box-align: center;
    align-items: center;
    gap: 12px;
    position: relative;
    border-radius: 3px;
    padding: 10px 20px;
    transition: transform 0.2s;
    width: 100%;

-webkit-box-pack: justify;
        justify-content: space-between;
        flex-direction: column;
        width: 100%;
        height: 100%;
        clip-path: polygon(0% 0%, 79% 0%, 100% 11.67%, 100% 100%, 0% 100%);
}

div.country .top
{
    color: rgb(29, 32, 35);
    box-shadow: none;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    background-color: rgb(235 169 0 / 13%);
    width: fit-content;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    padding: 3px 8px;
	font-size: 70%;
    gap: 2px;
    border-radius: 4px;
    clip-path: polygon(0% 0%, 89% 0%, 100% 29.67%, 100% 100%, 0% 100%);
}

.country .image
{
    position: relative;
    overflow: hidden;
    width: auto;
    height: auto;
    border-radius: 12px;
/*    border: 0.5px solid rgba(188, 195, 208, 0.5);		

	width: 100%;*/
//        aspect-ratio: 1 / 1;

	border-radius: 4px;
	max-width: 100px;
	max-height: 50px;
}

.country .image img
{
	width: 100%;
    height: 100%;
    object-fit: contain;
}


.country .priceforgb .price
{
	font-size: 90%;
}

.country .priceforgb .forgb
{
	font-size: 115%;
	font-weight: bold;
}

.country .name
{
	font-weight: bold;
	min-height: 5em;
}

.countrybanner
{
	min-height: 40vh;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
/*	background-attachment: fixed;*/
	display: flex;
	flex-wrap: wrap;
	align-items: anchor-center;
	padding: 32px 0px;
}

.countrybanner.flag
{
	background: linear-gradient(to right, rgb(235, 235, 235), rgb(245, 245, 245)) !important;
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	position: relative;
}

.countrybanner h1,
.countrybanner h2
{
	text-align: left;
    margin: 1em;
    padding: 1em;
    background: #fffd;
    clip-path: polygon(0% 0%, calc(100% - 20px) 0%, 100% 20px, 100% 100%, 0% 100%);
	font-weight: 400;
    text-transform: none;	
}

.countrybanner h2
{
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.countrybanner h2 img
{
	height: 60px;
}

.countrybanner h2 span
{
	font-size: 20px;
}

.countrybanner.flag .back
{
	display: block;
	margin: 0px;
	width: 100%;
	height: 100%;
	position: absolute;
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	opacity: 0.05;
}

.countrybanner.flag h1
{
	z-index:1;
}

/* тарифы */
.tarifs,
.variantsfixed
{
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: space-around;
	padding: 12px;
}

.tarif
{
	width: 200px;
	padding: 18px;
        border-radius: 28px;
	background-color: rgb(245, 245, 245);
	background: hsla(0, 0%, 100%, .01);
	background: linear-gradient(to right, rgb(235, 235, 235), rgb(245, 245, 245));
	color: rgb(29, 32, 35);
    box-shadow: none;
    overflow: hidden;
    display: flex;
    cursor: pointer;
    -webkit-box-align: center;
    align-items: center;
    gap: 12px;
    position: relative;
    border-radius: 3px;
    padding: 10px 20px;
    transition: transform 0.2s;

-webkit-box-pack: justify;
        justify-content: space-between;
        flex-direction: column;
        height: auto;
        clip-path: polygon(0% 0%, 79% 0%, 100% 11.67%, 100% 100%, 0% 100%);

}

.tarif .gb,
.tarif .days,
.tarif .price,
.tarif .priceforgb
{
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	width: 100%;
}

.tarif .gb div:first-child,
.tarif .days div:first-child,
.tarif .price div:first-child,
.tarif .priceforgb div:first-child
{
	text-align: left;
	width: 60%;
}

.tarif .gb div:last-child,
.tarif .days div:last-child,
.tarif .price div:last-child,
.tarif .priceforgb div:last-child
{
	text-align: right;
	font-weight: bold;
	width: 40%;
}

.tarif .priceforgb
{
	font-size: 80%;
}
.tarif .priceforgb div:last-child
{
	font-weight: normal;
}

.tarif .image
{
	width: 100%;
	height: 60px;
}

.tarif .image img
{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.tarifs .tarif .countrytext
{
	display: none;
}


.variantsfixed .tarif .buy
{
	display: none;
}
/* текст */

.infotext,
.textinfo
{
	width: 90%;
	margin: 5%;
	padding: 20px;
	background-color: var(--backtext);
        clip-path: polygon(0% 0%, calc(100% - 20px) 0%, 100% 20px, 100% 100%, 0% 100%);
	color: #000;
}

.infotext.error,
.textinfo.error
{
	color: red;
}

.textinfo.left,
.infotext.left
{
	text-align: left;
}

.textinfo.left ul,
.infotext.left ul
{
	padding-left: 25px;
}

.infotext .button,
.textinfo .button
{
	display: inline-block;
}

.infotext ul,
.textinfo ul
{
	display: inline-block;
	text-align: left;
}

.infotext h3,
.textinfo h3
{
	padding: 0.5em 0em;
}
/* форма покупки */
.gtform
{
	margin: 0px auto;
	max-width: 100%;
/*	display: flex;
	flex-wrap: wrap;
	gap: 12px;*/
}

.gtform div.col
{
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: space-between;
	flex-direction: column;
	width: 400px;
	max-width: 100%;
	margin: 0px auto 24px;
}

.gtform div.col label
{

}

.gtform input[type="submit"]
{
	width: 240px;
	margin: 0px auto;
    font-size: 20px;
    font-weight: normal;
    border: 1px solid white;
    height: 50px;
}

.gtform input, .gtform textarea, .gtform select {
    display: block;
    width: 100%;
    clear: both;
    border: none;
	
    padding: 10px;
        clip-path: polygon(0% 0%, calc(100% - 10px) 0%, 100% 10px, 100% 100%, 0% 100%);

}

.gtform input
{
	text-align: center;
}

#block1 .foundnone
{
	color: #fff;	
}

.pagelisting
{
	display: flex;
	gap: 12px;
	width: 90%;
	margin: 5%;
	flex-wrap: wrap;
	justify-content: center;
}
.pagelisting a
{
	background-color: var(--backtext);
        clip-path: polygon(0% 0%, calc(100% - 10px) 0%, 100% 10px, 100% 100%, 0% 100%);
	padding: 10px 20px;
	color: #000;
	text-decoration: none;
}

.pagelistinganchor
{
	position: relative;
	top: -70px;
}

/* видео */

.video-wrap
{
    position: relative;
    margin: 0px 5%;
    clip-path: polygon(0% 0%, calc(100% - 20px) 0%, 100% 20px, 100% 100%, 0% 100%);
	min-height:300px;
}

.video-wrap .video-play
{
        background: url(/img/video-play.png) center center no-repeat;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	opacity: 1;
	cursor: pointer;
	transition: 0.3s;
	background-color: #000a;
	background-size: 80px;
}


.video-wrap.active .video-play
{
        background: url(/img/video-pause.png) center center no-repeat;
	opacity: 0;
	background-color: transparent;
}

.video-wrap.active:hover .video-play
{
	opacity: 0.5;
}

.letterselect,
.allcountries
{
	display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
	margin-bottom: 16px;
}

.letterselect a
{
	color: #000;
	text-decoration: none;
	font-weight: bold;
}

.letterselect a:hover,
.letterselect a.active
{
	text-decoration: underline;
}

.allcountries a.hidden
{
	display: none;
}

@media only screen and (max-width: 767px) {

div.country .top {
	font-size: 80%;
}

.entry-content
{
	padding-top:35px;
}

	.form1
	{
            left: 0px;
	    width: calc(100%);
		border-radius: 0px;
	}

.pagelisting a
{
	width: 100%;
}

.pagelistinganchor
{
	position: relative;
	top: -50px;
}
h1,
.letterselect
{
	padding-left:6px;
	padding-right: 6px;
	width: calc(100% - 0px);
}

}