h1,
h2,
h3,
h4,
h5,
h6 {
    color: #f9b121;
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    line-height: 1;
}
h1 {
    font-size: 32px;
}
p {
    color: #fff;
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 40px;
}
@font-face {
    font-family: koodakfont;
    src: url(fonts/BKoodakBold.eot);
    src: url(fonts/BKoodakBold.eot?#iefix) format("embedded-opentype"), url(fonts/BKoodakBold.woff) format("woff"), url(fonts/BKoodakBold.ttf) format("truetype");
}
@font-face {
    font-family: montfont;
    src: url(fonts/MontLight.woff2) format("woff2"), url(fonts/MontLight.woff) format("woff"), url(fonts/MontLight.ttf) format("truetype");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: montfont;
    src: url(fonts/Mont.woff2) format("woff2"), url(fonts/Mont.woff) format("woff"), url(fonts/Mont.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: montfont;
    src: url(fonts/MontMedium.woff2) format("woff2"), url(fonts/MontMedium.woff) format("woff"), url(fonts/MontMedium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: montfont;
    src: url(fonts/MontBold.woff2) format("woff2"), url(fonts/MontBold.woff) format("woff"), url(fonts/MontBold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
}
@-webkit-keyframes a {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes a {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
    padding: 6px 5px;
    display: inline-block;
    cursor: pointer;
    -webkit-transition-property: opacity, -webkit-filter;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    line-height: 0;
}
.hamburger:hover {
    opacity: 1;
}
.hamburger-box {
    width: 20px;
    height: 18px;
    display: inline-block;
    position: relative;
}
.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
    width: 20px;
    height: 2px;
    background-color: #ddd;
    border-radius: 4px;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}
.hamburger-inner:after,
.hamburger-inner:before {
    content: "";
    display: block;
}
.hamburger-inner:before {
    top: -8px;
}
.hamburger-inner:after {
    bottom: -8px;
}
.hamburger--elastic .hamburger-inner {
    top: 1px;
    -webkit-transition-duration: 0.275s;
    transition-duration: 0.275s;
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner:before {
    top: 8px;
    -webkit-transition: opacity 0.125s ease 0.275s;
    transition: opacity 0.125s ease 0.275s;
}
.hamburger--elastic .hamburger-inner:after {
    top: 16px;
    -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
    -webkit-transform: translate3d(0, 8px, 0) rotate(135deg);
    transform: translate3d(0, 8px, 0) rotate(135deg);
    -webkit-transition-delay: 75ms;
    transition-delay: 75ms;
}
.hamburger--elastic.is-active .hamburger-inner:before {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner:after {
    -webkit-transform: translate3d(0, -16px, 0) rotate(-270deg);
    transform: translate3d(0, -16px, 0) rotate(-270deg);
    -webkit-transition-delay: 75ms;
    transition-delay: 75ms;
}
#loader-wrapper {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
#loader {
    display: block;
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;
    -webkit-animation: b 2s linear infinite;
    animation: b 2s linear infinite;
    z-index: 1001;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #e74c3c;
    -webkit-animation: b 3s linear infinite;
    animation: b 3s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f9c922;
    -webkit-animation: b 1.5s linear infinite;
    animation: b 1.5s linear infinite;
}
@-webkit-keyframes b {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
@keyframes b {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #000;
    z-index: 1000;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
#loader-wrapper .loader-section.section-left {
    left: 0;
}
#loader-wrapper .loader-section.section-right {
    right: 0;
}
.progress-message {
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index: 9999;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.progress-message.en {
    font-family: montfont, Arial, Helvetica, sans-serif;
}
.progress-message.fa {
    font-family: koodakfont, Verdana, Geneva, Tahoma, sans-serif;
}
.loaded#loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}
.loaded#loader-wrapper .loader-section.section-left,
.loaded#loader-wrapper .loader-section.section-right {
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1) 0.3s;
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1) 0.3s;
}
.loaded#loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}
.loaded #loader,
.loaded .progress-message {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.loaded#loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s ease-out 1s;
    transition: all 0.3s ease-out 1s;
}
html.loading {
    overflow: hidden;
}
.shop-header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 100px;
    padding-left: 0;
    margin-bottom: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.shop-header:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-image: url(images/glowbar1.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.shop-header--logo {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    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;
    padding: 12px 10px 15px 22px;
}
.shop-header--logo:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 15px;
    width: 2px;
    background-color: rgba(53, 61, 65, 0.8);
}
.shop-header--logo--title {
    font-size: 38px;
    line-height: 38px;
    color: #f9b121;
}
.shop-header--logo--desc {
    font-size: 20px;
    line-height: 20px;
    color: #8b8b8b;
}
.shop-header--games {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.shop-header--games,
.shop-header--games--logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    background-color: rgba(0, 0, 0, 0.37);
}
.shop-header--games--logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 15px 15px 25px 20px;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.shop-header--games--logo--title {
    font-size: 25px;
    line-height: 1;
    color: #fff;
}
.shop-header--games--logo--desc {
    font-size: 18px;
    line-height: 1.2;
    color: #f9b121;
}
.shop-header--games--list {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: auto;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    background-color: rgba(0, 0, 0, 0.37);
}
.shop-header--games--list,
.shop-header--games--list--item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.shop-header--games--list--item {
    position: relative;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
}
.shop-header--games--list--item:not(:last-child) {
    margin-left: 2px;
}
.shop-header--games--list--item:not(:last-child):after {
    content: "";
    display: block;
    position: absolute;
    left: -2px;
    top: 12px;
    bottom: 15px;
    width: 2px;
    background-color: rgba(53, 61, 65, 0.8);
}
.shop-header--games--list--item--highlight {
    display: none;
}
.shop-header--games--list--item--icon {
    display: block;
    width: 60px;
    height: 60px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: -webkit-transform 0.1s ease-in-out;
    transition: -webkit-transform 0.1s ease-in-out;
    transition: transform 0.1s ease-in-out;
    transition: transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}
.shop-header--games--list--item--link {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 12px 14px;
    min-width: 103px;
}
.shop-header--games--list--item--link:hover .shop-header--games--list--item--icon {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
    -webkit-transform-origin: center;
    transform-origin: center;
}
.shop-header--games--list--item-active .shop-header--games--list--item--highlight {
    display: block;
    position: absolute;
    left: 7px;
    right: 7px;
    top: 0;
    bottom: 0;
    background-image: url(images/shop_icon_highlight.png);
    background-size: 100% 100%;
    z-index: -1;
}
.shop-header--games--list--item-active .shop-header--games--list--item--icon {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
}
@media (max-width: 1200px) {
    .shop-header {
        padding-right: 50px;
    }
}
@media (max-width: 940px) {
    .shop-header {
        padding-right: 30px;
    }
}
@media (max-width: 700px) {
    .shop-header {
        padding-left: 30px;
    }
    .shop-header--games--logo {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-left: -30px;
    }
    .shop-header--games--list {
        width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
        margin: 0 -30px;
    }
}
@media (max-width: 300px) {
    .shop-header--logo {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
    }
    .shop-header--logo:after {
        display: none;
    }
    .shop-header--games--logo {
        width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
        margin: 0 -30px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-bottom: 0;
    }
}
.page-main-container {
    width: 100%;
    padding: 0 100px;
}
.container-pay-page .page-main-container {
    padding-left: 120px;
    padding-right: 80px;
}
@media (max-width: 1200px) {
    .container-pay-page .page-main-container,
    .page-main-container {
        padding: 0 50px;
    }
}
@media (max-width: 940px) {
    .container-pay-page .page-main-container,
    .page-main-container {
        padding: 0 30px;
    }
}
.gift-carts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
    margin-bottom: 50px;
    justify-items: center;
}
@media (max-width: 400px) {
    .gift-carts-list {
        grid-template-columns: 1fr;
    }
}
.gift-cart {
    display: block;
    position: relative;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    max-width: 300px;
    width: 100%;
}
.gift-cart--image {
    display: block;
    width: 100%;
    height: auto;
}
.gift-cart--game-icon {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    position: absolute;
    top: 2.27273%;
    left: 0;
    padding: 3.33333%;
    padding-left: 5%;
    border-top-right-radius: 16.66667%;
    border-bottom-right-radius: 16.66667%;
    background-color: rgba(0, 0, 0, 0.3);
    width: 23.33333%;
    height: 15.76577%;
}
.gift-cart--game-icon--image {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}
.gift-cart--light-ray {
    position: absolute;
    top: 4.5045%;
    left: 10%;
    right: 10%;
}
.gift-cart--light-ray--image {
    display: block;
    width: 100%;
    height: auto;
}
.gift-cart--price {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 6.75676%;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    text-align: center;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(10%, hsla(0, 0%, 100%, 0)), color-stop(50%, hsla(0, 0%, 100%, 0.2)), color-stop(90%, hsla(0, 0%, 100%, 0)));
    background-image: linear-gradient(90deg, hsla(0, 0%, 100%, 0) 10%, hsla(0, 0%, 100%, 0.2) 50%, hsla(0, 0%, 100%, 0) 90%);
}
.gift-cart--price--text {
    position: relative;
    top: 3px;
}
.gift-cart--desc {
    position: absolute;
    color: #f9b121;
    text-align: center;
    top: 69.14414%;
    left: 0;
    width: 100%;
    font-size: 20px;
    text-shadow: 0 3px 1px #000;
}
.gift-cart--buy-btn {
    position: absolute;
    top: 75.25773%;
    left: 17.91045%;
    right: 17.91045%;
    border: 4px solid hsla(0, 0%, 100%, 0.27);
    padding: 6px;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    font-size: 32px;
    line-height: 20px;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}
.gift-cart--package {
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 35%;
    left: 50%;
    width: 70%;
    height: 40%;
}
.gift-cart--package--image {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}
.gift-cart--value {
    position: absolute;
    bottom: 32.65766%;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 28px;
}
.gift-cart--value--icon {
    display: inline-block;
    vertical-align: middle;
    width: 10%;
    height: 13.51351%;
    margin-left: 4px;
}
.gift-cart--value--icon--image {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}
@media (hover: hover) {
    .gift-cart:hover {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    .gift-cart:hover .gift-cart--buy-btn {
        opacity: 1;
    }
}
@media (hover: none) {
    .gift-cart--buy-btn {
        opacity: 1;
    }
}
@media (max-width: 400px) {
    .gift-cart--desc {
        font-size: calc(1em + 1vw);
    }
    .gift-cart--price {
        font-size: calc(1em + 4vw);
        bottom: 2.25225%;
    }
    .gift-cart--buy-btn {
        font-size: calc(1em + 4vw);
        padding: 2%;
    }
    .gift-cart--value {
        font-size: calc(1em + 2vw);
    }
}
.pay-form {
    position: relative;
    padding: 30px;
    background-color: #f2f4f4;
    margin-bottom: 30px;
}
.pay-form--header {
    margin-top: 0;
}
.pay-form--header,
.pay-form--section--header {
    color: #1a5c7c;
    margin-bottom: 15px;
    padding: 0 15px;
    font-size: 34px;
}
.pay-form--section--header {
    margin-top: 20px;
}
.pay-form--section-contact-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 45px;
    border-bottom: 1px solid #93b0be;
}
.pay-form--section-contact-info--desc {
    max-width: 774px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-bottom: 50px;
    margin-left: 30px;
}
.pay-form--text-bubble {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    color: #575656;
    margin-bottom: 10px;
}
.pay-form--text-bubble--paragraph {
    margin: 0;
    padding: 0;
    color: #575656;
}
.pay-form--hint {
    color: #ea9104;
    font-size: 24px;
}
.pay-form--hint:before {
    content: "* ";
    display: inline;
}
.pay-form--text-bubble--header {
    color: #939393;
    font-size: 28px;
}
.pay-form--payment-details {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    color: #575656;
}
.pay-form--payment-details--product-name {
    color: #575656;
    font-size: 40px;
    margin-bottom: 15px;
}
.pay-form--payment-details--expiration {
    color: #ea9104;
    font-size: 28px;
}
.pay-form--section-contact-info--inputs {
    max-width: 600px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-bottom: 50px;
}
.pay-form--input-row {
    position: relative;
    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: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    direction: ltr;
    padding-right: 75px;
    padding-left: 10px;
}
.pay-form--input-row:not(:last-child) {
    margin-bottom: 55px;
}
.pay-form--input-row--text-input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background-color: #fff;
    padding: 20px;
    font-size: 28px;
    color: #3e3e3e;
    direction: ltr;
    border-radius: 10px;
    border: 3px solid #1a5c7c;
    outline: none;
    font-family: koodakfont, Arial, Helvetica, sans-serif;
}
.pay-form--input-row--error {
    color: #cb395c;
    font-size: 24px;
    margin-top: 10px;
    display: none;
}
.pay-form--input-row--invalid-icon {
    background-image: url(images/shop/cross.png);
}
.pay-form--input-row--invalid-icon,
.pay-form--input-row--valid-icon {
    display: none;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 54px;
    height: 54px;
    background-size: 100% auto;
    background-position: 50%;
    background-repeat: no-repeat;
}
.pay-form--input-row--valid-icon {
    background-image: url(images/shop/tick.png);
}
.pay-form--input-row-error .pay-form--input-row--text-input,
.pay-form--input-row-invalid .pay-form--input-row--text-input {
    border-color: #cb395c;
}
.pay-form--input-row-valid .pay-form--input-row--valid-icon {
    display: block;
}
.pay-form--input-row-invalid:not(:last-child) {
    margin-bottom: 21px;
}
.pay-form--input-row-invalid .pay-form--input-row--error,
.pay-form--input-row-invalid .pay-form--input-row--invalid-icon {
    display: block;
}
.pay-form--section-order-info {
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px;
}
.pay-form--section-order-info,
.pay-form--section-order-info--details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    align-items: flex-start;
}
.pay-form--section-order-info--details {
    max-width: 774px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 30px;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.pay-form--section-order-info--details .pay-form--header {
    margin-bottom: 20px;
}
.pay-form--section-order-info--invoice {
    max-width: 555px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 45px;
    margin-top: 20px;
}
.pay-form--section-order-info--invoice--parts {
    border-bottom: 1px solid #b9bbbb;
    padding: 0 10px;
    padding-bottom: 15px;
    font-size: 28px;
}
.pay-form--section-order-info--invoice--parts--price {
    color: #565656;
    margin-bottom: 20px;
}
.pay-form--section-order-info--invoice--parts--discount {
    color: #ea9104;
}
.pay-form--section-order-info--invoice--total {
    padding-top: 25px;
    padding-right: 12px;
    padding-left: 20px;
    color: #185471;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 36px;
}
.pay-form--section-order-info--invoice--total--label {
    margin-left: 15px;
}
.pay-form--footer {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.pay-form--footer,
.pay-form--footer--left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.pay-form--footer--left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.pay-form--footer--right {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.pay-form--cancel,
.pay-form--footer--right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.pay-form--cancel {
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    font-size: 26px;
    color: #575757;
    margin-bottom: 20px;
}
.pay-form--cancel--icon {
    position: relative;
    bottom: 5px;
    width: 17px;
    height: 18px;
    margin-left: 15px;
    background-image: url(images/X.svg);
    background-size: 100% 100%;
}
.pay-form--breadcrump {
    padding: 0;
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 20px;
    color: #8e8e8e;
}
.pay-form--breadcrump--item:not(:last-child):after {
    content: ">";
    margin: 0 5px;
}
.pay-form--breadcrump--item-active {
    color: #6d6d6d;
    font-weight: 700;
}
.pay-form--breadcrump--item-active:not(:last-child):after {
    color: #8e8e8e;
    font-weight: 400;
}
.pay-form--footer--error {
    color: #cb395c;
    font-size: 24px;
    margin-left: 25px;
    display: none;
}
.pay-form--footer--error-show {
    display: block;
}
.pay-form--button {
    background-color: #39b54a;
    padding: 30px;
    border: none;
    cursor: pointer;
    color: #fff;
    border-radius: 30px;
    font-family: koodakfont, Arial, Helvetica, sans-serif;
    font-size: 32px;
    outline: none;
}
.pay-form--button:disabled,
.pay-form--button[disabled] {
    background-color: #5c5c5c;
    cursor: default;
}
@media (max-width: 1280px) {
    .pay-form--section-order-info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .pay-form--section-order-info--details {
        margin: 0;
        margin-bottom: 30px;
    }
    .pay-form--section-order-info--invoice {
        margin: 0;
    }
    .pay-form--footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
    .pay-form--footer--left {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 30px;
    }
    .pay-form--footer--right {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}
@media (max-width: 1060px) {
    .pay-form--section-contact-info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .pay-form--section-contact-info--desc,
    .pay-form--section-contact-info--inputs {
        max-width: unset;
    }
    .pay-form--section-contact-info--desc {
        margin: 0;
        margin-bottom: 20px;
    }
}
@media (max-width: 900px) {
    .pay-form--footer--left {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .pay-form--footer--error {
        text-align: center;
        margin-bottom: 15px;
    }
}
@media (max-width: 750px) {
    .pay-form {
        margin-top: 30px;
        padding: 10px;
    }
    .pay-form--hint,
    .pay-form--input-row--error,
    .pay-form--text-bubble--header,
    .pay-form--text-bubble--paragraph {
        font-size: 20px;
        line-height: 1.6;
    }
    .pay-form--input-row--invalid-icon,
    .pay-form--input-row--valid-icon {
        width: 20px;
        height: 20px;
    }
    .pay-form--input-row {
        padding-right: 40px;
    }
    .pay-form--input-row--text-input {
        padding: 10px;
        font-size: 20px;
    }
}
@media (max-width: 700px) {
    .pay-form--payment-details--product-name {
        font-size: 28px;
    }
    .pay-form--payment-details--expiration {
        font-size: 20px;
    }
    .pay-form--section-order-info,
    .pay-form--section-order-info--details {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
    .pay-form--section-order-info--invoice {
        max-width: 774px;
    }
    .pay-form--section-order-info--invoice--parts,
    .pay-form--section-order-info--invoice--parts--price {
        font-size: 20px;
    }
    .pay-form--section-order-info--invoice--total {
        font-size: 24px;
    }
}
@media (max-width: 480px) {
    .pay-form--section-order-info--invoice--total {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .pay-form--section-order-info--invoice--total--label {
        margin-bottom: 20px;
    }
}
.pay-result {
    position: relative;
    padding: 30px;
    background-color: #f2f4f4;
    margin-bottom: 30px;
}
.pay-result--body {
    border-bottom: 1px solid #93b0be;
}
.pay-result--footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.pay-result--footer--right {
    -ms-flex-item-align: end;
    align-self: flex-end;
}
.pay-result--footer--center {
    margin-top: 10px;
}
.pay-result--footer--left {
    margin-top: 20px;
    margin-left: 30px;
}
.pay-result--button {
    display: inline-block;
    background-color: #f19c23;
    padding: 30px;
    border: none;
    cursor: pointer;
    color: #fff;
    border-radius: 30px;
    font-family: koodakfont, Arial, Helvetica, sans-serif;
    font-size: 32px;
    outline: none;
    text-decoration: none;
    text-align: center;
}
.pay-result--link {
    text-decoration: none;
    color: #20749b;
    border-bottom: 3px solid #20749b;
    font-size: 24px;
}
@media (max-width: 1280px) {
    .pay-result--footer {
        -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;
    }
    .pay-result--footer--left {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
        justify-content: stretch;
        -ms-flex-item-align: stretch;
        align-self: stretch;
        margin: 0;
        margin-bottom: 30px;
    }
    .container-pay-failure-page .pay-result--footer--left {
        margin-top: 30px;
    }
    .pay-result--footer--center {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-bottom: 30px;
    }
    .pay-result--footer--right {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        -ms-flex-item-align: auto;
        align-self: auto;
    }
    .pay-result--button {
        display: block;
    }
}
@media (max-width: 750px) {
    .pay-result {
        margin-top: 30px;
        padding: 10px;
    }
}
.breadcrump {
    padding: 0;
    margin: 0;
    list-style: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 20px;
    color: #8e8e8e;
}
.breadcrump,
.breadcrump--item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.breadcrump--item:not(:last-child):after {
    content: ">";
    margin: 0 5px;
}
.breadcrump--item--icon-failure,
.breadcrump--item--icon-success {
    display: none;
    width: 25px;
    height: 25px;
    background-size: 100% 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    margin: 4px;
}
.breadcrump--item--icon-failure {
    background-image: url(images/shop/cross.png);
}
.breadcrump--item--icon-success {
    background-image: url(images/shop/tick.png);
}
.breadcrump--item-active {
    color: #6d6d6d;
    font-weight: 700;
}
.breadcrump--item-active:not(:last-child):after {
    color: #8e8e8e;
    font-weight: 400;
}
.breadcrump--item-failure .breadcrump--item--icon-failure,
.breadcrump--item-success .breadcrump--item--icon-success {
    display: inline-block;
}
.pay-success {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
}
.pay-success,
.pay-success--order-code {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.pay-success--order-code {
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    color: #8f8f8f;
    font-size: 30px;
    margin-bottom: 15px;
}
.pay-success--thanks {
    color: #575656;
    font-size: 38px;
    margin-bottom: 85px;
    text-align: center;
}
.pay-success--success-msg {
    text-align: center;
    color: #39b54a;
    font-size: 36px;
    line-height: 1.6;
    margin-bottom: 10px;
}
.pay-success--msg {
    color: #575656;
    font-size: 34px;
    margin-bottom: 20px;
    text-align: center;
}
.pay-success--code-box {
    background-color: #fff;
    border-radius: 20px;
    padding: 34px;
    max-width: 575px;
    color: #1a5a78;
    text-align: center;
    font-size: 68px;
    font-family: Montserrat, sans-serif;
    margin-bottom: 50px;
}
.pay-success--small-msg {
    color: #888;
    font-size: 24px;
    text-align: center;
}
.pay-success--msg1 {
    margin-bottom: 20px;
}
.pay-success--msg2 {
    margin-bottom: 60px;
}
.pay-success--success-msg--text {
    margin-left: 10px;
}
.pay-success--success-msg--icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: inline-block;
    width: 47px;
    height: 47px;
    background-image: url(images/shop/tick.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 50%;
    vertical-align: middle;
}
.pay-success--order-code--label {
    margin-left: 10px;
}
.pay-success--order-code--code {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    direction: ltr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
@media (max-width: 1054px) {
    .pay-success--order-code {
        font-size: 20px;
    }
    .pay-success--thanks {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .pay-success--success-msg {
        font-size: 24px;
    }
    .pay-success--success-msg--icon {
        width: 20px;
        height: 20px;
    }
    .pay-success--msg {
        font-size: 26px;
    }
    .pay-success--code-box {
        padding: 15px;
        font-size: 28px;
        margin-bottom: 30px;
    }
    .pay-success--small-msg {
        font-size: 20px;
    }
    .pay-success--msg2 {
        margin-bottom: 30px;
    }
}
.pay-failure {
    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;
    min-height: 585px;
    padding: 30px 0;
}
.pay-failure--failure-msg {
    text-align: center;
    color: #cb395c;
    font-size: 36px;
    line-height: 1.6;
    margin-bottom: 25px;
}
.pay-failure--failure-msg--text {
    margin-left: 10px;
}
.pay-failure--failure-msg--icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: inline-block;
    width: 47px;
    height: 47px;
    background-image: url(images/shop/cross.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 50%;
    vertical-align: middle;
}
.pay-failure--msg {
    color: #8f8f8f;
    font-size: 30px;
    margin-bottom: 30px;
    text-align: center;
}
.pay-failure--code-box {
    color: #575656;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    max-width: 300px;
    text-align: center;
    font-size: 30px;
}
@media (max-width: 580px) {
    .pay-failure {
        min-height: unset;
    }
    .pay-failure--failure-msg {
        font-size: 24px;
    }
    .pay-failure--failure-msg--icon {
        width: 20px;
        height: 20px;
    }
    .pay-failure--msg {
        font-size: 20px;
    }
    .pay-failure--code-box {
        font-size: 24px;
        line-height: 1.7;
    }
}
*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body,
html {
    margin: 0;
    padding: 0;
    font-family: montfont, Arial, Helvetica, sans-serif;
    direction: ltr;
}
html.rtl,
html.rtl body {
    direction: rtl;
    font-family: koodakfont, Arial, Helvetica, sans-serif;
}
html .en,
html .fa {
    display: none;
}
html.en .en,
html.fa .fa {
    display: block;
}
body {
    position: relative;
    background-color: #00151e;
}
h2 {
    font-size: 28px;
    line-height: 40px;
    font-weight: 500;
}
.container,
.nav-container {
    width: 100%;
    margin: 0 auto;
}
.fluid-container,
nav {
    width: 100%;
}
nav {
    z-index: 9999;
    position: fixed;
    margin: 0 auto;
}
.site-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(ellipse at center, #1e698d 0, #000 100%);
    overflow: hidden;
    z-index: -1;
}
.lang-selector {
    position: relative;
    width: auto;
    direction: ltr;
    padding: 0 15px;
    border-radius: 22.5px;
    background-color: rgba(0, 0, 0, 0.3);
}
.lang-selector > .lang-item {
    display: none;
}
.lang-selector > .lang-item.selected-lang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    cursor: pointer;
}
.lang-selector > .lang-item.selected-lang .lang-code {
    top: 4px;
    font-size: 18px;
    line-height: 45px;
    color: #ddd;
    margin-right: 5px;
}
.lang-selector > .lang-item.selected-lang .flag-icon,
.lang-selector > .lang-item.selected-lang .lang-code {
    position: relative;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.lang-selector > .lang-item.selected-lang .flag-icon {
    width: 20px;
    height: 20px;
    overflow: visible;
    margin-right: 15px;
}
.lang-selector > .lang-item.selected-lang .flag-icon img {
    display: block;
    width: 100%;
    height: auto;
}
.lang-selector > .lang-item.selected-lang .arrow-down,
.lang-selector > .lang-item.selected-lang .arrow-up {
    display: block;
    position: relative;
    top: 0;
    height: 8px;
    width: auto;
    overflow: visible;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.lang-selector > .lang-item.selected-lang .arrow-down img,
.lang-selector > .lang-item.selected-lang .arrow-up img {
    display: block;
    height: 100%;
    width: auto;
}
.lang-selector > .lang-item.selected-lang .arrow-up {
    display: none;
}
.lang-selector .flag-menu {
    cursor: default;
    display: none;
    position: absolute;
    min-width: 100%;
    left: 0;
    top: 50px;
    padding: 0 15px;
    border-radius: 22.5px;
    background-color: rgba(0, 0, 0, 0.3);
}
.lang-selector .flag-menu a {
    display: block;
    text-decoration: none;
}
.lang-selector .flag-menu > .lang-item,
.lang-selector .flag-menu > a.lang-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.lang-selector .flag-menu > .lang-item .lang-code,
.lang-selector .flag-menu > a.lang-item .lang-code {
    position: relative;
    top: 4px;
    font-size: 18px;
    line-height: 45px;
    color: #ddd;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-right: 10px;
}
.lang-selector .flag-menu > .lang-item .flag-icon,
.lang-selector .flag-menu > a.lang-item .flag-icon {
    display: block;
    width: 20px;
    height: 20px;
    overflow: visible;
}
.lang-selector .flag-menu > .lang-item .flag-icon img,
.lang-selector .flag-menu > a.lang-item .flag-icon img {
    display: block;
    width: 100%;
    height: auto;
}
.lang-selector .flag-menu > .lang-item.selected-lang,
.lang-selector .flag-menu > a.lang-item.selected-lang,
.lang-selector.open .arrow-down {
    display: none;
}
.lang-selector.open .arrow-up,
.lang-selector.open .flag-menu {
    display: block;
}
.lang-selector-container {
    -webkit-box-orient: vertical;
    -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;
    margin-bottom: 70px;
}
.lang-selector-container,
.nav-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
}
.nav-container {
    background: rgba(0, 27, 44, 0.75);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    height: 60px;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.nav-container:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: hsla(0, 0%, 100%, 0.1);
}
.nav-container .logo-container {
    display: block;
    position: absolute;
    width: 50px;
    height: auto;
    margin-top: -22.94px;
    margin-left: -25px;
    top: 50%;
    left: 50%;
}
.nav-container .logo-container a,
.nav-container .logo-container img {
    display: block;
}
.nav-container .logo-container img {
    width: 100%;
    height: auto;
}
.nav-container .lang-selector {
    display: block;
    position: absolute;
    right: 52px;
    top: 35px;
}
.nav-container .left-menu,
.nav-container .right-menu {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    color: #ddd;
    font-size: 20px;
    line-height: 30px;
}
.nav-container .left-menu .menu-item,
.nav-container .right-menu .menu-item {
    margin: 0 25px;
    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;
    position: relative;
}
.nav-container .left-menu .menu-item.active:after,
.nav-container .right-menu .menu-item.active:after {
    content: "";
    display: block;
    position: absolute;
    top: calc(100% - 3px);
    left: -33px;
    right: -33px;
    height: 2px;
    background-image: url(images/glowbar1.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 50%;
    z-index: 9999;
}
.nav-container .left-menu a,
.nav-container .right-menu a {
    text-decoration: none;
    color: #ddd;
}
.nav-container .left-menu a:hover,
.nav-container .right-menu a:hover {
    color: #fff;
}
.nav-container .left-menu {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 77px;
}
.nav-container .left-menu,
.nav-container .right-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.nav-container .right-menu {
    padding-left: 77px;
}
.nav-container .hamburger {
    display: none;
    position: absolute;
    left: 30px;
    top: 15px;
}
.nav-container .hamburger:hover .hamburger-inner,
.nav-container .hamburger:hover .hamburger-inner:after,
.nav-container .hamburger:hover .hamburger-inner:before {
    background-color: #fff;
}
.nav-container .small-nav-menu {
    display: block;
    position: absolute;
    left: 30px;
    top: 60px;
    border-radius: 4px;
    min-width: 150px;
    max-width: calc(100% - 60px);
    background-color: #082531;
    -webkit-box-shadow: 0 0 2px 0 hsla(0, 0%, 100%, 0.4);
    box-shadow: 0 0 2px 0 hsla(0, 0%, 100%, 0.4);
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: -webkit-transform 0.1s ease-in-out;
    transition: -webkit-transform 0.1s ease-in-out;
    transition: transform 0.1s ease-in-out;
    transition: transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}
.nav-container .small-nav-menu li {
    text-align: center;
}
.nav-container .small-nav-menu li > a {
    display: block;
    padding: 8px 10px;
    line-height: 30px;
    -webkit-transition: background-color 0.1 ease-in-out;
    transition: background-color 0.1 ease-in-out;
    background-color: transparent;
}
.nav-container .small-nav-menu li > a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}
.nav-container .small-nav-menu a {
    color: #ddd;
    text-decoration: none;
}
.nav-container .small-nav-menu a:hover {
    color: #fff;
}
.hero-image-container {
    width: 100%;
    position: relative;
    -webkit-box-shadow: 0 6px 13px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 6px 13px 0 rgba(0, 0, 0, 0.5);
}
.hero-image-container:before {
    display: block;
    content: "";
    width: 100%;
    height: calc(100vh - 120px);
    max-height: 75vw;
}
.hero-image-container > .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}
.hero-image-container > .content .hero-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
#main-container {
    background-position: bottom;
    background-size: 100% auto;
    background-repeat: repeat;
    min-height: 100vh;
}
#main-container.about-page,
#main-container.container-pay-failure-page,
#main-container.container-pay-page,
#main-container.container-pay-success-page,
#main-container.container-shop-page {
    padding-top: 100px;
}
#main-container:after {
    display: block;
    content: "";
    clear: both;
    height: 1px;
}
section .section-title {
    position: relative;
    height: 120px;
    background-color: rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.7);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 62px;
    color: #ddd;
}
section .section-title h2 {
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
    margin-top: 3px;
    cursor: pointer;
}
section .section-title .arrow {
    position: absolute;
    width: 30px;
    height: auto;
    left: 50%;
    margin-left: -15px;
    top: 85px;
    cursor: pointer;
    -webkit-animation: a 1.2s infinite;
    animation: a 1.2s infinite;
}
section .section-title .arrow img {
    width: 100%;
    height: auto;
}
@media (max-width: 750px) {
    section .section-title .arrow {
        width: 15px;
        margin-left: -7.5px;
        top: 45px;
        display: none;
    }
}
section .section-title:after,
section .section-title:before {
    display: block;
    content: "";
    height: 2px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0 28px;
}
section .section-title:before {
    background: -webkit-gradient(linear, right top, left top, from(#ffb424), to(rgba(255, 180, 36, 0)));
    background: linear-gradient(270deg, #ffb424 0, rgba(255, 180, 36, 0));
}
section .section-title:after {
    background: -webkit-gradient(linear, left top, right top, from(#ffb424), to(rgba(255, 180, 36, 0)));
    background: linear-gradient(90deg, #ffb424 0, rgba(255, 180, 36, 0));
}
.main-slider {
    position: relative;
}
.main-slider .slider-indicator {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.main-slider .slider-indicator .indicator-item {
    width: 100px;
    height: 15px;
    border-radius: 3px;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    opacity: 0.2;
    cursor: pointer;
    margin: 0 15px;
}
.main-slider .slider-indicator .indicator-item.active {
    opacity: 1;
    background-color: #ffb424;
    -webkit-box-shadow: 0 0 19px 0 #ffb424, 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 19px 0 #ffb424, 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}
.main-slider.no-js {
    height: calc(100vh - 120px);
    max-height: 75vw;
    background-image: url(images/logo_gray.png);
    background-position: 50%;
    background-size: 20% auto;
    background-repeat: no-repeat;
    opacity: 0.5;
}
.main-slider.no-js .hero-image-container {
    position: absolute;
    top: 0;
}
.games-section {
    overflow: hidden;
    padding-bottom: 70px;
}
.games-section .games-list-wrapper {
    background: -webkit-gradient(linear, left top, left bottom, from(#001b2c), to(#135673));
    background: linear-gradient(180deg, #001b2c, #135673);
    overflow: visible;
    margin-bottom: 26px;
    position: relative;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
}
.games-section .games-list-wrapper .circuitbg {
    background-image: url(images/circuitbg.png), url(images/jscodebg.png), url(images/jscodebg2.png), url(images/jscodebg2.png);
    background-repeat: repeat-x, no-repeat, no-repeat, no-repeat;
    background-position: 90% top, 0 0, 30% -150px, 90% -50px;
    opacity: 0.4;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
@media (max-width: 940px) {
    .games-section .games-list-wrapper .circuitbg {
        background-image: url(images/circuitbg.png), url(images/jscodebg.png);
        background-repeat: repeat-x, no-repeat;
        background-position: 90% top, 0 0;
    }
}
.games-section .games-list-wrapper:after,
.games-section .games-list-wrapper:before {
    display: block;
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 9000;
    pointer-events: none;
    opacity: 0.8;
}
.games-section .games-list-wrapper:before {
    left: 0;
    background: -webkit-gradient(linear, left top, right top, from(#020d14), to(rgba(0, 17, 24, 0)));
    background: linear-gradient(90deg, #020d14 0, rgba(0, 17, 24, 0));
}
.games-section .games-list-wrapper:after {
    right: 0;
    background: -webkit-gradient(linear, right top, left top, from(#020d14), to(rgba(0, 17, 24, 0)));
    background: linear-gradient(270deg, #020d14 0, rgba(0, 17, 24, 0));
}
.about-page-section {
    padding: 0 30px;
    padding-top: 60px;
    margin-bottom: 60px;
}
.page-content-container {
    position: relative;
    border-radius: 14px;
    background-color: rgba(2, 13, 20, 0.65);
    padding: 25px 50px;
    padding-bottom: 40px;
    min-height: 316px;
    margin-bottom: 15px;
    -webkit-box-shadow: 0 0 1px 0 hsla(0, 0%, 100%, 0.1);
    box-shadow: 0 0 1px 0 hsla(0, 0%, 100%, 0.1);
}
.page-content-container:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-image: url(images/glowbar1.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.page-content-container h1 {
    color: #fdb524;
    font-size: 32px;
    line-height: 40px;
    font-weight: 400;
    margin-bottom: 66px;
    text-align: center;
}
.page-content-container p {
    font-size: 18px;
    line-height: 30px;
    color: #ddd;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
    text-align: justify;
}
.contact-info-container {
    text-align: center;
    font-size: 22px;
    line-height: 36px;
    color: #ddd;
}
.contact-info-container .contact-info {
    color: #fdb524;
    font-weight: 500;
    font-size: 24px;
    line-height: 40px;
    text-shadow: 0 0 2px #000;
}
.footer-section .bottom-head {
    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;
    position: relative;
    margin-bottom: 30px;
}
.footer-section .bottom-head .bottom-logo-container {
    display: block;
}
.footer-section .bottom-head .bottom-logo-container a {
    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: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-decoration: none;
    color: #ececec;
}
.footer-section .bottom-head .bottom-logo-container a:hover {
    color: #fff;
}
.footer-section .bottom-head .bottom-logo-container .logo {
    width: 120px;
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.footer-section .bottom-head .bottom-logo-container .logo img {
    max-width: 100%;
    height: auto;
}
.footer-section .bottom-head .bottom-logo-container .title {
    font-size: 21px;
    line-height: 35px;
    font-weight: 500;
}
.footer-section .socials-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: -15px 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 25px;
}
.footer-section .socials-container a {
    display: block;
    text-decoration: none;
}
.footer-section .socials-container .social-item {
    margin: 15px;
    width: 40px;
    height: 40px;
    overflow: visible;
}
.footer-section .socials-container .social-item img {
    width: 100%;
    height: auto;
    display: block;
}
.footer-section .copyright-notice-container {
    direction: ltr;
    font-size: 17px;
    line-height: 29px;
    color: #ececec;
    font-family: Calibri, Arial, Helvetica, sans-serif;
    text-align: center;
    margin-bottom: 25px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-top: 2px solid #d8d8d8;
    padding-top: 20px;
}
.game-cards-container {
    position: relative;
    padding: 15px;
    width: 100%;
    overflow: visible;
    height: 221px;
}
.game-cards-container .inner-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 9001;
}
.game-card {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 164px;
    height: 164px;
    margin: 0 16px;
    overflow: visible;
    -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.57);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.57);
}
.game-card .image-container {
    position: relative;
    width: 100%;
    height: 164px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}
.game-card .image-container:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-image: url(images/dimmer.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.game-card .image-container img {
    width: 100%;
    height: auto;
}
.game-card .activeframe {
    z-index: 2;
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: visible;
    pointer-events: none;
    border: 6px solid #ffb424;
    border-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    -webkit-box-shadow: 0 0 30px 0 #ffb424;
    box-shadow: 0 0 30px 0 #ffb424;
}
.game-card .activeframe:before {
    content: "";
    display: block;
    position: absolute;
    top: 158px;
    left: -6px;
    width: 0;
    height: 0;
    border: 82px solid transparent;
    border-top: 40px solid #ffb424;
    border-bottom: none;
    -webkit-filter: drop-shadow(0 0 30px #ffb424);
    filter: drop-shadow(0 0 30px #ffb424);
}
.game-card .activeframe:after {
    content: "";
    display: block;
    position: absolute;
    top: 225px;
    left: -102px;
    right: -102px;
    height: 4px;
    background-image: url(images/glowbar1.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.game-card.active {
    z-index: 9001;
}
.game-card.active .image-container:after {
    display: none;
}
.game-card.active .activeframe {
    display: block;
}
.game-descriptions-list {
    list-style: none;
    padding: 0 30px;
    margin: 0;
    position: relative;
}
.game-descriptions-list > li {
    display: none;
    position: relative;
    border-radius: 14px;
    background-color: rgba(0, 0, 0, 0.35);
    padding: 25px 50px;
    padding-bottom: 40px;
    -webkit-box-shadow: 0 0 1px 0 hsla(0, 0%, 100%, 0.1);
    box-shadow: 0 0 1px 0 hsla(0, 0%, 100%, 0.1);
}
.game-descriptions-list > li:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-image: url(images/glowbar1.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.game-descriptions-list > li.active {
    display: block;
}
.game-descriptions-list > li h2 {
    color: #fdb524;
    font-weight: 400;
    margin-bottom: 18px;
}
.game-descriptions-list > li .description {
    font-size: 18px;
    line-height: 30px;
    color: #ddd;
    margin-bottom: 40px;
    text-align: justify;
}
.game-descriptions-list > li .buttons-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.game-descriptions-list > li .buttons-container > div a {
    display: block;
}
.game-descriptions-list > li .buttons-container > div img {
    display: block;
    -webkit-box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.75);
    box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.75);
    border-radius: 5px;
    overflow: hidden;
    width: 170px;
    height: auto;
}
.game-descriptions-list > li .buttons-container > div:not(:last-child) {
    margin-right: 40px;
}
html.rtl .nav-container .lang-selector {
    display: block;
    position: absolute;
    left: 52px;
    right: auto;
}
html.rtl .nav-container .left-menu {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-left: 77px;
    padding-right: 0;
}
html.rtl .nav-container .left-menu,
html.rtl .nav-container .right-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
html.rtl .nav-container .right-menu {
    padding-right: 77px;
    padding-left: 0;
}
html.rtl .nav-container .hamburger {
    right: 30px;
    left: auto;
}
html.rtl .nav-container .small-nav-menu {
    left: auto;
    right: 30px;
    -webkit-transform-origin: top left;
    transform-origin: top left;
}
html.rtl section .section-title:before {
    background: -webkit-gradient(linear, left top, right top, from(#ffb424), to(rgba(255, 180, 36, 0)));
    background: linear-gradient(90deg, #ffb424 0, rgba(255, 180, 36, 0));
}
html.rtl section .section-title:after {
    background: -webkit-gradient(linear, right top, left top, from(#ffb424), to(rgba(255, 180, 36, 0)));
    background: linear-gradient(270deg, #ffb424 0, rgba(255, 180, 36, 0));
}
html.rtl .game-cards-container:before {
    left: 0;
    background: -webkit-gradient(linear, left top, right top, from(#020d14), to(rgba(0, 17, 24, 0)));
    background: linear-gradient(90deg, #020d14 0, rgba(0, 17, 24, 0));
}
html.rtl .game-cards-container:after {
    right: 0;
    background: -webkit-gradient(linear, right top, left top, from(#020d14), to(rgba(0, 17, 24, 0)));
    background: linear-gradient(270deg, #020d14 0, rgba(0, 17, 24, 0));
}
html.rtl .game-cards-container .inner-container {
    right: 15px;
    left: auto;
}
html.rtl .game-descriptions-list > li .buttons-container > div:not(:last-child) {
    margin-left: 40px;
    margin-right: 0;
}
html.en .nav-container .left-menu .menu-item.en,
html.en .nav-container .left-menu .menu-item.fa,
html.en .nav-container .right-menu .menu-item.en,
html.en .nav-container .right-menu .menu-item.fa,
html.en .nav-container .small-nav-menu li.en,
html.en .nav-container .small-nav-menu li.fa,
html.fa .nav-container .left-menu .menu-item.en,
html.fa .nav-container .left-menu .menu-item.fa,
html.fa .nav-container .right-menu .menu-item.en,
html.fa .nav-container .right-menu .menu-item.fa,
html.fa .nav-container .small-nav-menu li.en,
html.fa .nav-container .small-nav-menu li.fa {
    display: none;
}
html.en .nav-container .left-menu .menu-item.en,
html.en .nav-container .right-menu .menu-item.en {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
html.en .nav-container .small-nav-menu li.en {
    display: block;
}
html.fa .nav-container .left-menu .menu-item.fa,
html.fa .nav-container .right-menu .menu-item.fa {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
html.fa .nav-container .small-nav-menu li.fa {
    display: block;
}
@media (max-width: 940px) {
    .nav-container .left-menu,
    .nav-container .right-menu {
        display: none;
    }
    .nav-container .hamburger {
        display: block;
    }
    .nav-container .small-nav-menu.is-open {
        display: block;
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    .nav-container .lang-selector {
        right: 52px;
        top: 35px;
    }
    .nav-container .lang-selector .selected-lang .lang-code {
        font-size: 18px;
    }
    .nav-container .lang-selector .selected-lang .flag-icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
    .nav-container .lang-selector .selected-lang .arrow-down,
    .nav-container .lang-selector .selected-lang .arrow-up {
        height: 10px;
    }
    .nav-container .lang-selector .flag-menu {
        left: 0;
        top: 35px;
        background-color: #071435;
        border-radius: 4px;
        padding: 10px 5px;
    }
    .nav-container .lang-selector .flag-menu .lang-item .lang-code,
    .nav-container .lang-selector .flag-menu a.lang-item .lang-code {
        font-size: 18px;
        line-height: 30px;
    }
    .nav-container .lang-selector .flag-menu .lang-item .flag-icon,
    .nav-container .lang-selector .flag-menu a.lang-item .flag-icon {
        display: block;
        width: 20px;
        height: 20px;
    }
}
@media (max-width: 800px) {
    .game-descriptions-list > li .buttons-container > div img {
        width: 150px;
    }
}
@media (max-width: 750px) {
    nav {
        position: relative;
    }
    .nav-container {
        height: 60px;
        background-color: transparent;
    }
    .nav-container .logo-container {
        width: 40px;
        height: auto;
        margin-top: -18.35px;
        margin-left: -20px;
    }
    .nav-container .lang-selector {
        top: 15px;
        right: 15px;
    }
    .nav-container .hamburger {
        top: 15px;
        left: 15px;
    }
    .nav-container .small-nav-menu {
        top: 60px;
        left: 15px;
    }
    #main-container.about-page,
    #main-container.container-pay-failure-page,
    #main-container.container-pay-page,
    #main-container.container-pay-success-page,
    #main-container.container-shop-page {
        padding-top: 0;
    }
    section .section-title {
        height: 60px;
        padding: 0 8px;
    }
    section .section-title:before {
        margin-left: 8px;
    }
    section .section-title:after {
        margin-right: 8px;
    }
    .about-page-section {
        padding: 0 8px;
        padding-top: 30px;
        margin-bottom: 30px;
    }
    .page-content-container {
        padding: 25px 16px;
    }
    .page-content-container h1 {
        margin-bottom: 25px;
    }
    .game-descriptions-list {
        padding: 0 8px;
    }
    .game-descriptions-list > li {
        padding: 25px 16px;
    }
    html.rtl .nav-container .lang-selector {
        left: 15px;
        right: auto;
    }
    html.rtl .nav-container .hamburger,
    html.rtl .nav-container .small-nav-menu {
        right: 15px;
        left: auto;
    }
    html.rtl section .section-title:before {
        margin-right: 8px;
        margin-left: 28px;
    }
    html.rtl section .section-title:after {
        margin-left: 8px;
        margin-right: 28px;
    }
}
@media (max-width: 600px) {
    .game-descriptions-list > li .buttons-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .game-descriptions-list > li .buttons-container > div:not(:last-child) {
        margin-right: 0;
        margin-bottom: 40px;
    }
    html.rtl .game-descriptions-list > li .buttons-container > div:not(:last-child) {
        margin-left: 0;
    }
}
@media (max-width: 320px) {
    .nav-container .logo-container {
        display: none;
    }
}
