/*Общее*/

.heart {
	position: relative;
	width: 100px;
	height: 100px;
	border: solid 1px red;
	border-top: none;
	border-left: none;
}

.heart:before, .heart:after {
	position:absolute;
	content: ' ';
	-webkit-border-radius: 50px 0 0 50px; /* для Chrome и Safari */
	-moz-border-radius: 50px 0 0 50px; /* для Firefox */
	border-radius: 50px 0 0 50px;
	width: 70px;
	height: 100px;
	border: solid 1px red;
	border-right: none;
}

.heart {
	position: relative;
	width: 100px;
	height: 100px;
	-webkit-transform: rotate(45deg);  /* для Chrome и Safari */
	-moz-transform: rotate(45deg); /* для Firefox */
	-o-transform: rotate(45deg); /* для Opera */
	transform: rotate(45deg);
	border: solid 1px red;
	border-top: none;
	border-left: none;
}

.heart:before, .heart:after {
	position:absolute;
	content: ' ';
	-webkit-border-radius: 50px 0 0 50px;
	-moz-border-radius: 50px 0 0 50px;
	border-radius: 50px 0 0 50px;
	width: 70px;
	height: 100px;
	border: solid 1px red;
	border-right: none;
	left:-70px;
}
.heart:after {
	position: absolute;
	left: 15px;
	top: -85px;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
}

.heart {
	background: red;
		/* для браузеров, которые не поддерживают градиент */
	background: -webkit-radial-gradient(115% 50%, 75px 110px, #8B0000, #8B0000, red);
		/* для Chrome и Safari */
	background: -moz-radial-gradient(170% 50%, circle , #8B0000 0%, #8B0000 52%,  red 76%);
		/* для Firefox */
	background: -o-radial-gradient(115% 50%, 75px 110px, #8B0000, #8B0000, red);
		/* для Opera */
	background: radial-gradient(115% 50%, 75px 110px, #8B0000, #8B0000, red);
		/* по стандартам CSS3 */
}

.heart:before {
	background: red;
	background: -webkit-radial-gradient(15% 50%, 65px 65px, #FFE4E1, red);
	background: -moz-radial-gradient(15% 50%, circle, #FFE4E1, red 85%);
	background: -o-radial-gradient(15% 50%, 65% 65%, #FFE4E1, red);
	background: radial-gradient(15% 50%, 65% 65%, #FFE4E1, red);
}

.heart:after {
	background: red;
	background: -webkit-radial-gradient(50% 80%, 85px 80px, #FFB6C1, red, #8B0000);
	background: -moz-radial-gradient(50% 80%, circle, #FFB6C1, red, #8B0000 90%);
	background: -o-radial-gradient(50% 80%, 85px 80px, #FFB6C1, red, #8B0000);
	background: radial-gradient(50% 80%, 85px 80px, #FFB6C1, red, #8B0000);
}
.heart {
	animation-name: 'anime';
		/* имя кейфрейма для анимации */
	animation-duration: 300ms;
		/* длительность анимации */
	animation-iteration-count: infinite;
		/* количество повторений, в данном случае - бесконечно */
	animation-direction: alternate;
		/* проигрывать анимацию в прямом и в обратном порядке */
	animation-timing-function: ease-in;
		/* вычисление временных промежутков для анимации, в данном случае анимация ускоряется */
}

@keyframes 'anime' {
	from {
		transform: scale(1) rotate(45deg);
	}
	to {
		transform: scale(1.1) rotate(45deg);
	}
}

.heart {
	-webkit-animation-name: 'anime';
	-webkit-animation-duration: 300ms;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	-webkit-animation-timing-function: ease-in;
}

@-webkit-keyframes 'anime' {
	from {
		-webkit-transform: scale(1) rotate(45deg);
	}
	to {
		-webkit-transform: scale(1.1) rotate(45deg);
	}
}

.centr_heart {
  display: flex;
  justify-content: center;
  padding-top: 15%;
}

* {
    padding: 0;
    margin: 0;
}

html, body {
    height: 100%;
    background-color: black;
    color: aliceblue;
    font-family: Helvetica Neue, Arial,sans-serif, Ubuntu, Segoe UI,Frutiger,Frutiger Linotype,Dejavu Sans;
    font-weight: normal
  }

.hidden_url {
	opacity: 0;
	-webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chlinkrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;
}

.active_main_menu {
    font-size: 18px;
    text-decoration:none;
    display:inline-block;
    padding:10px;
    border-bottom:3px solid #64d677;
    color: #64d677;
}

.copyright {
	font-size: 14px;
	padding-bottom: 3px;
}

.mini-menu,
.header_a {
    font-size: 18px;
    text-decoration:none;
    color: #f39939;
    border-bottom:3px solid transparent;
    display:inline-block;
    padding:10px;
}

.header_a:hover {
    color: #64d677;
    border-bottom:3px solid white;
}

.container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
	  height: 100%;
    padding-top: 20px;
}

.button {
    font-weight: bold;
    margin-top: 50px;
    font-family: Helvetica, arial, serif;
    /* color: white; */
    color: #64d677;
    /* color: #f39939; */
    text-align:center;
    font-size:13px;
    cursor: pointer;
    text-decoration: none;
    padding: 8px;
    border: 1px solid rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(0,0,0,0.5);
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5), /* Exterior Shadow */
      inset 0 1px rgba(255,255,255,0.3), /* Top light Line */
      inset 0 10px rgba(255,255,255,0.2), /* Top Light Shadow */
      inset 0 10px 20px rgba(255,255,255,0.25), /* Sides Light Shadow */
      inset 0 -15px 30px rgba(0,0,0,0.3); /* Dark Background */
    -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.5),
      inset 0 1px rgba(255,255,255,0.3),
      inset 0 10px rgba(255,255,255,0.2),
      inset 0 10px 20px rgba(255,255,255,0.25),
      inset 0 -15px 30px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 2px 8px rgba(0,0,0,0.5),
      inset 0 1px rgba(255,255,255,0.3),
      inset 0 10px rgba(255,255,255,0.2),
      inset 0 10px 20px rgba(255,255,255,0.25),
      inset 0 -15px 30px rgba(0,0,0,0.3);
}

.button:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -moz-opacity:0.7;
    -khtml-opacity: 0.7;
  }

.wrapper {
    display: table;
    width: 80%;
    height: 99%;
    margin: 0 auto;
}

.top {
    display: table-row;
    height: 100%;
}

.footer {
    margin: 0 auto;
    width: 99%;
    padding-bottom: 5px;
}

.header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 10px;
    border-bottom-style: groove;
    border-bottom-color: #64d677;
    border-bottom-color: #f39939;
    /* border-bottom-color: white; */
}



.login {
    text-align: end;
    vertical-align:middle;
    margin-top: 10px;
		display: inline-block;
}

.minimized-menu {
  display: none;
}

.menu {
    display: flex;
    justify-content: space-around;
    padding-top: 10px;
}
.menu ul,
.menu ol {
    list-style: none;
}
.content {
    padding-top: 20px;
}

.form-control {
    margin-top: 5px;
    background-color: black;
}

.form-license {
    background: rgba( 0,0,0,0);
    border-radius: 5px;
    width: 400px;
    padding: 20px;
}

.form-license p {
    position: relative;
}

.form-license p input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    top: -22px;
    color: #fff;
    font-family: 'Caveat', sans-serif;
    font-size: 20px;
    margin: 0 0 30px;
    padding: 0;
    text-align: left;
}


.form-telegram-activaing {
  background-color: #f39939;
	padding: 6px;
	margin: 6px;
	border-radius: 7px;
	width: 50%;
	box-shadow: 0px 0px 2px 2px #f39939;
}


.form-license p input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 50px black !important; /* Цвет фона */
    -webkit-text-fill-color: white !important; /* цвет текста */
    font-size: 20px !important;
    color: white !important; /* цвет текста */
}

.form-horizontal {
    background: rgba( 0,0,0,0);
    border-radius: 5px;
    width: 400px;
    padding: 40px;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-horizontal p {
    position: relative;
}

.form-horizontal p input {
    background: None;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    top: -25px;
    color: #fff;
    font-family: 'Caveat', sans-serif;
    font-size: 25px;
    margin: 0 0 30px;
    padding: 0;
    text-align: left;
}

.form-horizontal p input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 30px black !important; /* Цвет фона */
    -webkit-text-fill-color: white !important; /* цвет текста */
    font-size: 25px !important;
    color: white !important; /* цвет текста */
}

.logo_pic {
    height: 35px;
}



.footer_text {
    text-align: center;
    font-size: 9px;
}

.text_in_cloud {
    width: 100%;
    mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 25%, #ffffff 75%, rgba(255, 255, 255, 0) 100%);
    margin: 0 auto;
    padding: 25px 0;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 25%, rgba(255, 255, 255, 0.2) 75%, rgba(255, 255, 255, 0) 100%);
    margin-bottom: 20px;
}

.pay_methods {
		display: flex;
		justify-content: center;
		margin-left: auto;
		margin-right: auto
}

.centr-form {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.tri_poloski {
  color: #64d677;
  padding-right: 3px;
  height: 30px;
}
.img_menu {
    height: 30px;
    vertical-align:middle;
    padding-right: 3px;
}

.product-menu {
    display: flex;
    justify-content: space-between;
    padding-top: 25px 0;
    margin-top: 25px;
}



.strikethrough {
    position: relative;
    font-size: 18px;
}

.strikethrough:before {
    border-bottom: 1px solid red;
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    transform: rotate(-7deg);
}

.price {
    font-size: 20px;
    position: relative;
}

.price-block {
    display: flex;
    justify-content: space-around;
    margin: 5px;
    padding: 10px;
}

.padding-new-price {
    padding-left: 5px;
}

.contact-img {
  height: 70px;
}

.link-color {
    color: white;
    font-size: 10px;
    font-weight: normal;
}

.list-none-display {
    list-style: none;
    padding-top: 7px;
    color: white;
    text-align: start;
}

.tariff-info-position {
    display: flex;
    justify-content: center;
    text-align: start;
}

.tariff-info-block {
    /* width: 33%; */
}

.contact-info {
    display: flex;
    justify-content: center;
    text-align: start;
    text-align: center;
    padding-left: 150px;
    padding-right: 150px;
}

.contact-position {
    display: flex;
    justify-content: space-around;
}

.block_lk_notifications {
	display: flex;
	justify-content: space-around;
}

.lk_notifications {

}
