@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

html {
  scroll-behavior: smooth;
}


body{
  direction: ltr;
  font-family: 'Poppins', sans-serif !important;
  font-size: 18px;
  margin: 0;
  padding: 0;
  line-height: 1.3;
}

* {
  box-sizing: border-box;
}

a {
    text-decoration: none;
}

.list {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    list-style: none;
    padding-inline-start: 0;
}

img {
    display: block;
}

.link {
    text-decoration: none;
}
.form-wrapper {
  flex: 1;
}
.contacts {
  flex: 1;
}
.link:hover,
.link:focus {
    cursor: pointer;
}

.container-g20 {
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px !important;
}

@media screen and (min-width: 576px) and (max-width: 1200px) {
  .container-g20 {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.flex {
  display: flex;
  flex-direction: column-reverse;
}

@media screen and (min-width: 576px) {
  .flex {
    flex-direction: row-reverse;
  }
}

.column {
  flex-direction: column-reverse;
}

:root {
  --white: #fffcfa;
  --dark: #161616;
  --sec-pad: 89px;
  --big-pad: 168px;
  --main-color: #d0c80b;
  --main-dark-color: #807c08;
  --main-dark2-color: #403e04;
  --image-size: 145px;
  --accent-color: #EF2143;
}

.title-g20 {
  font-family: 'Anton', sans-serif;
  line-height: 1.8;
  font-size: 23px;
  font-weight: 800;
  color: var(--white);
  text-transform: capitalize;
  word-break: break-word;
  display: block;
  gap: 21px;
  align-items: center;  
  z-index: 1;
  position: relative;
  margin-bottom: 28px;
  padding: 10px 0;
  border-bottom: 1px solid var(--accent-color);
}

.title-g20 span {
  border-bottom: 10px solid var(--accent-color);
}

@media screen and (min-width: 576px) {
  .title-g20 {
    font-size: 25px;
  }
}

@media screen and (min-width: 991px) {
  .title-g20 {
    font-size: 32px;
  }
}

.cut {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-g20 {
  background-color: #16161677;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

@media screen and (max-width: 757px) {
  .header-g20 {
    position: relative;
  }
}

.header-g20 .container-g20 > .flex{
  align-items: center;
  gap: 54px;
  justify-content: space-between;
}


.logo-g20 {
  color:var(--main-color);
  align-items: center;
  font-size: 25px;
  font-weight: 800;
  padding: 10px;
  gap: 21px;
}

.logo-g20 img {
  height: 89px;
}

@media screen and (max-width:575px) {
  .header-g20 .container-g20 .flex{
    flex-direction: column-reverse;
  }
}


#menu ul, #menu li {
	margin: 0 auto;
	padding: 0;
	list-style: none
}
#menu ul {
	width: 100%;
	text-align: center;
}
#menu li {
	display: inline-block;
	position: relative;
}
#menu a {
	display: block;
	padding: 0 10px;
	text-decoration: none;
	color: #FFFFFF;
	font-size: 17px;
  margin-bottom: 16px;
}
#menu a.dropdown-arrow:after {
	content: "\2B9F";
	margin-left: 10px;
}
#menu li a:hover {
	color: var(--main-color);
}
#menu input {
	display: none;
	margin: 0;
	padding: 0;
	height: 45px;
	width: 100%;
	opacity: 0;
	cursor: pointer
}
#menu label {
	display: none;
	line-height: 45px;
	text-align: center;
	position: absolute;
	left: 37px;
}
#menu label:before {
	font-size: 1.6em;
	color: #FFFFFF;
	content: "\2261"; 
	margin-left: 21px;
}
#menu ul.sub-menus{
	height: auto;
	overflow: hidden;
	width: 304px;
	background: var(--main-color);
	position: absolute;
	z-index: 2;
	display: none;
  padding: 21px;
}
#menu ul.sub-menus li {
	display: block;
	text-align: left;
	width: 100%;
}
#menu ul.sub-menus a {
	color: #FFFFFF;
	font-size: 17px;
}
#menu li:hover ul.sub-menus {
	display: block;
}
#menu ul.sub-menus a:hover{
	color: var(--dark);
}
@media screen and (max-width: 800px){
	#menu {position:relative; width: 100%;}
	#menu ul {background:var(--main-color);position:absolute;top:100%;right:0;left:0;z-index:3;height:auto;display:none;text-align:left;}
	#menu ul.sub-menus {width:100%;position:static;}
	#menu ul.sub-menus a {padding-left:28px;}
	#menu li {display:block;float:none;width:auto;}
	#menu input, #menu label {position:absolute;top:0;left:0;display:block;}
	#menu input {z-index:4;}
	#menu input:checked + label {color:#FFFFFF;z-index: 4;}
	#menu input:checked + label:before {content:"\00d7";}
	#menu input:checked ~ ul {display:block;width: 100%;padding: 37px; padding-top: 54px;}
  #menu a {padding: 0;}
}

.hero-g20 {
  background-image: url('artisticstorage/back/bg-all-0684af177f308a.jpg');background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  align-content: end;
  padding: 54px 0;
  min-height: 746px;
}

.hero-g20-content {
  border-radius: 5px;
  margin: 0 auto;
  width:  74%;
  background-color: #0a0a0ab2;
  padding: 37px;
}

.hero-g20-content h1 {
  color: var(--white);
  font-size: 25px;
}

@media screen and (max-width: 575px) {
  .hero-g20-content {
    width: 100%;
    margin-top: 145px;
  }
}
.footer-logos {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 20px;
 flex-wrap: wrap;
  padding: 20px;
}

.footer-logos a img {
  max-height: 50px;
  width: auto;
  display: block;
}
@media (max-width: 576px){
.footer-logos a img {
  height: 30px;
}
}

.section-abouy-us-g20 {
  padding: var(--sec-pad) 0;
  background-color: var(--main-color);
}

.section-abouy-us-g20 .container-g20 > div{
  background-color: #5f3213;
  background-image: url("img/woven-light.png");
  color: var(--white);
  border: 10px ridge #a04b12;
  padding: 21px;
  padding-top: 0;

}

.about-us-g20-wrapper {
  gap: 64px;
}

.about-us-g20 {
  flex: 2;
}

.about-us-g20 .flex {
  justify-content: space-between;
  gap: 37px;
}

.about-us-g20 .flex svg {
  height: 100%;
  width: 37px;
  fill: var(--accent-color);
}

.devs-g20-title {
  flex: 1;
  text-align: center;
  padding: 21px 21px 54px;
  background: var(--accent-color);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
  margin-top: -10px;
}

.devs-g20__list {
  flex-wrap: wrap;
  gap: 44px;
  margin-top: 37px;
  justify-content: center;
}

.devs-g20__item {
  font-family: Anton;
  font-size: clamp(23px, 8vw,36px);
  clip-path: polygon(57% 8%, 100% 0, 90% 48%, 100% 100%, 50% 93%, 0 100%, 11% 50%, 0 0);
  background-color: #c8a80c;
  padding: 10px 44px;
  word-break: break-all;
}

.cards-g20 {
  padding: var(--sec-pad) 0;
  background-color: var(--main-color);
  background-image: url(artisticstorage/back/opacity_bg-0684af177f314c.png);
  background-position: 0 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.cards-g20 .container-g20 > .flex {
  justify-content: center;
  flex-wrap: wrap;
  gap: 37px;
}

.card {
  position: relative;
  margin: 0 auto;
  height: 397px;
  width: 100%;
  max-width: 397px;
  background-color: var(--white);
  transition: 0.5s;
  cursor: pointer;
  -webkit-box-shadow: -2px 13px 31px 1px rgba(0,0,0,0.75);
  -moz-box-shadow: -2px 13px 31px 1px rgba(0,0,0,0.75);
  box-shadow: -2px 13px 31px 1px rgba(0,0,0,0.75);
}
@media screen and (min-width: 576px) {
  .card {
    width: calc((100% - 37px) / 2);
  }
}
@media screen and (min-width: 768px) {
  .card {
    width: calc((100% - 37px * 2) / 3);
  }
}

.face {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
}
.face1 {
  text-align: center;
  padding: 16px;
  color: #073668;
  transition: 0.5s;
}
.face1 h2 {
  direction: initial;
  text-transform: uppercase;
  margin-top: 85px;
  position: relative;
  display: flex;
  align-items: center;
}

.face1 h2::before,
.face1 h2::after  {
  content: '';
  height: 100%;
  color: #073668;
  width: 21px;
  display: inline-block;
  border: solid 4px #073668;
  border-radius: 5px;
}
.face1 h2::before {
  border-right: 0;
}
.face1 h2::after {
  border-left: 0;
}

.face1 p {
  text-align: center;
}
.face1 h2 a {
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  color: #073668;
  text-transform: capitalize;
  transition: 0.3s;
  font-size: 23px;
  line-height: 1;
  flex: 1;
}
.face2 {
  background-color: #073668;
  overflow: hidden;
  transition: 0.5s;
  z-index: 2;
}
.face2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.face1 h2 :hover {
  background: #073668;
  color: white;
}
.card:hover .face2 {
  width: 85px;
  height: 85px;
  border-radius: 0%;
  top: 37px;
  left: 38%;
  background-color: #fff;
  border: 2px solid #073668;
}
@media screen and (max-width: 575px) {
  .card .face2 {
    width: 85px;
    height: 85px;
    border-radius: 0%;
    top: 37px;
    left: 38%;
    background-color: #fff;
    border: 2px solid #073668;
  }
}

.benefits-g20 {
  background-image: linear-gradient(to bottom, var(--main-color) 50%, var(--main-dark-color) 50%);
}

.benefits-g20 .container-g20 > .flex {
  align-items: start;
}

@media screen and (min-width:576px) {
  .benefits-g20 .container-g20 > .flex {
    flex-direction: row;
  }  
  .benefits-g20 {
    background-image: linear-gradient(to right, var(--main-color) 50%, var(--main-dark-color) 50%);
  }  
}

.benefits-g20-list {
  color: var(--main-dark2-color);
  gap: 37px;
  padding: var(--sec-pad) 0;
  flex: 1;
}

.benefits-g20__item {
  gap: 21px;
  flex-direction: row-reverse;
}

.benefits-g20__item_icon div {
  align-content: center;
  padding: 10px;
  border: 4px solid var(--main-dark2-color);
  border-radius: 0%;
}

.benefits-g20__item_icon svg {
  margin: 0 auto;
  display: block;
  fill: var(--main-dark2-color);
  color: var(--main-dark2-color);
  width: 40px;
}

.benefits-g20-list p {
  margin: 0;
  font-weight: 400;
}

.benefits-g20-dec img {
  height: 110%;
  margin-top: -5%;
  width: 100%;
}

.fence-dec {
  background-image: url(artisticstorage/assets/fence-0684af177f334e.png);
  background-size: contain;
  background-repeat: repeat-x;
  background-position: 0 0;
  margin-top: -74px;
  height: 74px;
}

.stats-comment {
  padding: var(--sec-pad) 0;
  background-color: var(--main-color);
  overflow: hidden;
}

.stats-g20 {
  flex: 1;
}

.stats-g20 img {
 width: 100%;
 max-height: 390px;
 object-fit: contain;
}

.stats-comment .container-g20 >.flex {
  gap: 54px;
}

@media screen and (max-width: 767px) {
  .stats-comment .container-g20 >.flex {
    flex-direction: column;
  }  
}

.stats-g20 {
  flex-direction: column;
  justify-content: space-between;
  gap: 37px;
  display: none;
}

.stats-g20 .flex img {
  height: 145px;
}

.stats-g20-wrapper {
  align-items: center;
  gap: 37px;
}

.stats-g20-wrapper > .flex {
  gap: 28px;
}

.stats-g20__item:first-child {
  flex-direction: row;
}

.stats-g20__item .flex {
  color: var(--main-dark2-color);
  gap: 16px;
  justify-content: center;
}

.stats-g20__item h3 {
  font-size: 25px;
  font-weight: 800;
}

.stats-g20__item p {
  font-size: 21px;
  font-weight: 800;
  border-bottom: double 5px var(--main-dark-color)
}

.comment-slider {
  align-items: center;
  display: flex;
  padding: 16px;
}

.comment-slider .images {
  height: var(--image-size);
  margin: 37px var(--image-size) 16px;
  position: relative;
  width: var(--image-size);
}

@media screen and (max-width: 575px) {
  .comment-slider .images {
      margin: 37px var(--image-size) 16px;
  }
}

.comment-slider .images img {
  background-color: var(--white);
  border: solid 5px var(--white);
  border-radius: 0%;
  height: var(--image-size);
  left: 0;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(100%) scale(.8);
  transition: all .5s ease;
  width: var(--image-size);
  will-change: transform, opacity;
  z-index: 1;
}

.comment-slider .images .next {
  opacity: 1;
  transform: translateX(60%);
}

.comment-slider .images .current {
  box-shadow: 0 2px 8px #0001;
  opacity: 1;
  transform: scale(1.2); z-index: 2;
}

.comment-slider .images .previous {
  opacity: 1;
  transform: translateX(-60%);
}

.comment-slider .images img {
  width: 100%;
}

.comment-slider .images .out {
  opacity: 0;
  transform: translateX(-100%) scale(.8);
}

.comment-slider .comments {
  display: flex;
  flex: 1;
  justify-content: center;  
  background-color: #5f3213;
  background-image: url("img/woven-light.png");
  color: var(--white);
  border: 10px ridge #a04b12;
  padding: 21px;
}

.comment-slider .comments .comment > * {
  clip-path: polygon(
      0 0,
      100% 0,
      100% 100%,
      0 100%
  );
  transition: all .5s ease;
}

.comment-slider .comments .out {
  clip-path: polygon(
      0 0,
      100% 0,
      100% 0,
      0 0
  );
  opacity: 0;
  transform: translateY(20%);
}

.comment-slider .comments .name {
  display: inline-block;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: .5em;
  padding: 10px 44px;
  background-color: var(--accent-color);
  clip-path: polygon(57% 8%, 100% 0, 90% 48%, 100% 100%, 50% 93%, 0 100%, 11% 50%, 0 0);
}

@media (max-width: 767px) {
  section {
    flex: 1;
    padding: 0;
  }
  
  .comment-slider {
    align-items: center;
    flex-direction: column-reverse;
    text-align: center;
    justify-content: center;
  }
}

.form-disclamer {
  background-image: url(artisticstorage/back/opacity_bg-0684af177f314c.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: var(--sec-pad) 0;
  background-color: var(--main-dark2-color);
}

.form-disclamer .container-g20 .flex{
  gap: 44px;
}

@media screen and (max-width: 767px) {
  .form-disclamer .container-g20 .flex{
    flex-direction: column-reverse;
    gap: var(--big-pad);
  }  
}

.form-disclamer__item {
  flex: 1;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.disclamer-g20 {
  flex: 1;
}

.eggs {
  width: 300px;
  max-width: 486px;
  position: absolute;
  left: 0;
  top: -200px;
}

.disclamer-g20-wrap {
  background-color: #884f2a9e;
  background-image: url("img/tileable-wood-colored.png");
  color: var(--white);
  border: 10px ridge #a04b12;
  padding: 21px;
  text-shadow: 15px 27px 29px rgb(92 85 83 / 84%);;
  box-shadow: 8px -8px 0px 3px rgb(86 55 8);
}

.adult-g20 {
  width: 145px;
  margin-left: auto;
}

.adult-g20 img {
  width: 100%;
}

.disclamer-g20-content h2 {
  text-align: left;
}

.disclamer-g20-content p {
  font-size: 21px;
  font-weight: 800;
}

.form-g20 {
  border: 5px solid var(--main-color);
  padding: 28px;
  border-radius: 44px;
}

.input-main--block__component,
.textarea-main--block__component,
.input-g20 {
  font-size: 18px;
  font-weight: 400;
  transition: all .4s;
  line-height: 1.3;
  margin: 10px 0;
  outline: none;
  width: 100%;
  padding: 10px;
  border: none;
  background: transparent;
  color: #ffffff;
  border-radius: 5px;
  background-image: url('img/woven-light.png');
}'

.input-main--block__component:focus,
.textarea-main--block__component:focus,
.input-g20:focus {
  outline: none;
}

.form-g20 label {
  font-size: 18px;
  color: var(--white);
}

.input-main--block__component::placeholder,
.textarea-main--block__component::placeholder,
.input-g20::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

.form-g20-check {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  margin: 21px 0;
}

.form-g20-check a {
  color: #e692f5;
}

.form-part > div:nth-child(2) img {
  object-fit: contain;
  max-width: 100%;
  height: 397px;
  margin: 28px auto 0 auto;
}

.form-g20-check {
  margin: 16px 0;
}

.form-g20-check a {
  color: var(--main-color);
}

.footer-g20 {
  padding: 44px 0;
  background-color: var(--main-dark-color);
  color: var(--main-color);
}

.footer-g20 .container-g20 > .flex {
  gap: 54px;
  align-items: center;
}

.politics-g20 {
  flex-wrap: wrap;
  gap: 10px 21px;
}

.politics-g20 a {
  transition: all 0.6s ease-in-out;
  padding: 10px;
  font-size: 20px;
  color: var(--main-color);
}

.politics-g20 a:hover,
.politics-g20 a:focus  {
  border-bottom: 5px double var(--main-dark2-color);
  color: var(--main-dark2-color);
}

.about-page-g20 {
  padding: var(--sec-pad) 0;
  background-color: var(--main-color);
}

.about-page-g20 .container-g20 > .flex {
  gap: 54px;
}

.about-page-g20 img {
  width: 100%;
  max-height: 486px;
  max-width: 304px;
}

@media screen and (max-width: 991px) {
  .about-page-g20 img {
    width: auto;
    margin: 0 auto;
    max-width: 275px;
  }
}

.big-pad {
  background-color: var(--main-color);
  padding: 143px 0;
  gap: 79px;
}

.game-page-g20-img  {
  margin: 0 auto;
  width: 100%;
  -webkit-box-shadow: -2px 13px 31px 1px rgba(0,0,0,0.75);
  -moz-box-shadow: -2px 13px 31px 1px rgba(0,0,0,0.75);
  box-shadow: -2px 13px 31px 1px rgba(0,0,0,0.75);
  object-fit: contain;
  height: 446px;
}

@media screen and (max-width: 767px) {
  .game-page-g20-img  {
    height: auto;
  }
}

.game-page-g20-content {
  gap: 54px;
  background-color: #5f3213;
  background-image: url("img/woven-light.png");
  color: var(--white);
  border: 10px ridge #a04b12;
  padding: 21px;
}

.game-frame-g20 iframe {
  width: 100%;
  height: 397px;
  box-shadow: var(--box-shadow-out);
}

.contacts-page-g20 {
  padding: var(--sec-pad) 0;
  background-color: var(--main-dark-color);
}

.contacts-page-g20-content {
  gap: 44px;
}
@media screen and (max-width: 768px){
  .contacts-page-g20-content {
    flex-direction: column-reverse;
  }
}

.cont-list-g20 {
  gap: 28px;
}

.cont-item-g20 {
  display: flex;
  margin: 0;
  flex-direction: column;
  color: var(--main-color);
  align-items: center;
  gap: 16px;
  word-break: break-all;
}

.cont-item-g20 svg {
  width: 85px;
  padding: 10px;
  border: solid 5px var(--main-color);
  border-radius: 20%;
  fill: var(--main-color);
  border: 5px solid var(--main-color);
  border-radius: 44px;
}

.privacy-g20 {
  padding: var(--sec-pad) 0;
  background-color: var(--main-color);
}

.privacy-g20-txt {
  word-break: break-all;
  color: var(--main-dark2-color);
}

.privacy-g20-txt li {
  margin-left: 34px;
  padding: 10px 0;
  list-style: decimal;
}

.privacy-g20-txt a {
  color: var(--white);
}

.button_1 {
  padding: 16px 37px;
 border-radius: 7px;
 background: #d5f365;
 border: none;
 font-family: inherit;
 text-align: center;
 cursor: pointer;
 transition: 0.4s;
}

.button_1:hover {
 box-shadow: 7px 5px 56px -14px #C3D900;
}

.button_1:active {
 transform: scale(0.97);
 box-shadow: 7px 5px 56px -10px #C3D900;
}

.button_2 {
  --bezier: cubic-bezier(0.22, 0.61, 0.36, 1);
  --edge-light: hsla(0, 0%, 50%, 0.8);
  --text-light: rgba(255, 255, 255, 0.4);
  --back-color: 240, 40%;

  cursor: pointer;
  padding: 0.7em 1em;
  border-radius: 0.5em;
  min-height: 2.4em;
  min-width: 3em;
  display: flex;
  align-items: center;
  gap: 0.5em;

  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: bold;

  background: linear-gradient(
    140deg,
    hsla(var(--back-color), 50%, 1) min(2em, 20%),
    hsla(var(--back-color), 50%, 0.6) min(8em, 100%)
  );
  color: hsla(0, 0%, 90%);
  border: 0;
  box-shadow: inset 0.4px 1px 4px var(--edge-light);

  transition: all 0.1s var(--bezier);
}

.button_2:hover {
  --edge-light: hsla(0, 0%, 50%, 1);
  text-shadow: 0px 0px 10px var(--text-light);
  box-shadow: inset 0.4px 1px 4px var(--edge-light),
    2px 4px 8px hsla(0, 0%, 0%, 0.295);
  transform: scale(1.1);
}

.button_2:active {
  --text-light: rgba(255, 255, 255, 1);

  background: linear-gradient(
    140deg,
    hsla(var(--back-color), 50%, 1) min(2em, 20%),
    hsla(var(--back-color), 50%, 0.6) min(8em, 100%)
  );
  box-shadow: inset 0.4px 1px 8px var(--edge-light),
    0px 0px 8px hsla(var(--back-color), 50%, 0.6);
  text-shadow: 0px 0px 20px var(--text-light);
  color: hsla(0, 0%, 100%, 1);
  letter-spacing: 0.1em;
  transform: scale(1);
}

.button_3 {
font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  padding: 0.7em 2em;
  border: 3px solid #FF0072;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
  color: #FF0072;
  text-decoration: none;
  transition: 0.3s ease all;
  z-index: 1;
}

.button_3:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: '';
  background-color: #FF0072;
  z-index: -1;
}

.button_3:hover, .button_3:focus {
  color: white;
}

.button_3:hover:before, .button_3:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

.button_3:active {
  transform: scale(0.9);
}

.button_4 {
  appearance: button;
 background-color: #1899D6;
 border: solid transparent;
 border-radius: 16px;
 border-width: 0 0 4px;
 box-sizing: border-box;
 color: #FFFFFF;
 cursor: pointer;
 display: inline-block;
 font-size: 18px;
 font-weight: 800;
 letter-spacing: .8px;
 line-height: 1.3;
 margin: 0;
 outline: none;
 overflow: visible;
 padding: 10px 16px;
 text-align: center;
 text-transform: inherit;
 touch-action: manipulation;
 transform: translateZ(0);
 transition: filter .2s;
 user-select: none;
 -webkit-user-select: none;
 vertical-align: middle;
 white-space: nowrap;
}

.button_4:after {
 background-clip: padding-box;
 background-color: #1CB0F6;
 border: solid transparent;
 border-radius: 17px;
 border-width: 0 0 4px;
 bottom: -4px;
 content: "";
 left: 0;
 position: absolute;
 right: 0;
 top: 0;
 z-index: -1;
}

.button_4:main, .button_4:focus {
 user-select: auto;
}

.button_4:active:after {
 border-width: 0 0 0px;
}

.button_4:active {
 padding-bottom: 10px;
}

.button_5 {
  background-color: #eee;
  border: none;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 1rem;
  color: lightcoral;
  box-shadow: 0 0.4rem #dfd9d9;
  cursor: pointer;
 }
 
 .button_5:active {
  color: white;
  box-shadow: 0 0.2rem #dfd9d9;
  transform: translateY(0.2rem);
 }
 
 .button_5:hover:not(:disabled) {
  background: lightcoral;
  color: white;
  text-shadow: 0 0.1rem #bcb4b4;
 }
 
 .button_5:disabled {
  cursor: auto;
  color: grey;
 }
