
@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@300;400;500;600;700&display=swap');

body {
	overflow-x: hidden;
	font-family: 'Merriweather Sans', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 24px;
	color: #fff;
	text-align: left;
	background: #05071A;
	-webkit-text-size-adjust: 100%;
	   -moz-text-size-adjust: 100%;
	    -ms-text-size-adjust: 100%;
	        text-size-adjust: 100%;
}

p {
  margin-top: 16px;
}

ul, ol {
  text-align: left;
}

ul > li,
ol > li {
  display: block;
  position: relative;
	list-style: none;
  padding: 0px 0px 0px 28px;
}
ul > li + li,
ol > li + li {
	margin-top: 10px;
}
ol > li {
  counter-increment: ol;
}

ul > li:before,
ol > li:before {
	display: inline-block;
  position: absolute;
  top: 0px;
  left: 0px;
	width: 24px;
	font: inherit;
	text-align: center;
	padding: 0px 8px 0px 0px;
	padding-top: inherit;
}

ul > li:before {
  content: '';
	background-color: #FDBB00;
	width: 10px;
	height: 10px;
	left: 2px;
	top: 7px;
	padding: 0;
	-webkit-border-radius: 100%;
	        border-radius: 100%;
}

ol > li:before {
  content: counter(ol) '.';
	color: #fff;
}

a:hover {
  text-decoration: underline;
}



/* Title */
h1, h2, h3, h4, .title {
	display: block;
	position: relative;
  width: 100%;
  font-weight: 700;
	text-transform: uppercase;
  color: #FFAA00;
	text-align: center;
}

h1 {
	font-size: 48px;
	line-height: 120%;
}


h2{
  margin-bottom: 16px;
  font-size: 40px;
  line-height: 120%;
}

h3{
	font-size: 24px;
	line-height: 120%;
	margin: 16px 0px 16px 0px;
}

h4 {
	font-size: 24px;
	line-height: 120%;
	margin: 16px 0px 16px 0px;
}





/* Button */
.button {
	display: inline-block;
	position: relative;
	width: auto;
  min-width: 243px;
	height: auto;
	-webkit-border-radius: 10px 10px 20px 20px;
	        border-radius: 10px 10px 20px 20px;
	background: #E93E3A;
	-webkit-box-shadow: 0px 4px 56px 0px rgba(255, 124, 3, 0.80);
	        box-shadow: 0px 4px 56px 0px rgba(255, 124, 3, 0.80);
	font-style: normal !important;
	line-height: 1;
	text-align: center;
	color: #fff;
	white-space: nowrap;
	vertical-align: middle;
  cursor: pointer;
  margin: 16px auto 0px auto;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	padding: 16px 32px;
	font-weight: 400;
	margin: 0;
	font-size: 16px;
	line-height: 1;
	text-transform: capitalize;
}

.button:hover {
	-webkit-transform: scale(1.04);
	    -ms-transform: scale(1.04);
	        transform: scale(1.04);
	text-decoration: none;
	-webkit-box-shadow: 0px 4px 56px #e93e3a;
	        box-shadow: 0px 4px 56px #e93e3a;
}

.button-box {
	text-align: center;
}
.button-box .button {
	margin: 0;
}


.btn-box {
	text-align: center;
}

/* var */
.button > img,
.button > span {
	display: inline-block;
	position: relative;
	font: inherit;
	line-height: 1;
	vertical-align: middle;
}
.button > img + span {
	margin-left: 10px;
}



/* Article */

article > *:first-child,
.article > *:first-child {
	margin-top: 0px;
}

article > * + *,
.article > * + * {
	margin-top: 16px;
}

article > * + h2,
.article > * + h2 {
	margin-top: 16px;
}
article > * + h3,
.article > * + h3 {
	margin-top: 16px;
}
article > * + h4,
.article > * + h4 {
	margin-top: 16px;
}

article > h2 + *,
.article > h2 + * {
	margin-top: 0px;
}

article > h3 + *,
.article > h3 + *,
article > h4 + *,
.article > h4 + * {
	margin-top: 16px;
}

article li:first-child,
.article li:first-child {
	padding-top: 0px;
}

article p:first-child,
.article p:first-child {
	margin-top: 0px;
}
article p strong,
.article p strong {
	color: #FFAA00;
}
article a,
.article a {
	font-style: italic;
}

.article__button {
	margin-top: 16px;
}



.section {
  padding: 32px 20px;
  margin: 0 auto 20px auto;
	background: #132031;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
  position: relative;
  overflow: hidden;
	color: #fff;
	z-index: 0;
	max-width: 1240px;
}

/* Special */
.image {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.image img,
.background img {
	display: block;
	position: relative;
}
.image {
	z-index: -1;
}
.background img {
  margin: 0;
	width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.background {
	display: -webkit-box!important;
	display: -webkit-flex!important;
	display: -ms-flexbox!important;
	display: flex!important;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	position: absolute !important;
	top: 0px;
	bottom: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.background img {
	display: block;
}

.js-expand-content {
	display: none;
	overflow: hidden;
}

.js-expand-content.expanded {
	height: 100%;
}

svg {
  display: inline-block;
  position: relative;
  vertical-align: inherit;
	fill: rgba(255, 255, 255, 1);
  line-height: 1;
}
use {
  fill: rgba(255, 255, 255, 1);
  fill-rule: evenodd;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.path {
  fill: inherit;
  stroke: inherit;
  stroke-width: inherit;
}


/* Content */
.content,
.cover {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
	position: relative;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	height: 100%;
	width: 100%;
	padding: 32px 30px 0px 30px;
}
.cover {
  height: auto;
	padding-left: -webkit-calc(50% - ((1300px - 30px - 30px) / 2));
	padding-left: calc(50% - ((1300px - 30px - 30px) / 2));
	padding-right: -webkit-calc(50% - ((1300px - 30px - 30px) / 2));
	padding-right: calc(50% - ((1300px - 30px - 30px) / 2));
}



.content > *,
.cover > * {
	display: block;
	position: relative;
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}



/* HEADER */
.header {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	background: #05071A;
	color: rgba(255, 255, 255, 1);
	padding-top: 16px;
	padding-bottom: 16px;
	z-index: 2;
}



.header > * {
	display: block;
	position: relative;
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	width: auto;
}

.header__logo {
	margin-right: 20px;
	max-width: 105px;
}


.header__menu {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.header__button-menu {
	display: none;
}

/* logo */
.logo > img {
  display: block;
  position: relative;
  max-width: 100%;
}

.logo[href]:hover {
  opacity: 0.50;
}

/* Menu */
.menu ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 0px;
}

.menu li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
  position: relative;
	padding: 0px;
}
.menu li + li {
	margin: 0 0 0 6px;
}
.menu li:before { display: none; }

.menu li > a {
  display: inline-block;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	white-space: nowrap;
	font-weight: 400;
	font-size: 16px;
	line-height: 128%;
	text-transform: capitalize;
	color: #FFF5D6;
	padding: 10px 24px;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}

.menu li > a:hover {
  color: #FFAA00;
}

.menu li > a img {
	margin-right: 8px;
}

.header__button {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	    -ms-flex: 0 1 auto;
	        flex: 0 1 auto;
  margin: 0px 0px 0px 10px;
	min-width: auto;
}



/* hover */
.menu li:hover > a {
  text-decoration: none;
}


.header__menu .header__button-signup,
.header__menu .header__button-signin {
	display: none;
}
.header__button-signup {
	background: #FCC211;
	-webkit-box-shadow: 0px 4px 56px 0px rgba(255, 124, 3, 0.80);
	        box-shadow: 0px 4px 56px 0px rgba(255, 124, 3, 0.80);
	color: #05071A;
}


.header__button-signin {
	background: #262A39;
	-webkit-border-radius: 20px 20px 10px 10px;
	        border-radius: 20px 20px 10px 10px;
	color: #fff;
	-webkit-box-shadow: none;
	        box-shadow: none;
}

.header__language {
	position: relative;
	margin-left: auto;
	margin-right: 20px;
	-webkit-box-flex: 0;
	-webkit-flex: none;
	    -ms-flex: none;
	        flex: none;
}

.header__language-button {
	background: transparent;
	-webkit-box-shadow: none;
	        box-shadow: none;
	outline: none;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.header__language-icon {
	max-width: 26px;
}
.header__language-arrow {
	margin-left: 4px;
	width: 24px;
	height: 24px;
	display: block;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.header__language-button.active .header__language-arrow{
	-webkit-transform: scale(-1);
	    -ms-transform: scale(-1);
	        transform: scale(-1);
}


/* MAIN */
.main {
	display: block;
	position: relative;
	overflow-x: hidden;
}

.main > * {
	position: relative;
}


.prime {
	position: relative;
	z-index: 0;
	-webkit-border-radius: 0;
	        border-radius: 0;
	margin-bottom: 20px;
	overflow: hidden;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-justify-content: space-around;
	    -ms-flex-pack: distribute;
	        justify-content: space-around;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	padding-top: 0;
	padding-bottom: 0;
	padding-top: 133px;
	padding-bottom: 133px;
	min-height: 440px;
}



.prime__title {
	margin: 0;
	text-align: left;
	color: #fff;
	width: 50%;
}
.prime__title span, .prime__text span {
	display: block;
}
.prime__title span:first-child {
	color: #E23F3A;
	display: block;
}
.prime__title span:last-child {
	color: #FFAA00;
	display: block;
}
.prime__text span:first-child {
	color: #FFAA00;
}
.prime__text {
	width: 50%;
	font-size: 48px;
	line-height: 120%;
	color: #fff;
	text-align: left;
	font-weight: 700;
	margin: 0 0 0 50px;
}
.prime__image {
	position: absolute;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	max-width: 353px;
	right: -webkit-calc(50% - ((1300px - 30px - 30px) / 2));
	right: calc(50% - ((1300px - 30px - 30px) / 2));
	top: 13px;
}


/***table***/
.table {
	margin-top: 16px;
	width: 100%;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	border: 1px solid #FCC211;
	text-align: center;
	overflow: hidden;
}

tbody, table {
	width: 100%;
}

.table th,
.table td {
	padding: 16px;
	vertical-align: middle;
}

.table th:not(:last-child),
.table td:not(:last-child) {
	border-right: 1px solid #FCC211;
}

.table th {
	font-weight: 700;
	color: #FFAA00;
	text-transform: uppercase;
	padding: 16px 40px;
}

.table td {
	border-top: 1px solid #FCC211;
	padding: 16px;
}
.table td span {
	max-width: 865px;
	display: inline-block;
}

.table-advantages th{
	width: 50%;
}
.games-table {
	text-align: left;
	border: none;
}
.table.games-table th,
.table.games-table td {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 7px 16px;
	border: none;
	white-space: normal;
}
.games-table h3, .games-table h4 {
	text-align: left;
	font-size: 20px;
	margin: 0;
}
.games-table tr {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	border: 1px solid #FA0;
}
.games-table tr + tr {
	margin-top: 16px;
}
.games-table th {
   font-weight: 700;
   font-size: 20px;
   text-transform: uppercase;
   color: #FFAA00;
   white-space: nowrap;
   border-right: none;
	 width: 330px;
}
.games-table td {
	width: -webkit-calc(100% - 330px);
	width: calc(100% - 330px);
}


/** upto **/
.upto {
	padding: 130px 100px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.upto__wrap {
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.upto__title {
	font-weight: 700;
	font-size: 40px;
	line-height: 120%;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 20px;
	color: #fff;
}

.upto .txt-yellow {
	color: #FFBF05;
}
.upto .txt-red {
	color: #E23F3A;
}
.upto__text{
	color: #FFBF06;
	font-size: 24px;
	line-height: 30px;
	font-weight: 700;
	margin: 0 0 18px 0;
	text-align: center;
	text-transform: uppercase;
}


.upto__desc {
	margin: 8px 0 0 0;
	font-weight: 400;
	font-size: 10px;
	line-height: 150%;
	color: #fff;
	text-align: center;
}
.upto__button {
	min-width: 243px;
}
.upto__image {
	position: absolute;
	right: 0;
	bottom: 0;
}
.upto__background {
	z-index: -2;
}


/* bonus LIST */


.bonus__list {
  padding: 0px;
}
.bonus__list > li:before { display: none; }
.bonus-item {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding: 0 0 0 60px;
	min-height: 336px;
}


.bonus-item + .bonus-item {
	margin-top: 20px;
}
.bonus-item__image {
	max-width: 284px;
}
.bonus-item__inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	padding: 49px 90px 71px 0px;
}
.bonus-item__desc {
	max-width: 300px;
	width: 100%;
	margin-left: 20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
.bonus-item__subtitle {
	color: #FFF;
	font-size: 25px;
	font-style: normal;
	font-weight: 700;
	line-height: 31.25px;
	margin: 0 0 9px 0;
}
.bonus-item__title {
	color: #FCC211;
	text-align: left;
	margin: 0;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: 50px;
}

.bonus-item__list {
	-webkit-border-radius: 10px;
	        border-radius: 10px;
	border: 1px solid #C25001;
	background: rgba(0, 0, 0, 0.30);
	padding: 12px 16px;
	margin-bottom: 26px;

}
.bonus-item:nth-child(2) .bonus-item__list {
	border: 1px solid #5BF9D0;
}
.bonus-item:nth-child(3) .bonus-item__list {
	border: 1px solid #3E5DC8;
}

.bonus-item__list li {
	display: block;
	padding: 0;
	color: #FFF;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 125%;
}
.bonus-item__list li::before {
	display: none;
}
.bonus-item__list li + li {
	margin-top: 9px;
}

.bonus-item__button {
	width: 100%;
	min-width: 100%;
	margin: 0;
}


/***benefits**/
.benefits {
	padding: 70px 70px 23px 70px;
}

.benefits__head {
	margin-bottom: 18px;
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.benefits__text {
	color: #FFF;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 180%;
	margin: 0;
}
.benefits__head .benefits__text {
	max-width: 550px;
}

.benefits__bottom {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.benefits__inner {
	margin: 0 40px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	    -ms-flex: 0 1 auto;
	        flex: 0 1 auto;
	width: 100%;
	max-width: 640px;
	text-align: center;
}

.benefits__subtitle {
	color: #FCC211;
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	line-height: 110%;
	text-transform: uppercase;
	margin: 0 0 20px 0;
}
.benefits__button {
	margin-top: 27px;
}

/**services**/
.services {
	text-align: center;
}

.services__image {
	display: inline-block;
	margin: 16px auto 0 auto;
	z-index: 1;
}
.services__image img {
	max-width: 352px;
	width: 100%;
}

/**reviews**/
.reviews__list li + li {
	margin: 0;
}
.reviews__name{
	color: #FFAA00;
}
/* F.A.Q. */
.faq .faq__title {
	margin-bottom: 25px;
}

.faq__list > li:before { display: none; }

.faq-item {
	padding: 0;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	border: 1px solid #FFAA00;
	overflow: hidden;
}


.faq-item + .faq-item {
	margin-top: 16px;
}

.faq-item__title {
	text-align: left;
	cursor: pointer;
	margin: 0;
	padding: 12px 60px 12px 20px;
	font-weight: 700;
	font-size: 16px;
	line-height: 150%;
	text-transform: uppercase;
	color: #fff;
}

.faq-item__title::before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	background-image: url(../images/icons/faq-arrow.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	right: 20px;
	top: 13px;
}

.faq-item.active .faq-item__title::before{
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}
.faq-item__desc{
	border-top: 1px solid #FFAA00;
}
.faq-item__desc p {
	margin: 0px;
	font-size: 16px;
	line-height: 24px;
	color: #FFFFFF;
}
.faq-item__desc a {
	font-size: 16px;
	color: #FFFFFF;
}
.faq-item__desc .wrap {
	padding: 16px 12px;
}



/* FOOTER */
.footer {
	background-color: #05071A;
	-webkit-border-radius: 4px;
	        border-radius: 4px;
	padding-top: 40px;
	padding-bottom: 40px;
	color: #fff;
	z-index: 0;
}

.footer::before {
	content: '';
	display: block;
	width: 100%;
	height: 164px;
	position: absolute;
	bottom: 0;
	left: 0;
	background-image: url(../images/footer-bg.svg);
	background-position: center bottom;
	background-size: contain;
	background-repeat: repeat-x;
	z-index: -1;
}

.footer__logo {
	margin-bottom: 20px;
}
.footer__content {
	padding: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}


.footer__additional {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.footer__additional > div {
	margin-right: 20px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	    -ms-flex: 0 1 auto;
	        flex: 0 1 auto;
}
.footer__additional p {
	font-weight: 300;
	font-size: 14px;
	line-height: 150%;
	margin: 0;
	color: #FFFFFF;
}
.footer__additional p + p {
	margin-top: 1rem;
}
.footer__copy {
	text-align: left;
	width: 100%;
	margin: 0;
	font-weight: 300;
	font-size: 14px;
	line-height: 150%;
	color: #FFFFFF;
}

.footer__img {
	text-align: center;
}
.footer__img img {
	max-width: 123px;
}

.app {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 50px;
}


.app__logo{
	margin-right: 101px;
}

.app__buttons {
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	z-index: 1;
	margin: -10px;
}
.app__item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	padding: 14px 32px;
	min-width: 240px;
	margin: 10px;
	-webkit-border-radius: 30px 30px 10px 10px;
	        border-radius: 30px 30px 10px 10px;
	border: 2px solid #FFAA00;
	background: rgba(41, 37, 38, 0.50);
	-webkit-box-shadow: inset 0px 0px 190px 0px rgba(255, 191, 5, 0.45);
	        box-shadow: inset 0px 0px 190px 0px rgba(255, 191, 5, 0.45);
}

.app__item:hover {
	text-decoration: none;
	background: rgba(41, 37, 38, 1);
}
.app__item:last-child{
	-webkit-border-radius: 10px 10px 30px 30px;
	        border-radius: 10px 10px 30px 30px;
}


.app__item span {
	text-align: center;
	color: #FFFFFF;
	display: block;
	margin-left: 16px;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 16px;
}

.table-payments {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.table-payments th {
	white-space: nowrap;
}
.table-payments table:nth-child(2) {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.table-payments table:nth-child(2) tbody  {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.table-payments table:nth-child(2) th:first-child, .table-payments table:nth-child(2) td:first-child{
	border-right: none;
	border-left: 1px solid #FCC211;
	display: block;
}
.table-payments table:nth-child(2) tr {
	display: block;
	width: 100%;
}
.table-payments table:nth-child(2) tr:nth-child(2) {
	height: 100%;
}
.table-payments table:nth-child(2) tr:nth-child(2) td {
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.payments p {
	text-align: center;
}
