@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');


@font-face {
    font-family: 'Gilroy';
    src: url('../Gilroy/Gilroy-SemiBold.eot');
    src: local('Gilroy SemiBold'), local('Gilroy-SemiBold'),
        url('../Gilroy/Gilroy-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../Gilroy/Gilroy-SemiBold.woff') format('woff'),
        url('../Gilroy/Gilroy-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../Gilroy/Gilroy-Light.eot');
    src: local('Gilroy Light'), local('Gilroy-Light'),
        url('../Gilroy/Gilroy-Light.eot?#iefix') format('embedded-opentype'),
        url('../Gilroy/Gilroy-Light.woff') format('woff'),
        url('../Gilroy/Gilroy-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../Gilroy/Gilroy-Regular.eot');
    src: local('Gilroy Regular'), local('Gilroy-Regular'),
        url('../Gilroy/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
        url('../Gilroy/Gilroy-Regular.woff') format('woff'),
        url('../Gilroy/Gilroy-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../Gilroy/Gilroy-Medium.eot');
    src: local('Gilroy Medium'), local('Gilroy-Medium'),
        url('../Gilroy/Gilroy-Medium.eot?#iefix') format('embedded-opentype'),
        url('../Gilroy/Gilroy-Medium.woff') format('woff'),
        url('../Gilroy/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../Gilroy/Gilroy-Bold.eot');
    src: local('Gilroy Bold'), local('Gilroy-Bold'),
        url('../Gilroy/Gilroy-Bold.eot?#iefix') format('embedded-opentype'),
        url('../Gilroy/Gilroy-Bold.woff') format('woff'),
        url('../Gilroy/Gilroy-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --white: #fff;
    --green: #00AA81;
    --orange: #FF6B00;
    --bg: #DBDBDB;
    --grey: #435057;
    --text: #3E4049;
    --grad: linear-gradient(0deg, #014C4F 0%, #1EC79D 100%);

}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    font-family: 'Gilroy', 'Noto Sans', 'Segoe UI', 'Arial', serif;
    ;
    font-weight: 400;
    font-size: 16px;
    word-wrap: break-word;
    color: var(--text);
    text-align: left;
    min-height: 100vh;
    overflow-x: hidden;
}


p {
    margin: 20px 0;
    width: 100%;
    color: var(--text);
    line-height: 160%;
}

p:last-of-type {
    margin-bottom: 0;
}

.title+p,
p:first-child {
    margin-top: 0;
}

p+p,
p+div,
p+section,
.button+p,
.button+.button,
.button+div,
div+p,
section+p,
section+.button {
    margin-top: 0;
}


ul,
ol {
    text-align: left;
    width: 100%;
}

/* Title */
h1,
h2,
h3,
h4 {
    font-family: 'Gilroy', serif;
    line-height: 120%;
    word-wrap: break-word;
}

.title {
    margin-bottom: 20px;
}

h1.title {
    font-size: 28px;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 120%;
    color: var(--orange);
    margin-bottom: 8px;
}

h2.title {
    color: var(--white);
    font-size: 28px;
    padding: 8px 14px;
    text-transform: none;
    background: var(--grad);
    font-weight: 600;
    text-align: left;
    line-height: 130%;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

h3,
h4,
.title {
    font-size: 20px;
    line-height: 160%;
    color: var(--text);
    text-align: left;

}



/* Article */

article,
.article {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    color: var(--dark-green);
    z-index: 1;
}


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

article>*:last-child,
.article>*:last-child {
    margin-bottom: 0px;
}


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

article p a,
.article p a {
    color: var(--orange);
}


/* Button */

.button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    max-width: 180px;
    max-height: 48px;
    width: 100%;
    padding: 10px 16px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    background: var(--orange);
    -webkit-border-radius: 50px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
}

.button:hover,
.button.green:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.button.green {
    background-color: var(--green);
    width: 100%;
}

.button img,
.button span {
    display: inline-block;
    vertical-align: middle;
}

.button img {
    margin-right: 16px;
}

.button span {
    text-align: left;
}



/* Special */

.image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}


.image img {
    display: block;
    position: relative;
    -o-object-fit: contain;
    -o-object-fit: contain;
    object-fit: contain;
}

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

}

.background {
    display: block !important;
    position: absolute !important;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: -1;
}

.background img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    -o-object-fit: cover;
    object-fit: cover;
}


svg {
    display: inline-block;
    position: relative;
    vertical-align: inherit;
    fill: rgba(255, 255, 255, 1);
    line-height: 1;
}

use {
    fill: rgba(255, 255, 255, 1);
    fill-rule: evenodd;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.path {
    fill: inherit;
    stroke: inherit;
    stroke-width: inherit;
}

.image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    flex-shrink: 0;
}

section {
    background-color: #fff;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    padding: 20px;
    -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

/* Header */

.burger {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    margin: 0 20px;
    z-index: 100;
}


.burger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--grey);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.header {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    margin-bottom: 16px;
}

.header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 1600px;
    max-height: auto;
    padding: 12px 30px;
    margin: 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
}

.header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: 9%;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    padding: 0;
}

.header__menu ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
}

.header__menu li {
    position: relative;
    text-transform: uppercase;
    font-family: 'Gilroy', serif;
    font-weight: 500;
}

.header__menu li a:hover {
    color: var(--orange);
    border-color: transparent;
}

.header__menu .header__button {
    display: none;
}

.header__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.header__button a {
    font-size: 12px;
    font-family: 'Gilroy', serif;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: none;
    max-height: 41px;

}

.header__button-signup {
    background-color: var(--orange);
}

.header__button-login {
    min-width: 134px;
    background-color: var(--green);
    margin-right: 10px;
}

.logo.header__logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 152px;
    width: 100%;
}

.header__lang {

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    height: 24px;
    flex-shrink: 0;
}


/* Hero */


section.hero {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    background: transparent;
    min-height: 380px;
    -webkit-border-radius: 16px;
    border-radius: 16px;
    overflow: hidden;
}

.hero__container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 30px;
}

.hero__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 580px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 24px;
    margin: 0 auto 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
    z-index: 10;
    background-color: transparent;
    border: 0;
    -webkit-border-radius: 16px;
    border-radius: 16px;
    color: var(--white);
}


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


.hero__wrap ul li,
.hero__wrap ul li a {
    text-transform: uppercase;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}


.hero__wrap ul li:nth-child(2) {
    margin: 0 8px;
}

.hero__wrap.hero-wrap__rating li:nth-child(2) {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.hero__wrap.hero-wrap__rating li:nth-child(2) span:first-child {
    font-size: 22px;
    font-weight: bold;
}

.hero__wrap.hero-wrap__rating li:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
}

.hero__wrap p {
    max-width: 450px;
    color: white;
    margin-bottom: 24px;
}

.hero__wrap.hero-wrap__breadcrumbs span {
    margin-right: 8px;
}

.button.hero__button {
    margin-top: 0;
}

.image-right {
    right: 0;
    left: auto;
    top: auto;
    bottom: 0;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    z-index: 1;
}


/*main*/

main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    padding: 90px 20px 0 20px;
    max-width: 1600px;
}

.main__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 0 16px 32px 16px;
    margin: 0 auto;
}


/*sidebar left*/


.sidebar__left,
.sidebar__right {
  position: -webkit-sticky;
  position: sticky;
  flex: 0 0 240px;
  top: var(--sidebar-top, 120px); 
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-radius: 10px;
  background: transparent;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: top 0.3s ease;
  margin-bottom: 32px;
}

.sidebar__left::-webkit-scrollbar,
.sidebar__right::-webkit-scrollbar {
  display: none;
}

.sidebar__left > *:not(:last-child),
.sidebar__right > *:not(:last-child) {
  margin-bottom: 16px;
}

.sidebar__left>*,
.sidebar__right>* {
    flex-shrink: 0;
}

.sidebar__left>a:first-of-type,
.sidebar__left>a:nth-of-type(2) {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 12px;
    background: -webkit-linear-gradient(186deg, #005568 8%, #102A5E 85%);
    background: -o-linear-gradient(186deg, #005568 8%, #102A5E 85%);
    background: linear-gradient(186deg, #005568 8%, #102A5E 85%);
    -webkit-border-radius: 16px;
    border-radius: 16px;
    gap: 11px;
    overflow: hidden;
}


.sidebar__left>a:first-of-type::before {
    content: "";
    position: absolute;
    inset: 0;
    -webkit-border-radius: inherit;
    border-radius: inherit;
    background: -webkit-linear-gradient(0deg, #324049 0%, rgba(50, 64, 73, 0) 30%);
    background: -o-linear-gradient(0deg, #324049 0%, rgba(50, 64, 73, 0) 30%);
    background: linear-gradient(0deg, #324049 0%, rgba(50, 64, 73, 0) 30%);
    pointer-events: none;
    z-index: 1;
}


.sidebar__left>a:first-of-type>img,
.sidebar__left>a:first-of-type>div {
    position: relative;
}


.sidebar__left>a:nth-of-type(2) {
    padding-left: 0;
    background:
        linear-gradient(187deg, #034857 9%, #004D47 50%, #004F3C 86%);
}

.sidebar__left>a:first-of-type span,
.sidebar__left>a:nth-of-type(2) span {
    display: block;
    color: var(--white);
    font-size: 14px;
    font-family: 'Gilroy', serif;
    font-weight: bold;
}

.sidebar__left>a:nth-of-type(2) span {
    text-transform: uppercase;
}

.sidebar__left>a:first-of-type span:nth-child(2) {
    color: var(--bg);
    font-size: 11px;
    font-family: 'Gilroy', serif;
    font-weight: 500;
}


.sidebar-left__links {
    -webkit-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-left__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 10px 12px;
    background: var(--grey);
    color: var(--white);
    text-transform: uppercase;
    font-size: 12px;
    text-align: left;
    font-family: 'Gilroy', serif;
    font-weight: bold;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.sidebar__left .sidebar-left__button.button__navigation {
    -webkit-border-radius: 8px;
    border-radius: 8px;
    margin-bottom: 0; 
    z-index: 2;
    position: relative;
}

.sidebar-left__button.button__navigation.open {
    -webkit-border-radius: 8px 8px 0 0;
    border-radius: 8px 8px 0 0;
}

.list__navigation {
    margin-top: 0;
}

.sidebar-left__list {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    background-color: var(--white);
    width: 100%;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.sidebar-left__list.open {
    opacity: 1;
    max-height: 1500px;
    max-width: 100%;
}

.sidebar-left__list.list__navigation.open {
    -webkit-border-radius: 0 0 8px 8px;
    border-radius: 0 0 8px 8px;
}

.sidebar-left__arrow {
    width: 12px;
    height: 12px;
    display: block;
    margin-left: auto;
    background-position: center center;
    background-image: url(../img/sidebar-icons/arrow.svg);
    background-repeat: no-repeat;
    -webkit-transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    -webkit-transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}


.sidebar-left__arrow.rotate {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}


.sidebar__left li,
.list__navigation li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid transparent;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.sidebar__left li a,
.list__navigation li a {
    font-size: 14px;
    font-weight: 400;
    color: var(--grey);
    line-height: 130%;
}

.list__quick-links li {
    padding: 0;
}

.list__quick-links li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 8px 12px;
}

.sidebar-left__list.list__navigation li a {
    color: #9E9FA4;
}


.sidebar__left li:hover {
    background-color: #E6F6F2;
    border-left: 3px solid #01A980;
}


.sidebar__left li:hover a {
    color: #000;
    font-weight: 600;
}

.sidebar__left li:not(:first-child),
.list__navigation li:not(:first-child) {
    border-top: 1px solid #E2E8EE;
}


.list__quick-links img {
    width: 16px;
    height: 16px;
    margin-right: 12px;
}

.navigation {
    display: none;
}



/* Table */

.table-wrapper {
    overflow-x: auto;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    padding: 2px;
    background: var(--grad);
    min-width: 0;
}

table {
    width: 100%;
    min-width: 550px;
    color: var(--text);
    background-color: #E6E9EA;
    border: 2px solid var(--grad);
    -webkit-border-radius: 9px;
    border-radius: 9px;
    overflow: hidden;
    font-weight: 400;
    font-size: 16px;
    table-layout: fixed;
}

table tr:not(:last-child) {
    border-bottom: 1px solid rgba(62, 64, 73, 0.16);
}

thead tr th {
    padding: 12px 20px;
    background: var(--grad);
    font-size: 20px;
    font-weight: bold;
    color: var(--white);
}

tr th {
    padding: 20px;
}

tr:last-child td {
    border-bottom: none;
}

td {
    padding: 13px 20px;
}

#Ivibet-Casino-Deutschland table tr td:first-child {
    font-weight: bold;
}

/* Description */


.description__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.description__border {
    width: 100%;
    padding: 2px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: var(--grad);
}

.description__list ul,
.description .description__border ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
    background: #E6E9EA;
    color: var(--text);
    font-weight: 400;
    -webkit-border-radius: 9px;
    border-radius: 9px;
    gap: 20px;
}

.description .description__border ul {
    padding: 20px;
    gap: 10px;
}

.description__list ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.description__list ul li:not(:first-child) {
    padding: 8px;
}

.description__list ul li:not(:first-child)::before {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    margin-right: 8px;
    background: var(--text);
    flex-shrink: 0;
}

.description__list ul li:first-of-type,
.description .description__border ul li:first-of-type {
    padding: 12px 0;
    font-size: 20px;
    font-weight: bold;
}

.description .description__border ul li:first-of-type {
    padding: 0;
}

.description__list ul li:first-of-type:before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    margin-right: 16px;
    background: url(../img/icons/plus.svg) no-repeat;
    flex-shrink: 0;
}


.description__list .description__border:nth-child(2) ul li:first-of-type:before {
    background: url(../img/icons/minus.svg) no-repeat;
}

/* Marker list */

.description-list__art {
    position: relative;
    padding: 40px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
}

.description-list__art ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}

.description-list__art.description-list__art-text ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto-fit, minmax 350px, 1fr;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    row-gap: 20px;
}

.description-list__art ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 4px 8px 4px 4px;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    border: 1px solid var(--green);
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(238, 241, 242, 0.8);
    overflow: hidden;
    font-size: 16px;
    line-height: 160%;
    vertical-align: middle;
}

.description-list__art.description-list__art-text ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 12px;
}


.description-list__art:not(.description-list__art.description-list__art-text.rating,
.description-list__art.description-list__art-text.progress,
.description-list__art.description-list__art-text.info,
.description-list__art.description-art__point ) ul li::before {
    content: attr(data-step);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 6px 16px;
    min-width: 39px;
    background: var(--grad);
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    flex-shrink: 0;
}

.description-list__art.description-art__point ul {
  list-style: none;
  margin: 0;
  padding: 0;
}



.description-list__art.description-art__point ul li .bullet {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 39px; 
  min-height: 39px;       
  border-radius: 10px; 
  background: var(--grad);
  flex-shrink: 0;
  align-self: stretch; 
  position: relative;
}

.description-list__art.description-art__point ul li .bullet::before {
  content: "";
  width: 12px;
  height: 12px;
  background: #EEF1F2;
  border-radius: 50%;
  display: block;
}


.description-list__art.description-list__art-text ul li::before {
    margin-right: 0;
    margin-bottom: 8px;
    font-size: 16px !important;
    justify-content: flex-start !important;
}


.description-list__art:not(.description-list__art.description-list__art-text) ul li span:not(.bullet) {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 8px;
}

.description-art__point:not(.description-art__point-full) ul{
    max-width: 660px;
}


.description-art__point li{
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

/* banner */

section.banner {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 70px;
    background-color: transparent;
    min-height: 400px;
}

.banner__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 536px;
    width: 100%;
    padding: 20px 50px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    text-align: center;
    background: -webkit-linear-gradient(0deg, rgba(1, 76, 79, 0.70) 0%, rgba(30, 199, 157, 0.70) 100%);
    background: -o-linear-gradient(0deg, rgba(1, 76, 79, 0.70) 0%, rgba(30, 199, 157, 0.70) 100%);
    background: linear-gradient(0deg, rgba(1, 76, 79, 0.70) 0%, rgba(30, 199, 157, 0.70) 100%);
    z-index: 3;
}

.banner__wrap.banner-wrap__small {
    padding: 40px 20px;
}

.banner__wrap h2.title {
    background: transparent;
    padding: 0;
    font-size: 32px;
    text-align: center;
}

.banner__wrap.banner-wrap__small h2.title {
    margin-bottom: 0;
}

.banner__wrap p {
    font-size: 24px;
    line-height: 120%;
    color: var(--white);
}

.button.button-bonus {
    max-width: 161px;
    background: var(--green);
}


section.banner-app {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: transparent;
    min-height: 200px;
}

/* bonus */

.bonus__card {
    position: relative;
    padding: 20px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.bonus__card h3.title {
    margin-top: 0;
    color: var(--white);
    font-weight: bold;
}

.bonus__card p {
    max-width: 680px;
    color: var(--white);
    font-weight: 500;
}

.bonus__card .image {
    z-index: -1;
}

/* rating */

.rating p {
    color: var(--white);
    margin-bottom: 20px;
}

.description__stars {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    margin: 0 auto 16px auto;
}

.description-list__art.description-list__art-text.rating ul li,
.description-list__art-short {
    padding: 20px;
}


/* progress-bar */

.description-list__art.description-list__art-text.progress li {
    padding: 20px;
    background: var(--grad);
    border: none;
    gap: 12px;
}

.description-list__art.description-list__art-text.progress span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 20px;
    font-weight: bold;
    color: var(--white);
}

.progress-bar-container {
    width: 100%;
    height: 30px;
    padding: 6px;
    background: #E5E5E5;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    background: -webkit-linear-gradient(180deg, #FFA302 0%, #E74900 100%);
    background: -o-linear-gradient(180deg, #FFA302 0%, #E74900 100%);
    background: linear-gradient(180deg, #FFA302 0%, #E74900 100%);
}

.description-list__art li:nth-child(1) .progress-bar {
    width: 90%;
}

.description-list__art li:nth-child(2) .progress-bar,
.description-list__art li:nth-child(3) .progress-bar,
.description-list__art li:nth-child(5) .progress-bar {
    width: 80%;
}


.description-list__art li:nth-child(4) .progress-bar {
    width: 100%;
}

/* info */

.info ul li {
    max-width: 700px;
    margin-bottom: 20px;
}


/* app buttons */

.applications-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.applications-buttons a,
.button__app {
    width: 100%;
    max-width: 220px;
    height: auto;
    max-height: 64px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    padding: 10px 16px;
    white-space: normal;
    text-align: center;
    color: #141414;
    font-size: 14px;
    background: -webkit-linear-gradient(180deg, #FFA302 0%, #E74900 100%);
    background: -o-linear-gradient(180deg, #FFA302 0%, #E74900 100%);
    background: linear-gradient(180deg, #FFA302 0%, #E74900 100%);
    ;
}

.applications-buttons a::before,
.button__app::before {
    content: '';
    width: 41px;
    height: 32px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../img/icons/apple.svg);
}


.applications-buttons a.button.btn-android {
    margin-left: 16px;
}


.applications-buttons a.button.btn-android::before,
.button__app.btn-android::before {
    background-image: url(../img/icons/android.svg);
}


/* faq */


.faq__list>li {
    padding: 0px;
    overflow: hidden;
}

.faq__list>li+li {
    margin-top: 16px;
}

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

.faq-item__title {
    padding: 12px 56px 16px 12px;
    margin: 0;
    position: relative;
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: bold;
    background: var(--grad);
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: 0;
    text-align: start;
    cursor: pointer;
    overflow: visible;
}


.faq-item__title:after {
    content: '';
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    background: url(../img/icons/faq-icon.svg) no-repeat center center / 24px 24px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    overflow: visible;
}


/* var */
.faq__item.active .faq-item__title:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.faq__item.active .faq-item__title {
    -webkit-border-radius: 10px 10px 0 0;
    border-radius: 10px 10px 0 0;
}

.faq-item__desc .wrap {
    color: var(--white);
    padding: 6px 16px;
    margin-top: 1px;
    font-weight: 400;
    background-color: #E6E9EA;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top: 2px var(--white) solid;
}

.faq-item__desc p {
    margin: 0;
    color: var(--text);
}

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

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

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

/* Btn Top */
.to-top {
    background-image: url(../img/icons/Up.svg);
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-size: contain;
    width: 54px;
    height: 54px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    opacity: 1;
    display: none;
    z-index: 100;

}

/*sidebar right*/

.sidebar__right>a:first-of-type {
    padding: 16px;
    background: #435057;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
}

.sidebar-right__info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #1A2B33;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    overflow: hidden;
}

.sidebar-right__info>:first-child {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: #435057;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 12.5px;
}

.sidebar-right__bonus>a:first-of-type,
.sidebar-right__bonus .sidebar-right__info {
    display: none;
}

.sidebar-right__info>ul:first-of-type {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.sidebar-right__info>ul:first-of-type li {
    width: 50%;
    padding: 8px 0;
    text-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid var(--white);
}

.sidebar-right__info>ul:first-of-type li:first-child {
    border-bottom: 2px solid var(--green);
}

.sidebar-right__info>ul:first-of-type li {
    text-transform: uppercase;
    font-weight: 500;
    color: #818E95;
    font-size: 10px;
}

.sidebar-right__info>ul:first-of-type li:first-child {
    color: var(--white);
}

.sidebar-right__info>ul:nth-of-type(2) {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 12px;
    text-align: center;
}

.sidebar-right__info>ul:nth-of-type(2) img {
    margin: 20px 0;
}

.sidebar-right__info>ul:nth-of-type(2) li:nth-child(2) {
    font-size: 12px;
    font-weight: 500;
    color: #818E95;
    margin-bottom: 12px;
}

.sidebar-right__info>ul:nth-of-type(2) li:last-child {
    font-size: 10px;
    font-weight: 400;
    color: #818E95;
    margin-bottom: 12px;
    line-height: 20px;
}

.sidebar-right__info>ul:last-child {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 12px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #22333B;
}

.sidebar-right__info>ul:last-child li  {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: flex;
    align-items: center;
    padding: 8px;
    border: 1px solid #6F7B8D;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    font-size: 10px;
    color: #6F7B8D;
    gap: 10px;
    min-width: 80px;
}

.sidebar-right__info>ul:last-child li img {
    height: 12px;
    width: auto;
    opacity: 0.4;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1px;
    margin-left: 8px;
}

.sidebar-right__info>ul:last-child li:last-child  {
    background: var(--orange);
    border: none;
    text-transform: uppercase;
    color: var(--white);
    font-size: 12px;
    font-weight: 400;
}

.sidebar-right__slots {
    background: var(--white);
    -webkit-border-radius: 12px;
    border-radius: 12px;
    overflow: hidden;
}

.sidebar-right__slots ul:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0 16px;
    min-height:  41px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    background-color: var(--grey);
}

.sidebar-right__slots ul:first-child li {
        width: 40%;
    color: #7F8B94;
}

.sidebar-right__slots ul:first-child li:first-child span{
    position: relative;
display: block;
    color: var(--white);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}

.sidebar-right__slots ul:first-child li:first-child span::after {
    content: '';
    display: block;
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--green);
}

.sidebar-right__slots ul:nth-child(2) {
    padding: 8px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 7.5px 1fr;
    -ms-grid-columns: 2, 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 7.5px;
    row-gap: 7.5px;
    width: 100%;
}

.sidebar-right__slots ul:nth-child(2) li {
    width: 100%;
    min-height: 108px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-right__slots ul:nth-child(2) li img {
    -o-object-fit: cover;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

section.sidebar-right__slots {
    display: none;
    padding: 0;
}

section.sidebar-right__slots ul:nth-of-type(2) {
    -ms-grid-columns: 6, 1fr;
    grid-template-columns: repeat(6, 1fr);
}


/* language */

section.language {
    background: transparent;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.language ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
}

.language ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 12px;
    gap: 8px;
    background: #435057;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    color: var(--white);
    text-transform: uppercase;
}

/* Footer */

.footer {
    background-color: var(--white);
    -webkit-border-radius: 10px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 32px 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    line-height: 100%;
    -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.14);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.14);
}

.footer__menu {
    background-color: var(--white);
    -webkit-border-radius: 3px;
    border-radius: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    margin: 0 auto;
    padding-left: 40px;
}

.footer-menu__item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 calc((100% - 30px) / 6);
    -ms-flex: 0 1 calc((100% - 30px) / 6);
    flex: 0 1 calc((100% - 30px) / 6);
    line-height: 100%;
}

.footer-menu__item p {
    font-weight: bold;
    font-size: 14px;
    color: #282B30;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-menu__item ul li {
    background: none;
    padding: 0;

}

.footer-menu__item ul li+li {
    margin-top: 4px;
}

.footer-menu__item ul li:before {
    display: none;
}

.footer-menu__item ul li a,
.footer-bottom__wrap p {
    color: #868C96;
    font-size: 12px;
    font-weight: 400;
}

.footer-bottom__wrap p:not(:last-child) {
    margin-bottom: 12px;
}

.footer-menu__item ul li a:hover {
    opacity: .7;
}

.footer-menu__item ul li a img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px;
    flex-shrink: 0;
}

.footer__payment {
    width: 100%;
}

.footer__payment ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 90%;
    padding: 31px 0;
    border-top: 1px solid #868C96;
    border-bottom: 1px solid #868C96;
    gap: 30px;
}


.footer__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer-bottom__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 12px;
}


.footer-bottom__age {
    min-width: 32px;
    background-color: var(--white);
    -webkit-border-radius: 3px;
    border-radius: 3px;
    font-size: 20px;
    line-height: 1;
    text-align: center;
    margin-left: 16px;
}

.footer-bottom__age img {
    width: 32px;
    height: 32px;
}