/*!
Theme Name: garage
Theme URI: http://underscores.me/
Author: Designed by The Our Studio
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: garage
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

garage is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

* {
	outline: none;
	--color-text: #fff;
	--color-yellow: #F1CB02;
	--color-light-yellow: #ffd600 ;
}

ol,
ul {
	list-style: none;
	margin-bottom: 0;
	padding-left: 0;
}

a {
	position: relative;
	display: inline-block;
	text-decoration: none;
	color: var(--color-link);
	-webkit-transition: all ease 0.15s;
	transition: all ease 0.15s;
}
a:focus, a:hover, a:active {
	outline: 0;
}
a:hover, a:active {
	color: var(--color-yellow);
}

img {
	max-width: 100%;
	height: auto;
}

button, input, textarea {
	background: none;
	outline: 0 !important;
	border: none;
	padding: 0;
	-webkit-transition: all ease 0.15s;
	transition: all ease 0.15s;
}

button[disabled=disabled] {
	opacity: 0.75;
}

html, body {
	font-family: "TekturR";
	color: var(--color-text);
	font-size: 16px;
	background: #000;
}

p, h1, h2, h3, h4, h5, h6 {
	color: var(--color-text);
}

b, strong {
	font-weight: normal;
}

b {
	font-family: "TekturB";
}

strong {
	font-family: "TekturEB";
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

section {
	padding: 80px 0;
}

.buttons {
	position: relative;
	color: #000;
	height: 40px;
	padding: 0 46px;
	font-family: "TekturB";
}
.buttons span {
	position: relative;
	z-index: 1;
}
.buttons::before, .buttons::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: skew(-30deg);
	        transform: skew(-30deg);
	-webkit-transition: all ease 0.2s;
	transition: all ease 0.2s;
}
.buttons::before {
	background: var(--color-yellow);
	z-index: 1;
}
.buttons::after {
	width: 90%;
	border: 2px solid #fff;
	left: -20px;
	top: 10px;
}
.buttons:hover {
	color: #000;
}
.buttons:hover::before {
	background: var(--color-light-yellow);
}
.buttons:hover:after {
	width: 100%;
	top: 0;
	left: 0;
	border-color: transparent;
}

a.buttons {
	line-height: 38px;
}

.title {
	font-size: 35px;
	font-family: "TekturB";
	text-align: center;
	margin-bottom: 50px;
}

.skew {
	position: relative;
}
.skew::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-yellow);
	-webkit-transform: skew(-30deg);
	        transform: skew(-30deg);
	pointer-events: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

.notice {
	position: sticky;
	top: 0;
	background: var(--color-yellow);
	padding: 10px 0;
	display: none;
	z-index: 1000;
}
.notice .notice-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: align-items;
	    -ms-flex-align: align-items;
	        align-items: align-items;
	color: #000;
}
.notice .notice-item .notice-gift {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 7px;
	margin: 0 auto;
}
.notice .notice-item .notice-gift a {
	color: #000;
}
.notice .notice-item .notice-gift svg {
	width: 20px;
	height: 20px;
}
.notice .notice-item .notice-close svg {
	width: 13px;
	height: 13px;
	-webkit-transition: all ease 0.3s;
	transition: all ease 0.3s;
}
.notice .notice-item .notice-close:hover svg {
	-webkit-transform: scale(1.3) rotate(90deg);
	        transform: scale(1.3) rotate(90deg);
}

.notice-active .header {
	top: 44px;
}

.header {
	position: sticky;
	top: 0;
	padding: 23px 0;
	background: #000;
	z-index: 1001;
}
.header .header-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.header .header-item .header-items.__menu ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.header .header-item .header-items.__menu ul li {
	position: relative;
}
.header .header-item .header-items.__menu ul li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: var(--color-yellow);
	-webkit-transform: skew(-30deg);
	        transform: skew(-30deg);
	pointer-events: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	-webkit-transition: all ease 0.3s;
	transition: all ease 0.3s;
}
.header .header-item .header-items.__menu ul li a {
	position: relative;
	padding: 5px 13px;
	-webkit-transition: all ease 0.3s;
	transition: all ease 0.3s;
}
.header .header-item .header-items.__menu ul li:hover::before {
	width: 100%;
}
.header .header-item .header-items.__menu ul li:hover a {
	color: #000;
}
.header .header-item .header-items.__social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 15px;
}
.header .header-item .header-items.__social svg {
	width: 20px;
	height: 20px;
	color: var(--color-yellow);
	-webkit-transition: all ease 0.15s;
	transition: all ease 0.15s;
}
.header .header-item .header-items.__social a:hover svg {
	color: var(--color-text);
	-webkit-transform: scale(1.2);
	        transform: scale(1.2);
}

.home-banner {
	margin-top: 50px;
}
.home-banner .home-banner-item h1 {
	font-size: 45px;
	font-family: "TekturB";
	margin-bottom: 9px;
}
.home-banner .home-banner-item p {
	margin-bottom: 25px;
}
.home-banner .home-banner-item .__social {
	margin-top: 100px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 17px;
}
.home-banner .home-banner-item .__social svg {
	width: 38px;
	height: 38px;
	color: var(--color-yellow);
}
.home-banner .home-banner-item .__social a:hover svg {
	color: #fff;
}

.services .services-item .nav {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 50px;
	margin-bottom: 70px;
}
.services .services-item .nav .buttons {
	font-size: 20px;
	height: 60px;
}
.services .services-item .nav .buttons:not(.active) {
	color: #fff;
}
.services .services-item .nav .buttons:not(.active)::before {
	background: none;
	border: 2px solid #fff;
}
.services .services-item .nav .buttons:not(.active)::after {
	width: 100%;
	top: 0;
	left: 0;
	border-color: transparent;
}
.services .services-item .nav .buttons.active:hover::after {
	width: 90%;
	border: 2px solid #fff;
	left: -20px;
	top: 10px;
}
.services .services-item .services-item__footer {
	text-align: center;
	margin-top: 30px;
}
.services .services-item .services-item__footer .buttons {
	font-size: 20px;
	height: 61px;
	line-height: 59px;
}
.services .services-item .services-item__footer .buttons::after {
	content: none;
}

.about-me .about-me-item .title {
	text-align: left;
}
.about-me .about-me-img {
	text-align: center;
}

.services-card {
	position: relative;
	padding: 20px 20px 20px 50px;
	height: 100%;
	color: #D8D8D8;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	max-width: 375px;
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s;
}
.services-card::before, .services-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: skew(-10deg);
	        transform: skew(-10deg);
	pointer-events: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.services-card::before {
	border: 2px solid #fff;
}
.services-card::after {
	background: var(--color-yellow);
	width: 0;
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s;
}
.services-card:hover {
	color: #000;
}
.services-card:hover::after {
	width: 100%;
}
.services-card:hover .services-card__name {
	background: -webkit-gradient(linear, right top, left top, from(#000), to(#000));
	background: linear-gradient(270deg, #000 0%, #000 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: #000;
}
.services-card:hover .services-card__logo {
	background-image: url("assets/img/mini-logo-black.png");
}
.services-card .services-card__logo {
	position: relative;
	z-index: 1;
	max-width: 150px;
	height: 13px;
	background-image: url("assets/img/mini-logo.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.services-card .services-card__type {
	position: relative;
	z-index: 1;
	margin-top: 15px;
	line-height: 1;
}
.services-card .services-card__name {
	position: relative;
	z-index: 1;
	display: inline-block;
	font-size: 40px;
	font-family: "TekturB";
	background: -webkit-gradient(linear, right top, left top, from(#F1CB02), to(#F19202));
	background: linear-gradient(270deg, #F1CB02 0%, #F19202 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: #F19202;
	line-height: 1;
	margin-bottom: 15px;
}
.services-card .services-card__inf {
	position: relative;
	z-index: 1;
	margin-bottom: 25px;
}
.services-card .services-card__inf ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 8px;
}
.services-card .services-card__inf ul li::before {
	content: "";
	min-width: 14px;
	max-width: 14px;
	height: 14px;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.99989 14C8.26437 14.0001 9.50526 13.6577 10.5907 13.009C11.6762 12.3604 12.5657 11.4298 13.1647 10.3161C13.7638 9.20248 14.0499 7.94733 13.9929 6.68405C13.9358 5.42077 13.5376 4.19655 12.8406 3.14144L7.27598 9.32478C7.01606 9.61366 6.65743 9.79478 6.27068 9.83249C5.88393 9.8702 5.49707 9.76178 5.18624 9.52856L2.64464 7.62222C2.47963 7.49845 2.37054 7.3142 2.34137 7.10999C2.3122 6.90579 2.36534 6.69836 2.4891 6.53333C2.61286 6.36831 2.7971 6.25921 3.00129 6.23004C3.20548 6.20087 3.4129 6.25401 3.57791 6.37778L6.11951 8.28411L11.8327 1.93667C11.005 1.14653 9.99629 0.571356 8.89482 0.261506C7.79334 -0.0483439 6.63271 -0.0834213 5.51454 0.159345C4.39637 0.402112 3.35476 0.915319 2.48091 1.65403C1.60706 2.39274 0.927617 3.33444 0.502075 4.39665C0.0765331 5.45887 -0.0821329 6.60922 0.0399695 7.74699C0.162072 8.88475 0.561219 9.97523 1.20246 10.9229C1.84371 11.8707 2.70749 12.6467 3.71819 13.1832C4.72889 13.7196 5.85567 14.0001 6.99989 14Z" fill="%2311BA36"/></svg>');
	background-repeat: none;
	background-size: contain;
}
.services-card .services-card__price {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 10px;
	font-family: "TekturB";
	line-height: 1;
	margin-top: auto;
}
.services-card .services-card__price .price {
	font-size: 60px;
}
.services-card .services-card__price .currency {
	font-size: 20px;
	margin-top: 6px;
}

.promocode {
	overflow: hidden;
}

.promocode-card {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 12px;
}
.promocode-card::before, .promocode-card::after {
	content: "";
	position: absolute;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.promocode-card::before {
	left: 0;
	width: 315px;
	background-image: url("assets/img/promocode-auto.jpg");
}
.promocode-card::after {
	right: 0;
	width: 230px;
	background-image: url("assets/img/promocode-logo.jpg");
}

.promocode-card__barcode {
	padding: 25px 50px;
	color: #000;
	max-width: 530px;
	z-index: 2;
}
.promocode-card__barcode::before {
	-webkit-transform: skew(-12deg);
	        transform: skew(-12deg);
}
.promocode-card__barcode .skew-circle {
	position: absolute;
	width: 40px;
	height: 40px;
	background: #000;
	border-radius: 50%;
	pointer-events: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.promocode-card__barcode .skew-circle.skew-circle-1 {
	top: -12px;
	right: -35px;
}
.promocode-card__barcode .skew-circle.skew-circle-2 {
	bottom: -14px;
	right: 6px;
}
.promocode-card__barcode .promocode-card__barcode-title {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
}
.promocode-card__barcode .promocode-card__barcode-title .barcode-title {
	font-size: 60px;
	font-family: "TekturB";
	line-height: 0.85;
}
.promocode-card__barcode .promocode-card__barcode-title .barcode .barcode-logo {
	line-height: 1;
	padding: 3px 9px 5px;
}
.promocode-card__barcode .promocode-card__barcode-title .barcode .barcode-logo::before {
	background: #000;
}
.promocode-card__barcode .promocode-card__barcode-title .barcode .barcode-logo img {
	position: relative;
}
.promocode-card__barcode .promocode-card__barcode-title .barcode .barcode-promo {
	margin-top: 9px;
}
.promocode-card__barcode .promocode-card__barcode-title .barcode .barcode-promo svg {
	max-width: 125px;
	height: 77px;
}
.promocode-card__barcode .promocode-card__barcode-caption {
	position: relative;
	max-width: 275px;
	margin-top: 7px;
}

.promocode-card__gift {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	color: var(--color-yellow);
	text-align: center;
	padding: 10px 30px 10px 15px;
	font-family: "TekturB";
	-webkit-transition: color ease 0.15s;
	transition: color ease 0.15s;
	cursor: pointer;
	z-index: 1;
}
.promocode-card__gift .skew-circle {
	position: absolute;
	width: 40px;
	height: 40px;
	background: #000;
	border: 4px solid #fff;
	border-radius: 50%;
	pointer-events: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.promocode-card__gift .skew-circle::before {
	content: "";
	position: absolute;
	background: #000;
	pointer-events: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.promocode-card__gift .skew-circle.skew-circle-1 {
	top: -10px;
	left: 5px;
}
.promocode-card__gift .skew-circle.skew-circle-1::before {
	top: -12px;
	left: -7px;
	width: 30px;
	height: 45px;
	-webkit-transform: rotate(40deg);
	        transform: rotate(40deg);
}
.promocode-card__gift .skew-circle.skew-circle-2 {
	bottom: -12px;
	left: -35px;
}
.promocode-card__gift .skew-circle.skew-circle-2::before {
	top: -2px;
	left: -5px;
	width: 32px;
	height: 45px;
	-webkit-transform: rotate(-35deg);
	        transform: rotate(-35deg);
}
.promocode-card__gift::before {
	-webkit-transform: skew(-12deg);
	        transform: skew(-12deg);
	background: #000;
	border: 4px solid #fff;
	-webkit-transition: background ease 0.15s;
	transition: background ease 0.15s;
}
.promocode-card__gift:hover {
	color: #000;
}
.promocode-card__gift:hover::before {
	background: #fff;
}
.promocode-card__gift svg {
	position: relative;
	width: 70px;
	height: 70px;
	margin-bottom: 10px;
}
.promocode-card__gift span {
	position: relative;
}

.promocode-card__gift .promo-text,
.promocode-card__gift .promocode {
	display: block;
}

.promocode-card__gift .promo-text {
	color: #D9D9D9;
	font-family: 'TekturR';
	margin-bottom: 1px;
	-webkit-transition: color ease 0.15s;
	transition: color ease 0.15s;
}

.promocode-card__gift:hover .promo-text {
	color: #000;
}

.promocode__btn {
	margin-top: 30px;
}

.promocode__btn .buttons {
	font-size: 20px;
	height: 60px;
	line-height: 60px;
}

.promocode__btn .buttons::after {
	content: none;
}

.contacts {
	overflow: hidden;
	padding-bottom: 20px;
}
.contacts .contacts-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 1000px;
	margin: 0 auto;
}
.contacts .contacts-item .contacts-item__address {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.contacts .contacts-item .contacts-item__address .__list {
	margin-bottom: 24px;
	font-size: 25px;
}
.contacts .contacts-item .contacts-item__address .__list .__list-title {
	font-family: "TekturB";
}
.contacts .contacts-item .contacts-item__address .__list .__list-body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 13px;
}
.contacts .contacts-item .contacts-item__address .__list svg {
	min-width: 24px;
	max-width: 24px;
	height: 24px;
}
.contacts .contacts-item .contacts-item__address .__social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 60px;
}
.contacts .contacts-item .contacts-item__address .__social .__social-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.contacts .contacts-item .contacts-item__address .__social .__social-list:nth-child(1) {
	gap: 17px;
}
.contacts .contacts-item .contacts-item__address .__social .__social-list:nth-child(1) svg {
	width: 38px;
	height: 38px;
}
.contacts .contacts-item .contacts-item__address .__social .__social-list:nth-child(2) {
	gap: 25px;
}
.contacts .contacts-item .contacts-item__address .__social .__social-list:nth-child(2) svg {
	width: 30px;
	height: 30px;
}
.contacts .contacts-item .contacts-item__address .__social .__social-list a:hover svg {
	color: #fff;
}
.contacts .contacts-item .contacts-item__address .__social svg {
	color: var(--color-yellow);
}
.contacts .contacts-item .contacts-item__maps {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 550px;
	        flex: 0 0 550px;
	height: 300px;
	-webkit-transform: skew(-10deg);
	        transform: skew(-10deg);
}
.contacts .contacts-item .contacts-item__maps iframe {
	position: relative;
}
.contacts .contacts-item .contacts-item__maps::before {
	-webkit-transform: skew(0);
	        transform: skew(0);
	background: none;
	top: 16px;
	left: 16px;
	border: 2px solid var(--color-yellow);
}

.footer .footer-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 50px 0 80px 0;
	border-top: 1px solid #fff;
}

.footer .footer-items.__social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.footer .footer-items.__social svg {
	width: 25px;
	height: 25px;
}


.widget-btn {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 1001;
}
.widget-btn a {
	font-family: 'TekturB';
	max-width: 200px;
	min-width: 200px;
	text-align: center;
	width: 100%;
	height: 45px;
	line-height: 45px;
	font-size: 16px;
	background: var(--color-yellow);
	color: #000;
	border-radius: 30px;
	-webkit-animation: blink infinite 2s;
			animation: blink infinite 2s;
}
.widget-btn a:hover {
	background: var(--color-light-yellow);
	-webkit-animation: blink2 infinite 2s;
			animation: blink2 infinite 2s;
}

@-webkit-keyframes blink {
	0% {
		-webkit-box-shadow: 0 0 0 0px rgba(255, 214, 0, 0.7);
		box-shadow: 0 0 0 0px rgba(255, 214, 0, 0.7);
	}
	70% {
		-webkit-box-shadow: 0 0 0 1.53em rgba(255, 214, 0, 0);
		box-shadow: 0 0 0 1.53em rgba(255, 214, 0, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 214, 0, 0);
		box-shadow: 0 0 0 0 rgba(255, 214, 0, 0);
	}
}

@keyframes blink {
	0% {
		-webkit-box-shadow: 0 0 0 0px rgba(255, 214, 0, 0.7);
		box-shadow: 0 0 0 0px rgba(255, 214, 0, 0.7);
	}
	70% {
		-webkit-box-shadow: 0 0 0 1.53em rgba(255, 214, 0, 0);
		box-shadow: 0 0 0 1.53em rgba(255, 214, 0, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 214, 0, 0);
		box-shadow: 0 0 0 0 rgba(255, 214, 0, 0);
	}
}
@-webkit-keyframes blink2 {
	0% {
		-webkit-box-shadow: 0 0 0 0px rgba(255, 214, 0, 0.7);
		box-shadow: 0 0 0 0px rgba(255, 214, 0, 0.7);
	}
	70% {
		-webkit-box-shadow: 0 0 0 1.53em rgba(255, 214, 0, 0);
		box-shadow: 0 0 0 1.53em rgba(255, 214, 0, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 214, 0, 0);
		box-shadow: 0 0 0 0 rgba(255, 214, 0, 0);
	}
}
@keyframes blink2 {
	0% {
		-webkit-box-shadow: 0 0 0 0px rgba(255, 214, 0, 0.7);
		box-shadow: 0 0 0 0px rgba(255, 214, 0, 0.7);
	}
	70% {
		-webkit-box-shadow: 0 0 0 1.53em rgba(255, 214, 0, 0);
		box-shadow: 0 0 0 1.53em rgba(255, 214, 0, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 214, 0, 0);
		box-shadow: 0 0 0 0 rgba(255, 214, 0, 0);
	}
}