@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

svg use {
    fill: #fff;
    fill-rule: evenodd;
}

.path {
    fill: #fff;
    stroke: #fff;
}

.svg-menu rect, .menu-button path, .menu {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    width: 100%;
    color: #fff;
    font-size: 17px;
    line-height: 25px;
    overflow-x: hidden;
    background: #1c1c40;
}

body.active {
    overflow: hidden;
}

* {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: #1c1c3f;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

ul {
    list-style: none;
}

ul > li {
    display: inline-block;
}

span {
    display: inline-block;
}

.image img {
    display: block;
    margin: auto;
}

.header {
    z-index: 1000;
    width: 100%;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.main {
    margin: auto;
}

.content {
    max-width: 1170px;
    padding: 25px 30px;
    margin: 25px auto 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    background: #2a2a5a;
    -webkit-box-shadow: 0 0 20px 15px rgba(0, 0, 62, 0.2);
    -moz-box-shadow: 0 0 20px 15px rgba(0, 0, 62, 0.2);
    box-shadow: 0 0 20px 15px rgba(0, 0, 62, 0.2);
}

h1, h2, h3, h4, .title {
    font-weight: 400;
    z-index: 10;
    display: block;
    color: #fff;
}

h1, .title.general {
    font-size: 50px;
    line-height: 50px;
    text-transform: uppercase;
}

h2 {
    font-size: 45px;
    line-height: 50px;
    text-transform: uppercase;
}

.title.high {
    font-size: 35px;
    line-height: 40px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

h3, .title.middle {
    font-size: 35px;
    line-height: 40px;
}

h4, .title.small {
    font-size: 30px;
    line-height: 35px;
}

.logo img {
    display: block;
    margin: auto;
}


.button {
    min-width: 160px;
    background: -webkit-gradient(linear, left top, left bottom, from(#eb7237), to(#bf4748));
    background: -webkit-linear-gradient(#eb7237, #bf4748);
    background: -moz-linear-gradient(#eb7237, #bf4748);
    background: -o-linear-gradient(#eb7237, #bf4748);
    background: linear-gradient(#eb7237, #bf4748);
    color: #fff;
    font-size: 15px;
    line-height: 25px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
	height: auto;
	overflow: hidden;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
    cursor: pointer;
    margin: auto;
    z-index: 1;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    padding: 12.5px 15px;
    -webkit-box-shadow: 0 15px 10px rgba(0, 0, 62, 0.2);
    -moz-box-shadow: 0 15px 10px rgba(0, 0, 62, 0.2);
    box-shadow: 0 15px 10px rgba(0, 0, 62, 0.2);
}

.button:not(.prime__button):hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}



.list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -30px;
    margin-top: -25px;
}

.list > li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 90px) / 3);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 90px) / 3);
    margin-left: 30px;
    margin-top: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
}

.list a {
    display: block;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #b5b1b1;
}

.list img {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    display: block;
    width: 100%;
    height: 100%;
}

.list a:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}


/* header */


.header__content.content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #fff;
}

.header__logo {
    background: -webkit-gradient(linear, left top, left bottom, from(#2a2a5a), to(#1c1c40));
    background: -webkit-linear-gradient(#2a2a5a, #1c1c40);
    background: -moz-linear-gradient(#2a2a5a, #1c1c40);
    background: -o-linear-gradient(#2a2a5a, #1c1c40);
    background: linear-gradient(#2a2a5a, #1c1c40);
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    -webkit-box-shadow: 0 5px 15px 10px rgba(0, 0, 62, 0.3);
    -moz-box-shadow: 0 5px 15px 10px rgba(0, 0, 62, 0.3);
    box-shadow: 0 5px 15px 10px rgba(0, 0, 62, 0.3);
}

.button.header__button {
    -webkit-box-shadow: 0 15px 10px rgba(165, 80, 0, 0.2);
    -moz-box-shadow: 0 15px 10px rgba(165, 80, 0, 0.2);
    box-shadow: 0 15px 10px rgba(165, 80, 0, 0.2);
    margin-left: 30px;
}

.button.header__button:hover {
    -webkit-box-shadow: 0 15px 15px rgba(165, 80, 0, 0.3);
    -moz-box-shadow: 0 15px 15px rgba(165, 80, 0, 0.3);
    box-shadow: 0 15px 15px rgba(165, 80, 0, 0.3);
}

.logo {
    margin-right: 30px;
    height: 50px;
    display: block;
    min-width: 255px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    padding: 5px 10px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.logo:hover {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.menu {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    flex: 1;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #1c1c3f;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
}

.footer__menu.menu {
    border: 1px solid #fff;
}

.menu ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    width: 100%;
}

.menu li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(100% / 3);
    -moz-box-flex: 0;
    flex: 0 1 calc(100% / 3);
}

.menu a {
    display: block;
    text-align: center;
    padding: 15px 10px;
    line-height: 20px;
}

.menu a:hover {
    color: rgb(38, 0, 177);
}

.menu.footer__menu a {
    color: #fff;
}

.menu.footer__menu a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.menu li + li a:before {
    content: '';
    position: absolute;
    height: 25px;
    top: -webkit-calc(50% - 12.5px);
    top: -moz-calc(50% - 12.5px);
    top: calc(50% - 12.5px);
    width: 1px;
    left: -1px;
    background: #1c1c3f;
}

.footer__menu.menu li + li a:before {
    background: #fff;
}

.footer__copyright {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 160px;
    -moz-box-flex: 0;
    flex: 0 1 160px;
    margin-left: 30px;
}




/* cover */


.cover {
    margin-top: -50px;
    background: #2a2a5a;
    padding: 75px 0 25px;
    overflow: hidden;
}

.content.cover__content {
    margin-top: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    text-align: center;
    padding-bottom: 50px;
    overflow: visible;
    padding: 0;
}

.cover__wrap {
    padding: 25px 30px 50px;
    border: 2px solid #91514b;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    z-index: 100;
}

.page-home .cover__wrap {
    padding: 75px 30px;
}

.cover__button {
    margin-top: 50px;
}

.cover__wrap:before, .cover__wrap:after {
    content: '';
    width: 50px;
    height: 50px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    background: -webkit-gradient(linear, left top, left bottom, from(#e76f39), to(#c14947));
    background: -webkit-linear-gradient(#e76f39, #c14947);
    background: -moz-linear-gradient(#e76f39, #c14947);
    background: -o-linear-gradient(#e76f39, #c14947);
    background: linear-gradient(#e76f39, #c14947);
    position: absolute;
    top: -webkit-calc(50% - 25px);
    top: -moz-calc(50% - 25px);
    top: calc(50% - 25px);
}

.cover__wrap:before {
    left: -26px;
}

.cover__wrap:after {
    right: -26px;
}

.cover__content:before, .cover__content:after {
    content: '';
    width: 40%;
    height: -webkit-calc(100% - 100px);
    height: -moz-calc(100% - 100px);
    height: calc(100% - 100px);
    position: absolute;
    top: 50px;
}

.cover__content:before {
    left: -20%;
    background: -webkit-gradient(linear, left top, right top, from(transparent), to(#38386b));
    background: -webkit-linear-gradient(left, transparent, #38386b);
    background: -moz-linear-gradient(left, transparent, #38386b);
    background: -o-linear-gradient(left, transparent, #38386b);
    background: linear-gradient(to right, transparent, #38386b);
    -webkit-border-radius: 0 150px 150px 0;
    -moz-border-radius: 0 150px 150px 0;
    border-radius: 0 150px 150px 0;
}

.cover__content:after {
    right: -20%;
    background: -webkit-gradient(linear, left top, right top, from(#38386b), to(transparent));
    background: -webkit-linear-gradient(left, #38386b, transparent);
    background: -moz-linear-gradient(left, #38386b, transparent);
    background: -o-linear-gradient(left, #38386b, transparent);
    background: linear-gradient(to right, #38386b, transparent);
    -webkit-border-radius: 150px 0 0 150px;
    -moz-border-radius: 150px 0 0 150px;
    border-radius: 150px 0 0 150px;

}



/* casino */





/* app */

.app__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    align-items: stretch;
    color: #1c1c40;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #fff;
}

.app__wrap {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 68%;
    -moz-box-flex: 0;
    flex: 0 1 68%;
    padding-left: 30px;
    max-width: -webkit-calc(100% - 250px);
    max-width: -moz-calc(100% - 250px);
    max-width: calc(100% - 250px);
}

.title.app__title {
    color: #1c1c40;
    text-transform: none;
    font-size: 50px;
    line-height: 55px;
}

.app__image {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 32%;
    -moz-box-flex: 0;
    flex: 0 1 32%;
    min-width: 250px;
    background: -webkit-gradient(linear, left top, left bottom, from(#e66e3a), to(#c24a47));
    background: -webkit-linear-gradient(#e66e3a, #c24a47);
    background: -moz-linear-gradient(#e66e3a, #c24a47);
    background: -o-linear-gradient(#e66e3a, #c24a47);
    background: linear-gradient(#e66e3a, #c24a47);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    padding: 15px;
}




/* article  */

article {
    border: 1px solid #7b7ce4;
}

article > * + *, .article > * + * {
    margin-top: 25px;
}

article li, .article li {
    padding-left: 30px;
}

article li + li, .article li + li {
    margin-top: 10px;
}

.article .bonus__list li:before {
    content: none;
}

.article ul li:before, article ul li:before {
    content: "—";
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    position: absolute;
    left: 0;
    top: -1px;
}

.article ol, article ol {
    list-style-position: inside;
    list-style: none;
}

.article ol > li, article > ol li {
    counter-increment: ol;
}

.article ol > li:before, article ol > li:before {
    content: counter(ol);
    font-weight: 400;
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
}

.article > ol > li:marker, article > ol > li:marker {
    content: counters(li);
}



/* breadcrumbs */

.breadcrumbs {
    margin-bottom: 50px;
}

.breadcrumbs a {
    color: #eb7237;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 25px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    font-weight: 300;
}

.breadcrumbs li:nth-child(2) a {
    color: rgb(118, 118, 118);
}

.breadcrumbs li:nth-child(2) a:hover {
    color: #fff;
}

.breadcrumbs li:nth-child(2) a:not([href]) {
    color: #fff;
}

.breadcrumbs span {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.breadcrumbs li:after {
    content: "|";
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    margin: 0 12px 0 8px;
}

.breadcrumbs li:last-child:after {
    content: none;
}

.breadcrumbs li:last-child a {
    color: #fff;
}

.breadcrumbs a:hover {
    color: #fff;
}


/* footer */

.footer {
    background-color: #17173b;
    border-top: 1px solid #383887;
    margin-top: 25px;
    padding-bottom: 50px;
}

.footer__content.content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    font-size: 15px;
    font-weight: 300;
}

.footer__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    align-items: stretch;
    margin-bottom: 50px;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}




/* prime */

.prime__content.content {
    overflow: hidden;
    border: 2px solid #5555a3;
    padding: 0;
}

.prime__image {
    overflow: hidden;
    position: relative;
    width: 100%;
    text-align: center;
    -webkit-transition: none;
    -o-transition: none;
    -moz-transition: none;
    transition: none;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.prime__image > div {
    padding-top: 56.25%;
}

.prime__button.button {
    position: absolute;
    left: 50%;
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%);
    -moz-transform: translate(-50%, 50%);
    -o-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    z-index: 100;
    padding-left: 35px;
    cursor: pointer;
    -webkit-box-shadow: 0 0 15px 10px rgb(165 80 0 / 20%);
    -moz-box-shadow: 0 0 15px 10px rgb(165 80 0 / 20%);
    box-shadow: 0 0 15px 10px rgb(165 80 0 / 20%);
}

.prime__button::before {
    content: url(../images/play.svg);
    position: absolute;
    left: 25px;
    top: 15px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.prime__button.button:hover {
    -webkit-box-shadow: 0 0 20px 10px rgb(165 80 0 / 30%);
    -moz-box-shadow: 0 0 20px 10px rgb(165 80 0 / 30%);
    box-shadow: 0 0 20px 10px rgb(165 80 0 / 30%);
}

.prime__button:hover:before {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.page-slot iframe {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.page-slot .iframe-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.page-slot .iframe-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.iframe-img.hidden,
.prime__image-button.hidden {
    display: none;
}

.page-slot iframe.visible {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.slot-details-icons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 10000;
}

.slot-details-icon {
    font-size: 21px;
    text-align: center;
}

.slot-details-icon i {
    cursor: pointer;
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    -moz-transition: 0.4s all;
    transition: 0.4s all;
}

[class*=' fa-']:before,
[class^='fa-']:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 24px;
    height: 24px;
    display: inline-block;
    -moz-background-size: contain;
    background-size: contain;
    background-position: center;
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    -moz-transition: 0.4s all;
    transition: 0.4s all;
}

.fa-resize-full:before {
    background-image: url(../images/full-screen.svg);
}

.prime__image.full-screen-iframe i.fa-resize-full:before {
    background-image: url(../images/exit-full-screen.svg);
}

[class*=' fa-']:hover:before,
[class^='fa-']:hover:before {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.prime__image.full-screen-iframe {
    position: fixed;
    right: 50%;
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -o-transform: translateX(50%);
    transform: translateX(50%);
    max-width: 1350px;
    top: 0;
    z-index: 10000;
    overflow: hidden;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: none;
}

.prime__image.full-screen-iframe > div {
    height: 100vh;
    position: relative;
}




/* error */

.page-404 .cover {
    text-align: center;
}

.page-404 .cover__wrap {
    padding: 50px 30px;
}

.title.error__title {
    font-size: 220px;
    line-height: 250px;
    font-weight: 400;
    color: #3f4072;
    letter-spacing: 25px;
    text-align: center;
}

.page-404 + .footer {
    margin-top: 0;
}

.page-404 .cover {
    padding-bottom: 50px;
}

.page-404 {
    min-height: -webkit-calc(100vh - 75px - 175px);
    min-height: -moz-calc(100vh - 75px - 175px);
    min-height: calc(100vh - 75px - 175px);
    background: rgb(42, 42, 90);
}



.subscribe {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	        -moz-box-align: center;
	        align-items: center;
	position: fixed;
	z-index: -999;
	width: 0;
	height: 0;
	margin: 0;
	border: none;
	overflow: hidden;
	opacity: 0;
	padding: 50px 0;
	left: 0;
	top: 0;
	visibility: hidden;
	-webkit-transition: opacity .5s 0s,visibility 0s .5s;
	-o-transition: opacity .5s 0s,visibility 0s .5s;
	-moz-transition: opacity .5s 0s,visibility 0s .5s;
	transition: opacity .5s 0s,visibility 0s .5s;
}


.subscribe.active {
	opacity: 1;
	overflow-y: auto;
	width: 100vw;
	height: 100%;
	z-index: 1000;
	visibility: visible;
	-webkit-transition: opacity .5s 0s,visibility 0s 0s;
	-o-transition: opacity .5s 0s,visibility 0s 0s;
	-moz-transition: opacity .5s 0s,visibility 0s 0s;
	transition: opacity .5s 0s,visibility 0s 0s;
    background: rgba(29, 29, 29, 0.5);
}

.subscribe__content {
    margin: auto;
	position: relative;
	padding: 50px 30px;
	background: -webkit-gradient(linear, left top, left bottom, from(#f48129), to(#ef503b));
	background: -webkit-linear-gradient(#f48129, #ef503b);
	background: -moz-linear-gradient(#f48129, #ef503b);
	background: -o-linear-gradient(#f48129, #ef503b);
	background: linear-gradient(#f48129, #ef503b);
	width: 100%;
    z-index: 0;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    text-align: center;
}

.subscribe__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 11;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
            -moz-box-align: center;
            align-items: center;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;

}

.subscribe__close:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.subscribe__close rect {
    fill: #fff;
}

.title.subscribe__title {
    margin-bottom: 25px;
    color: #fff;
    font-size: 50px;
    line-height: 55px;
}

.subscribe__field {
    margin-bottom: 30px;
}

.subscribe__input {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-size: 22px;
    color: #fff;
    max-width: 410px;
    margin: auto;
    padding: 10px 20px;
    width: 70%;
}

.subscribe__input::-webkit-input-placeholder {
    color: #fff;
}

.subscribe__input::-moz-placeholder {
    color: #fff;
}

.subscribe__input:-ms-input-placeholder {
    color: #fff;
}

.subscribe__input::-ms-input-placeholder {
    color: #fff;
}

.subscribe__input:-moz-placeholder {
    color: #fff;
}

.subscribe__input::placeholder {
    color: #fff;
}

.button.subscribe__button {
    text-align: center;
}

.subscribe__button .button {
    background: #fff;
    color: #000;
    min-width: 160px;
    padding: 10px 15px;
    font-size: 15px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: none;
    font-weight: 500;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.subscribe__button .button.hidden {
  display: none;
}
.subscribe__button .button.loading {
  pointer-events: none;
  background: rgba(255,255,255,1) url('../images/loading.gif') no-repeat center center / 30px 30px;
  color: rgba(0,0,0,0);
  transition: none;
}

.subscribe__button .button:hover {
    -webkit-box-shadow: 0 0 30px 20px rgba(167, 0, 164, 0.1);
    -moz-box-shadow: 0 0 30px 20px rgba(167, 0, 164, 0.1);
    box-shadow: 0 0 30px 20px rgba(167, 0, 164, 0.1);
}

.subscribe__message {
  display: none;
  line-height: 25px;
  padding: 10px 0;
}
.subscribe__message.active {
  display: block;
}






/* POPUP */

.popup {
    background: rgba(29, 29, 29, 0.5);
	position: fixed;
	top: -100vh;
    height: 100vh;
	left: 0;
	right: 0;
	z-index: 10;
	padding: 30vh 0 2vh;
	overflow: auto;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;

}

.popup.active {
    z-index: 1000;
    top: 0;
}

.popup__content {
	margin: auto;
	padding: 50px 30px;
	height: auto;
    text-align: center;
    background: #fff;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    -webkit-box-shadow: 0 0 50px 30px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 50px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 50px 30px rgba(0, 0, 0, 0.1);
}

.popup-error .popup__content {
	background: #474747;
    border: 2px solid #87878d;
}

.button.popup__button {
    text-transform: none;
    font-size: 15px;
    font-weight: 500;
    border: none;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    min-width: 160px;
    padding: 10px 15px;
    color: #fff;
    margin-top: 50px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    text-transform: none;
}

.popup-error .button.popup__button {
    background: #bebdbd;
    color: #282728;
    font-weight: 700;
}

.popup-success .button.popup__button {
    background: -webkit-gradient(linear, left top, left bottom, from(#f48129), to(#ee463d));
    background: -webkit-linear-gradient(#f48129, #ee463d);
    background: -moz-linear-gradient(#f48129, #ee463d);
    background: -o-linear-gradient(#f48129, #ee463d);
    background: linear-gradient(#f48129, #ee463d);
}

.button.popup__button:hover {
    -webkit-box-shadow: 0 0 30px 20px rgba(255, 255, 255, 0.05);
    -moz-box-shadow: 0 0 30px 20px rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 30px 20px rgba(0, 0, 0, 0.05);
}



.title.popup__title span {
    display: block;
}

.title.popup__title {
    font-size: 24px;
    line-height: 32px;
    text-transform: none;
    color: #f48129;
    font-weight: 400;
}

.popup-success .popup__title span:nth-child(2) {
    color: #636363;
}

.popup-error .popup__title span:nth-child(2) {
    color: #fff;
}
