*,
*::before,
*::after {
  box-sizing: border-box;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

html {
  font-family: sans-serif;
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1;
  margin: 0;
  padding: 0;
  background: #fff;
}

.page {
  background: rgb(104, 239, 128);
  background: linear-gradient(33deg, rgb(104, 239, 128) 0%, rgb(0, 169, 224) 100%);
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
}
.content--page {
  background: #fff;
}

/* poppins-regular - latin-ext_latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: local("Poppins Regular"), local("Poppins-Regular"), url("../fonts/poppins-v12-latin-ext_latin-regular.woff2") format("woff2"), url("../fonts/poppins-v12-latin-ext_latin-regular.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-italic - latin-ext_latin */
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 400;
  src: local("Poppins Italic"), local("Poppins-Italic"), url("../fonts/poppins-v12-latin-ext_latin-italic.woff2") format("woff2"), url("../fonts/poppins-v12-latin-ext_latin-italic.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-600 - latin-ext_latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: local("Poppins SemiBold"), local("Poppins-SemiBold"), url("../fonts/poppins-v12-latin-ext_latin-600.woff2") format("woff2"), url("../fonts/poppins-v12-latin-ext_latin-600.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-600italic - latin-ext_latin */
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 600;
  src: local("Poppins SemiBold Italic"), local("Poppins-SemiBoldItalic"), url("../fonts/poppins-v12-latin-ext_latin-600italic.woff2") format("woff2"), url("../fonts/poppins-v12-latin-ext_latin-600italic.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-800 - latin-ext_latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  src: local("Poppins ExtraBold"), local("Poppins-ExtraBold"), url("../fonts/poppins-v12-latin-ext_latin-800.woff2") format("woff2"), url("../fonts/poppins-v12-latin-ext_latin-800.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-800italic - latin-ext_latin */
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 800;
  src: local("Poppins ExtraBold Italic"), local("Poppins-ExtraBoldItalic"), url("../fonts/poppins-v12-latin-ext_latin-800italic.woff2") format("woff2"), url("../fonts/poppins-v12-latin-ext_latin-800italic.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
.footer {
  padding: 5rem 0 0 0;
  background: rgba(82, 81, 81, 0.7);
}
@media only screen and (min-width: 768px) {
  .footer {
    padding: 8rem 0 0 0;
  }
}
.footer__copyright {
  background: #3c3c3c;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.footer-content__col {
  width: 100%;
  margin: 0 0 5rem 0;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .footer-content__col {
    width: 50%;
    text-align: left;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-content__col {
    width: 25%;
  }
}
.footer-content__col--double {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .footer-content__col--double {
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-content__col--double {
    width: 50%;
    padding: 0 12rem 0 0;
  }
}
.footer-content__logo {
  margin: 0 0 2rem 0;
}
.footer-content__logo img {
  display: inline-block;
  max-width: 120px;
}
.footer-content__text, .footer-content__contacts {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.5;
}
.footer-content__text a, .footer-content__contacts a {
  color: inherit;
  text-decoration: none;
}
.footer-content__text a:hover, .footer-content__contacts a:hover {
  text-decoration: underline;
}
.footer-content__text p, .footer-content__contacts p {
  margin: 0;
}
.footer-content__caption {
  margin: 0 0 1.5rem 0;
  padding: 0 0 0.5rem 0;
  position: relative;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: normal;
}
.footer-content__caption::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6.5rem;
  height: 0.2rem;
  background: #fff;
}
@media only screen and (min-width: 768px) {
  .footer-content__caption::before {
    left: 0;
    transform: none;
  }
}
.footer-content__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-content__nav li {
  margin: 0 0 0.3rem 0;
  padding: 0;
}
.footer-content__nav li a {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.5;
  text-decoration: none;
}
.footer-content__nav li a:hover {
  text-decoration: underline;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 15;
  padding: 1rem 0;
  color: #fff;
  font-size: 1.2rem;
}
.copyright a {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.2rem;
  font-weight: 300;
}
.copyright a img {
  margin: 0 0 0 1rem;
  transform: translateY(-0.2rem);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(110deg) brightness(98%) contrast(108%);
}
.copyright a:hover {
  text-decoration: underline;
}

.content {
  position: relative;
  z-index: 50;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 120rem;
  padding: 0 1.5rem;
}
@media only screen and (min-width: 1500px) {
  .container {
    max-width: 140rem;
  }
}

.text-default {
  line-height: 1.5;
  color: #000;
  font-size: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .text-default {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .text-default {
    font-size: 1.8rem;
  }
}
.text-default a:not(.btn),
.text-default a:not(.offer-card__btn),
.text-default a:not(.pager a) {
  color: #1bbbc7;
  text-decoration: underline;
}
.text-default a:not(.btn):hover,
.text-default a:not(.offer-card__btn):hover,
.text-default a:not(.pager a):hover {
  text-decoration: none;
}
.text-default h2, .text-default .h2 {
  line-height: 1.1;
  color: #000;
  font-weight: 800;
  font-size: 1.8rem;
  margin: 0 0 1.5rem 0;
}
@media only screen and (min-width: 768px) {
  .text-default h2, .text-default .h2 {
    font-size: 2rem;
    margin: 0 0 2rem 0;
  }
}
@media only screen and (min-width: 991px) {
  .text-default h2, .text-default .h2 {
    font-size: 2.4rem;
    margin: 0 0 3rem 0;
  }
}
.text-default h3, .text-default .h3 {
  line-height: 1.1;
  color: #1bbbc7;
  font-weight: 600;
  font-size: 1.6rem;
  margin: 0 0 1.5rem 0;
}
@media only screen and (min-width: 768px) {
  .text-default h3, .text-default .h3 {
    font-size: 1.8rem;
  }
}
.text-default table {
  margin: 0 0 3rem 0;
}
.text-default p {
  margin: 0 0 3rem 0;
}
.text-default img {
  max-width: 100%;
}
.text-default blockquote {
  background: #fff7ee;
  color: #1bbbc7;
  font-size: 1.4rem;
  padding: 2rem;
  margin: 0 0 3rem 0;
}
@media only screen and (min-width: 768px) {
  .text-default blockquote {
    font-size: 1.6rem;
    padding: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .text-default blockquote {
    padding: 5rem;
  }
}
.text-default blockquote h2, .text-default blockquote .h2 {
  color: inherit;
}
.text-default ul {
  list-style: none;
  margin: 0 0 3rem 0;
  padding: 0;
}
.text-default ul li {
  margin: 0;
  padding: 0 0 0 2rem;
  position: relative;
  line-height: 1.5;
}
.text-default ul li:before {
  content: "-";
  position: absolute;
  top: 0.2rem;
  left: 0;
}
.text-default ol {
  list-style: none;
  counter-reset: custom-counter;
  margin: 0 0 3rem 0;
  padding: 0;
}
.text-default ol li {
  counter-increment: custom-counter;
  position: relative;
  padding: 0 0 0 4rem;
  margin: 0 0 2rem 0;
}
.text-default ol li:before {
  content: counter(custom-counter) ". ";
  color: #fff;
  font-weight: bold;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 100%;
  background: #1bbbc7;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  text-align: center;
  line-height: 2.4rem;
  font-size: 1.1rem;
}

.header {
  position: relative;
  width: 100%;
  z-index: 100;
  background: rgb(104, 239, 128);
  background: linear-gradient(33deg, rgb(104, 239, 128) 0%, rgb(0, 169, 224) 100%);
}
.header--home {
  background: transparent;
}
.header--home .header-hero {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header--home .header-hero .header__content {
  flex-grow: 1;
  text-align: center;
  display: block;
  padding: 12rem 0;
}
@media only screen and (min-width: 768px) {
  .header--home .header-hero .header__content {
    padding: 4rem 0 4rem;
  }
  .header--home .header-hero .header__content.padding {
    padding: 14rem 0 5rem;
  }
}
.header--home .header-hero .header__content.hide {
  padding: 4rem;
}
@media only screen and (min-width: 768px) {
  .header--home .header-hero .header__content.hide {
    padding: 0.6rem;
  }
}
.header--home .header-hero .header__content.hide p {
  display: none;
}
.header__main {
  position: relative;
  text-align: left;
  width: 100%;
  margin: 0 auto;
  max-width: 140rem;
  padding: 0 1.5rem;
}
@media only screen and (min-width: 768px) {
  .header__main {
    text-align: center;
  }
}
.header__main .menu-logo {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  padding: 1rem 3rem 1rem 2rem;
}
.header__main .menu-logo img {
  max-width: 120px;
}
@media only screen and (min-width: 768px) {
  .header__main .menu-logo {
    top: 2.5rem;
    padding: 1.5rem 3.5rem 1.5rem 3rem;
  }
}
.header__logo {
  position: relative;
  display: inline-block;
  padding: 1.3rem 0 3rem 0;
}
@media only screen and (min-width: 768px) {
  .header__logo {
    padding: 8rem 0 3rem 0;
  }
}
@media only screen and (min-width: 991px) {
  .header__logo {
    padding: 8rem 0 3rem 0;
  }
}
.header__logo a {
  display: inline-block;
  text-decoration: none;
}
.header__logo img {
  display: block;
  max-height: 5.2rem;
}
@media only screen and (min-width: 768px) {
  .header__logo img {
    max-height: unset;
  }
}
.header__content {
  display: flex;
  align-items: center;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  max-width: 74rem;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #fff;
  font-weight: normal;
  padding: 0 0 4rem 0;
}
@media only screen and (min-width: 768px) {
  .header__content {
    padding: 0 0 5rem 0;
  }
}
@media only screen and (min-width: 991px) {
  .header__content {
    padding: 0 0 6rem 0;
  }
}
.header__content p {
  margin: 0;
  line-height: 1.2;
}
.header__account {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  transition: 0.3s;
  border: 0.2rem solid #fff;
  padding: 1.2rem 3rem 1.2rem 2rem;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  border-radius: 1rem;
  outline: none !important;
  line-height: 1.2;
  font-weight: 600;
  font-size: 1.6rem;
  background: transparent;
}
@media only screen and (min-width: 768px) {
  .header__account {
    top: 2.5rem;
    padding: 1.5rem 3.5rem 1.5rem 3rem;
  }
}
.header__account:hover {
  color: #525252;
  background: #fff;
}
.header__account:hover svg {
  fill: #525252;
}
.header__account svg {
  fill: #fff;
  transition: 0.3s;
  width: 2.4rem;
  height: 2.4rem;
}
.header__account span {
  padding: 0 0 0 1.5rem;
}

.page-menu {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-flow: column;
}
.page-menu .hamburger {
  cursor: pointer;
  display: flex;
  flex-flow: column;
  position: absolute;
  top: 1.8rem;
  right: 1.5rem;
  border: 0.2rem solid #fff;
  border-radius: 1rem;
  padding: 6px;
  z-index: 999999;
}
.page-menu .hamburger span {
  width: 35px;
  height: 3px;
  background-color: #fff;
  margin: 3px 0;
}
@media only screen and (min-width: 768px) {
  .page-menu {
    margin: 0 auto;
    max-width: 120rem;
    padding: 1rem 1.5rem 0 1.5rem;
    flex-flow: row;
    justify-content: flex-end;
    min-height: 80px;
    position: relative;
  }
  .page-menu .hamburger {
    display: none;
    z-index: 0;
  }
}
@media only screen and (min-width: 1500px) {
  .page-menu {
    max-width: 140rem;
  }
}
.page-menu .menu-logo {
  position: absolute;
  left: 1.5rem;
  top: 2.2rem;
}
@media only screen and (min-width: 768px) {
  .page-menu .menu-logo {
    top: 2.5rem;
    padding: 0.2rem 0;
  }
}
.page-menu .menu-logo img {
  max-width: 120px;
}
.page-menu .menu-logo.logo-bigger img {
  max-width: 100%;
}
.page-menu .menu-item {
  display: flex;
  align-items: center;
  transition: 0.3s;
  padding: 1.2rem;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  outline: none !important;
  line-height: 1.2;
  font-weight: 600;
  font-size: 1.6rem;
  margin-left: 2rem;
}
.page-menu .menu-item.with-border {
  border: 0.2rem solid #fff;
  padding: 1.2rem 3rem 1.2rem 2rem;
  text-decoration: none;
  color: #fff;
  border-radius: 1rem;
}
.page-menu .menu-item.with-icon {
  padding: 1.2rem 2rem 1.2rem 1.2rem;
}
@media only screen and (max-width: 767px) {
  .page-menu .menu-item.with-icon {
    padding: 1rem 2rem 1rem 1rem;
  }
  .page-menu .menu-item.with-icon svg {
    vertical-align: text-bottom;
  }
}
.page-menu .menu-item:hover {
  color: #525252;
  text-decoration: underline;
  border-color: #fff;
}
.page-menu .menu-item:hover.with-border {
  color: #525252;
  background: #fff;
  text-decoration: none;
}
.page-menu .menu-item:hover svg {
  fill: #525252;
}
.page-menu .menu-item svg {
  fill: #fff;
  transition: 0.3s;
  width: 2.4rem;
  height: 2.4rem;
}
.page-menu .menu-item span {
  padding: 0 0 0 1.5rem;
}
.page-menu .menu-item.active {
  color: #525252;
  text-decoration: underline;
  border-color: #525252;
}
.page-menu .menu-item.active.with-border {
  border-color: #fff;
  color: #525252;
  text-decoration: none;
  background: #fff;
}
.page-menu .menu-item.active svg {
  fill: #525252;
}
.page-menu .menu-item.active:hover {
  color: #fff;
}
.page-menu .menu-item.active:hover.with-border {
  color: #fff;
  background: transparent;
}
.page-menu .menu-item.active:hover svg {
  fill: #fff;
}
@media only screen and (max-width: 767px) {
  .page-menu .menu-item {
    height: 0;
    visibility: hidden;
    z-index: 0;
    display: none;
  }
}
.page-menu.open {
  margin-top: 56px;
}
.page-menu.open .menu-item {
  height: auto;
  visibility: visible;
  display: block;
  margin: 0.5rem auto;
  z-index: 1;
}
.page-menu.open .menu-item.with-border {
  display: flex;
}

.language-switcher {
  padding: 40px 0 0;
}
.language-switcher.smaller {
  padding-top: 24px;
  margin-left: 20px;
}
.language-switcher a {
  text-decoration: none;
  width: 30px;
  display: inline-block;
  margin: 0 5px;
  filter: grayscale(1);
  transition: all ease 0.5s;
}
.language-switcher a.selected, .language-switcher a:hover {
  filter: grayscale(0);
}
.language-switcher svg {
  max-width: 30px;
}

.content__i-am .container {
  max-width: 98rem;
}
.content__registration {
  padding: 0 0 6rem 0;
}

.i-am {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 3rem);
  margin: 0 -1.5rem;
  padding: 0 0 3rem 0;
}
.i-am__item {
  width: 100%;
  padding: 0 1.5rem;
  margin: 0 0 1.5rem 0;
}
@media only screen and (min-width: 768px) {
  .i-am__item {
    width: 50%;
  }
}

.i-am-card {
  display: block;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0);
  transition: 0.5s;
  border-radius: 1rem;
  text-align: center;
  color: #525151;
  padding: 2.5rem;
}
.i-am-card:hover {
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.15);
}
@media only screen and (min-width: 550px) {
  .i-am-card {
    padding: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  .i-am-card {
    padding: 4rem;
  }
}
@media only screen and (min-width: 991px) {
  .i-am-card {
    padding: 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .i-am-card {
    padding: 7rem;
  }
}
.i-am-card__title {
  font-size: 3.2rem;
  font-weight: normal;
  /*margin: 0 0 2rem 0;*/
  padding: 0;
  line-height: 1.2;
  text-transform: uppercase;
}
.i-am-card__title strong {
  font-weight: 600;
}
.i-am-card__text {
  font-size: 1.2rem;
  font-weight: normal;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

.registration {
  display: block;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.15);
  transition: 0.5s;
  border-radius: 1rem;
  text-align: center;
  color: #525151;
  padding: 2.5rem;
  width: 100%;
  max-width: 55rem;
  margin: 0 auto;
}
@media only screen and (min-width: 550px) {
  .registration {
    padding: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  .registration {
    padding: 4rem;
  }
}
@media only screen and (min-width: 991px) {
  .registration {
    padding: 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .registration {
    padding: 7rem;
  }
}
.registration__title {
  font-size: 3rem;
  font-weight: normal;
  margin: 0 0 2rem 0;
  padding: 0;
  line-height: 1.2;
  text-transform: uppercase;
}
@media only screen and (min-width: 991px) {
  .registration__title {
    margin: 0 0 4rem 0;
  }
}
.registration__title strong {
  font-weight: 600;
}
.registration__text {
  font-size: 1.5rem;
  font-weight: normal;
  margin: 0 0 3rem 0;
  padding: 0;
  line-height: 1.2;
}

.content__page {
  background: #fff;
}

.select2-results__option {
  display: flex;
  align-items: center;
  width: 100%;
  color: #000;
  font-family: "Poppins", sans-serif;
  line-height: 1.1;
  font-size: 1.6rem;
}
@media only screen and (min-width: 991px) {
  .select2-results__option {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .select2-results__option {
    font-size: 2rem;
  }
}
.select2-results__option .flag-icon {
  margin: 0 1rem 0 0;
}
.select2-results__option .flag-icon img {
  width: 2rem;
  height: 2rem;
}
.select2-search__field {
  font-size: 1.6rem;
}
@media only screen and (min-width: 991px) {
  .select2-search__field {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .select2-search__field {
    font-size: 2rem;
  }
}

.select2-container .select2-selection--single {
  height: 44px !important;
}
@media only screen and (min-width: 991px) {
  .select2-container .select2-selection--single {
    height: 50px !important;
  }
}

.select2-selection__rendered {
  color: #525252;
  font-weight: normal;
  padding: 7px 40px 7px 16px !important;
  outline: none !important;
  font-size: 1.6rem;
}
@media only screen and (min-width: 991px) {
  .select2-selection__rendered {
    font-size: 1.8rem;
    padding: 11px 50px 11px 26px !important;
  }
}
@media only screen and (min-width: 1200px) {
  .select2-selection__rendered {
    font-size: 2rem;
  }
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 44px !important;
  position: absolute;
  top: 0 !important;
  right: 0 !important;
  width: 40px !important;
}
@media only screen and (min-width: 991px) {
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 50px !important;
    height: 50px !important;
  }
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  opacity: 0;
  visibility: hidden;
}
.select2-container--default .select2-selection--single .select2-selection__arrow:before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  background: url("../images/arrow.svg") no-repeat center center;
  background-size: contain;
}
@media only screen and (min-width: 991px) {
  .select2-container--default .select2-selection--single .select2-selection__arrow:before {
    width: 2rem;
    height: 2rem;
  }
}

.select2-container--open .select2-selection__arrow:before {
  transform: translate(-50%, -50%) rotate(90deg) !important;
}

.section__head {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  padding: 3.5rem 0 1rem 0;
}
@media only screen and (min-width: 768px) {
  .section__head {
    padding: 4.5rem 0;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }
}
.section__title {
  font-size: 3.2rem;
  font-weight: 600;
  color: #525252;
  line-height: 1.2;
  margin: 0 0 3rem 0;
  padding: 0;
}
.section__title a {
  color: #525252;
  text-decoration: none;
  transition: 0.3s;
}
.section__title a:hover {
  color: #1bbbc7;
}
.section__title a.active {
  color: #1bbbc7;
}
.section__title a.active:hover {
  color: #525252;
}
@media only screen and (min-width: 768px) {
  .section__title {
    margin: 0;
  }
}
.section__filter {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .section__filter {
    flex: 1;
  }
}
@media only screen and (min-width: 768px) {
  .section__content {
    padding: 0 0 3rem 0;
  }
}

.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.filters__item {
  margin: 0 0 2rem 0;
  width: 100%;
  max-width: 100%;
}
@media only screen and (min-width: 768px) {
  .filters__item {
    max-width: 23rem;
    margin: 0 0 0 8rem;
  }
  .filters__item:first-child {
    margin: 0;
  }
}
@media only screen and (min-width: 991px) {
  .filters__item {
    max-width: 30rem;
  }
}
.filters__item .select2-hidden-accessible {
  width: 100% !important;
}
.filters__item .select2-container {
  width: 100% !important;
}
.filters__item #slider-price {
  min-width: 23rem;
  margin: 2rem 3.5rem 1rem 3rem;
}
@media only screen and (min-width: 768px) {
  .filters__item #slider-price {
    margin: 1.5rem 0 0 0;
    padding: 0;
  }
}
@media only screen and (min-width: 991px) {
  .filters__item #slider-price {
    min-width: 30rem;
  }
}

.offers-list--demands .offer-card__top {
  padding: 4.5rem 4% 0 4%;
}
.offers-list--demands .offer-card__content {
  width: 100%;
  padding: 0;
}
.offers-list--demands .offer-card__bottom {
  padding: 0 4%;
}
.offers-list--demands .offer-card__bottom-container {
  padding: 0;
}
.offers-list--demands .offer-card__contacts {
  padding: 0;
}

.offer-card {
  background: #fff;
  box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.1);
  margin: 0 0 2.5rem 0;
  border-radius: 1rem;
  position: relative;
  padding: 0 0 5rem 0;
}
.offer-card.blue-shadow {
  box-shadow: 0 0.5rem 3rem rgb(61, 187, 199);
}
@media only screen and (min-width: 768px) {
  .offer-card {
    padding: 0 0 4.4rem 0;
  }
}
.offer-card__toolbar {
  display: flex;
  align-items: center;
  margin: 2rem 0 -1.5rem 0;
  padding: 0 0 0 2rem;
}
@media only screen and (min-width: 550px) {
  .offer-card__toolbar {
    padding: 0 0 0 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .offer-card__toolbar {
    padding: 0 0 0 4%;
  }
}
@media only screen and (min-width: 1200px) {
  .offer-card__toolbar {
    padding: 0 0 0 4%;
  }
}
.offer-card__toolbar a {
  margin: 0 3rem 0 0;
  padding: 0;
  font-style: normal;
  color: #1bbbc7;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.2;
}
@media only screen and (min-width: 991px) {
  .offer-card__toolbar a {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 1500px) {
  .offer-card__toolbar a {
    font-size: 1.8rem;
  }
}
.offer-card__toolbar a svg {
  fill: #1bbbc7;
}
.offer-card__toolbar a:hover {
  text-decoration: none;
}
.offer-card__toolbar a:hover svg {
  fill: #888;
}
.offer-card__toolbar a.remove-link {
  color: #888;
}
.offer-card__toolbar a.remove-link svg {
  fill: #888;
}
.offer-card__toolbar a.remove-link:hover {
  color: #b90b28;
}
.offer-card__toolbar a.remove-link:hover svg {
  fill: #b90b28;
}
.offer-card__toggle {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 4rem;
  height: 4rem;
  border: none;
  background: #1bbbc7;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 1rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 0;
  outline: none !important;
  cursor: pointer;
  transition: 0.3s;
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .offer-card__toggle {
    width: 5rem;
    height: 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .offer-card__toggle {
    width: 7rem;
    height: 7rem;
  }
}
.offer-card__toggle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 1.6rem;
  height: 1.6rem;
  fill: #fff;
  outline: none !important;
  cursor: pointer;
  pointer-events: none;
}
@media only screen and (min-width: 1200px) {
  .offer-card__toggle svg {
    width: 2.2rem;
    height: 2.2rem;
  }
}
.offer-card__toggle:hover {
  opacity: 0.7;
}
.offer-card__toggle.opened {
  background: #dcdcdc;
}
.offer-card__toggle.opened svg {
  transform: translate(-50%, -50%) rotate(90deg);
}
.offer-card__availability {
  position: absolute;
  right: 0;
  top: 0;
  width: 15rem;
  height: 4rem;
  outline: none !important;
  padding: 0;
  margin: 0;
  font-size: 1.4rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid red;
  color: red;
}
.offer-card__availability.available {
  border: 1px solid #1bbbc7;
  color: #1bbbc7;
}
@media only screen and (min-width: 768px) {
  .offer-card__availability {
    left: 0;
    width: 13rem;
    height: 5rem;
    font-size: 1.6rem;
    font-weight: 600;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 1rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .offer-card__availability {
    width: 15rem;
  }
}
.offer-card__top {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  align-items: center;
  padding: 2.5rem 2rem 0 2rem;
}
@media only screen and (min-width: 550px) {
  .offer-card__top {
    padding: 2.5rem 4rem 0 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .offer-card__top {
    padding: 4.5rem 6rem 0 5%;
  }
}
@media only screen and (min-width: 1200px) {
  .offer-card__top {
    padding: 4.5rem 8rem 0 5%;
  }
}
.offer-card__image {
  width: 100%;
  margin: 0 0 1.5rem 0;
}
@media only screen and (min-width: 550px) {
  .offer-card__image {
    width: 6rem;
    margin: 0;
  }
}
@media only screen and (min-width: 768px) {
  .offer-card__image {
    width: 7rem;
  }
}
@media only screen and (min-width: 991px) {
  .offer-card__image {
    width: 9rem;
  }
}
.offer-card__image img {
  display: inline-block;
  max-width: 100%;
  border-radius: 0.5rem;
}
@media only screen and (max-width: 549px) {
  .offer-card__image img {
    max-width: 7rem;
  }
}
.offer-card__content {
  width: 100%;
  padding: 0;
}
@media only screen and (min-width: 550px) {
  .offer-card__content {
    width: calc(100% - 6rem);
    padding: 0 0 0 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .offer-card__content {
    width: calc(100% - 7rem);
    padding: 0 0 0 6%;
  }
}
@media only screen and (min-width: 991px) {
  .offer-card__content {
    width: calc(100% - 9rem);
  }
}
.offer-card__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 0 0 2.5rem 0;
}
@media only screen and (min-width: 768px) {
  .offer-card__head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.offer-card__name {
  font-size: 1.8rem;
  font-weight: normal;
  color: #1bbbc7;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  padding: 0 1.5rem 0 0;
}
@media only screen and (min-width: 768px) {
  .offer-card__name {
    margin: 0;
  }
}
@media only screen and (min-width: 991px) {
  .offer-card__name {
    font-size: 2rem;
  }
}
.offer-card__name strong {
  font-weight: 600;
  display: inline-block;
  margin: 0 1rem 0 0;
  color: #525151;
  font-style: normal;
}
.offer-card__seller {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 300;
  color: #777 !important;
  line-height: 1.2;
}
@media only screen and (min-width: 991px) {
  .offer-card__seller {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1500px) {
  .offer-card__seller {
    font-size: 2rem;
  }
}
.offer-card__seller-lbl {
  font-style: italic;
  padding: 0 1.5rem 0 0;
}
@media only screen and (min-width: 991px) {
  .offer-card__seller-lbl {
    padding: 0 2.5rem 0 0;
  }
}
.offer-card__seller-name {
  display: flex;
  align-items: center;
}
.offer-card__seller-name a {
  color: inherit !important;
  text-decoration: underline;
}
.offer-card__seller-name a:hover {
  text-decoration: none;
}
.offer-card__seller-name img {
  display: inline-block;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 100%;
  margin: 0 1rem 0 0;
}
@media only screen and (min-width: 991px) {
  .offer-card__seller-name img {
    width: 3rem;
    height: 3rem;
  }
}
.offer-card__desc {
  color: #525151;
  font-size: 1.6rem;
  line-height: 1.3;
  margin: 0 0 2rem 0;
}
@media only screen and (min-width: 991px) {
  .offer-card__desc {
    margin: 0 0 3rem 0;
  }
}
.offer-card__desc.closed {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.offer-card__desc p:not(.offer-card__desc p.no-records-card) {
  line-height: 1.3;
  margin: 0;
}
.offer-card__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.offer-card__info-item {
  margin: 0.8rem 3.5rem 0.8rem 0;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 600;
}
@media only screen and (min-width: 991px) {
  .offer-card__info-item {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1500px) {
  .offer-card__info-item {
    font-size: 2rem;
    margin: 0.8rem 4.5rem 0.8rem 0;
  }
}
.offer-card__info-item:last-child {
  margin: 0.8rem 0 0.8rem 0;
}
.offer-card__info-item span {
  color: #1bbbc7;
}
.offer-card__info-item strong {
  color: #525151;
  font-weight: 600;
}
.offer-card__bottom {
  padding-left: 0;
  padding-right: 2rem;
}
@media only screen and (min-width: 550px) {
  .offer-card__bottom {
    padding-left: 11rem;
    padding-right: 6rem;
  }
}
@media only screen and (min-width: 550px) {
  .offer-card__bottom {
    padding-left: 8rem;
  }
}
@media only screen and (min-width: 768px) {
  .offer-card__bottom {
    padding-left: calc(5% + 7rem);
  }
}
@media only screen and (min-width: 991px) {
  .offer-card__bottom {
    padding-left: calc(5% + 9rem);
  }
}
@media only screen and (min-width: 1200px) {
  .offer-card__bottom {
    padding-right: 8rem;
  }
}
.offer-card__bottom-container {
  padding-left: 2rem;
}
@media only screen and (min-width: 768px) {
  .offer-card__bottom-container {
    padding-left: 6%;
  }
}
.offer-card__bottom-container .infos {
  display: flex;
  flex-flow: column;
  align-items: start;
  padding-bottom: 2rem;
}
.offer-card__prices {
  background: #e8f8f9;
  border-radius: 1rem;
  padding: 2rem 2.5rem;
}
@media only screen and (min-width: 991px) {
  .offer-card__prices {
    padding: 2.5rem 3.5rem;
  }
}
.offer-card__price-lbl {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1bbbc7;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  padding: 0;
}
@media only screen and (min-width: 991px) {
  .offer-card__price-lbl {
    font-size: 2rem;
  }
}
.offer-card__price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  font-weight: normal;
  color: #1bbbc7;
  line-height: 1.2;
}
@media only screen and (min-width: 991px) {
  .offer-card__price-list {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1500px) {
  .offer-card__price-list {
    font-size: 2rem;
  }
}
.offer-card__price-list li {
  margin: 0.4rem 0;
  padding: 0;
}
.offer-card__price-list strong {
  font-weight: 600;
  color: #525151;
  white-space: nowrap;
}
.offer-card__contacts {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 1rem;
  padding: 2.5rem 0 0 0;
}
@media only screen and (min-width: 991px) {
  .offer-card__contacts {
    padding: 3.5rem 0 0 0;
  }
}
.offer-card__btn {
  width: 100%;
  margin: 0;
  padding: 1.4rem 1.5rem;
  background: #1bbbc7 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
  font-weight: 600;
  font-size: 1.5rem;
  text-decoration: none !important;
  border: 0.2rem solid #1bbbc7 !important;
  transition: 0.3s;
  outline: none !important;
  cursor: pointer;
  border-radius: 1rem;
  word-break: break-all;
}
@media only screen and (min-width: 768px) {
  .offer-card__btn {
    width: calc(50% - 0.5rem);
  }
}
@media only screen and (min-width: 991px) {
  .offer-card__btn {
    font-size: 1.8rem;
    padding: 1.7rem 1.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .offer-card__btn {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1500px) {
  .offer-card__btn {
    font-size: 2.4rem;
    padding: 2rem 1.5rem;
  }
}
.offer-card__btn svg {
  width: 2rem;
  height: 2rem;
  fill: #fff;
  margin: 0 1rem 0 0;
  transition: 0.3s;
}
@media only screen and (min-width: 991px) {
  .offer-card__btn svg {
    width: 2.6rem;
    height: 2.6rem;
    margin: 0 2rem 0 0;
  }
}
@media only screen and (min-width: 1200px) {
  .offer-card__btn svg {
    width: 3rem;
    height: 3rem;
    margin: 0 2.5rem 0 0;
  }
}
@media only screen and (min-width: 1500px) {
  .offer-card__btn svg {
    width: 3.8rem;
    height: 3.8rem;
    margin: 0 3rem 0 0;
  }
}
.offer-card__btn:hover {
  background: #fff !important;
  color: #1bbbc7 !important;
}
.offer-card__btn:hover svg {
  fill: #1bbbc7;
}
.offer-card .offer-batch {
  color: #525151;
  font-weight: 600;
  font-size: large;
  padding-top: 10px;
  display: inline-block;
}
.offer-card .offer-batch strong {
  color: #1bbbc7;
}

.section__account .offer-card .offer-card__head {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media only screen and (min-width: 768px) {
  .section__account .offer-card .offer-card__head {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 991px) {
  .section__account .offer-card .offer-card__head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.section__account .offer-card .offer-card__name {
  margin: 0 0 1rem 0;
}
@media only screen and (min-width: 768px) {
  .section__account .offer-card .offer-card__name {
    margin: 0 0 1rem 0;
  }
}
@media only screen and (min-width: 991px) {
  .section__account .offer-card .offer-card__name {
    margin: 0;
  }
}
.section__account .offer-card .offer-card__name a {
  color: #525252;
  text-decoration: underline;
}
.section__account .offer-card .offer-card__name a:hover {
  text-decoration: none;
  color: #1bbbc7;
}

.section__account {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 0 4rem 0;
}
@media only screen and (min-width: 1200px) {
  .section__account {
    padding: 0 0 8rem 0;
  }
}
.section__menu {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .section__menu {
    width: 20rem;
  }
}
@media only screen and (min-width: 1200px) {
  .section__menu {
    width: 30rem;
  }
}
.section__nav ul {
  list-style: none;
  margin: -2rem 0 2rem 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .section__nav ul {
    margin: 0 0 4rem 0;
  }
}
.section__nav ul li {
  margin: 0;
  padding: 0;
}
.section__nav ul li a {
  display: block;
  text-decoration: none;
  font-size: 1.8rem;
  color: #525252;
  font-weight: 600;
  padding: 1.5rem 2.5rem;
  border-radius: 1rem;
  transition: 0.3s;
}
.section__nav ul li a.selected {
  color: #1bbbc7;
  background: #e8f8f9;
}
.section__nav ul li a:hover {
  color: #1bbbc7;
}
.section__container {
  width: 100%;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .section__container {
    width: calc(100% - 20rem);
    padding: 0 0 0 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .section__container {
    width: calc(100% - 30rem);
    padding: 0 0 0 4rem;
  }
}
.section__box-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #525252;
  line-height: 1.2;
  margin: 0 0 3rem 0;
  padding: 0;
}

.section-content {
  background: #fff;
  box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.1);
  margin: 0 0 2.5rem 0;
  border-radius: 1rem;
  position: relative;
  padding: 3rem;
}
@media only screen and (min-width: 768px) {
  .section-content {
    padding: 4.4rem;
  }
}

.account-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 3rem 0;
}
.account-head__box-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #525252;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

.subscription__data tr td {
  padding-right: 1rem;
}
.subscription__data tr td strong {
  color: #1bbbc7;
}
.subscription__button {
  margin: 0 0 3rem 0;
}
.subscription__paid-method p {
  margin: 0 0 1rem 0;
}
.subscription__paid-method p strong {
  color: #1bbbc7;
}

.empty-box {
  text-align: center;
  background: #fff;
  box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.1);
  margin: 0 auto 2.5rem auto;
  border-radius: 1rem;
  position: relative;
  padding: 3rem;
  width: 100%;
  max-width: 60rem;
}
@media only screen and (min-width: 768px) {
  .empty-box {
    padding: 4.4rem;
  }
}

.no-records {
  padding: 0 0 4.5rem 0;
}

.switch-wrapper {
  font-size: initial;
  display: flex;
  align-items: center;
}
.switch-wrapper label {
  margin: 0 1rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  transform: rotate(180deg);
  /* Rounded sliders */
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch input:checked + .slider {
  background-color: #1bbbc7;
}
.switch input:focus + .slider {
  box-shadow: 0 0 1px #1bbbc7;
}
.switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.switch .slider.round {
  border-radius: 34px;
}
.switch .slider.round:before {
  border-radius: 50%;
}

.swal2-modal {
  font-size: initial !important;
}
.swal2-modal .swal2-confirm {
  background-color: #1bbbc7 !important;
}
.swal2-modal .swal2-confirm:hover {
  background-color: #169ba8 !important;
}

.swal2-toast {
  font-size: initial !important;
}

.fancybox-content {
  min-width: 50%;
}
.fancybox-content .modal-window__close {
  position: absolute;
  right: 0;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

.content__i-am {
  margin: 5rem 0;
}

.ui-datepicker-trigger {
  transform: scale(1.1);
  padding: 0 1rem;
  cursor: pointer;
  filter: invert(81%) sepia(59%) saturate(2363%) hue-rotate(137deg) brightness(81%) contrast(90%);
}

div.ui-datepicker {
  font-size: 15px;
}

.text-center {
  text-align: center !important;
}

.hidden {
  display: none !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.w-100 {
  width: 100% !important;
}

.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.m-auto {
  margin: 0 auto !important;
}

.space-nowrap {
  white-space: nowrap !important;
}

.color-primary {
  color: #1bbbc7 !important;
}

.bg-primary {
  background: #1bbbc7 !important;
}

.fs-initial {
  font-size: initial;
}

.text-link {
  color: #525252;
  transition: 0.3s;
}
.text-link:hover {
  text-decoration: none;
  color: #1bbbc7;
}

.remove-collection-row {
  text-decoration: none;
  margin-left: 1rem;
  color: #525252;
  transition: 0.3s;
  font-size: 2rem;
}
.remove-collection-row:hover {
  color: red;
}

.p-relative {
  position: relative;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.btn {
  line-height: 1.1;
  letter-spacing: 0rem;
  border: 0.3rem solid #1bbbc7;
  outline: none !important;
  border-radius: 1rem;
  cursor: pointer;
  text-decoration: none !important;
  padding: 1rem 1.5rem;
  font-weight: 600;
  display: inline-block;
  color: #fff;
  background: #1bbbc7;
  position: relative;
  font-size: 1.6rem;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
  white-space: nowrap;
}
@media only screen and (min-width: 991px) {
  .btn {
    padding: 1.3rem 2rem;
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 1200px) {
  .btn {
    padding: 1.6rem 2rem;
    font-size: 1.8rem;
  }
}
.btn span {
  position: relative;
  z-index: 10;
}
.btn:before {
  content: none !important;
}
.btn:hover {
  background: #1bbbc7;
  text-decoration: none;
  color: #fff;
}
.btn.selected {
  background: #1bbbc7;
  color: #fff;
}

.btn-primary {
  border: 0.3rem solid #1bbbc7 !important;
  background: #1bbbc7 !important;
  color: #fff !important;
}
.btn-primary:hover {
  border-color: #1bbbc7 !important;
  background: #fff !important;
  color: #1bbbc7 !important;
}
.btn-primary.btn-outline {
  border: 0.3rem solid #1bbbc7 !important;
  background: #fff !important;
  color: #1bbbc7 !important;
}
.btn-primary.btn-outline:hover {
  border-color: #1bbbc7 !important;
  background: #1bbbc7 !important;
  color: #fff !important;
}

.btn-secondary {
  border: 0.3rem solid #fff !important;
  background: #fff !important;
  color: #1bbbc7 !important;
}
.btn-secondary:hover {
  border-color: #1bbbc7 !important;
  background: #1bbbc7 !important;
  color: #fff !important;
}
.btn-secondary.btn-outline {
  border: 0.3rem solid #fff !important;
  background: #1bbbc7 !important;
  color: #fff !important;
}
.btn-secondary.btn-outline:hover {
  border-color: #fff !important;
  background: #fff !important;
  color: #1bbbc7 !important;
}

.cookie-panel {
  z-index: 999;
  width: calc(100% - 3rem);
  min-height: 2rem;
  box-sizing: border-box;
  padding: 2rem;
  background: #1bbbc7;
  overflow: hidden;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  border-radius: 0;
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.3);
}
@media only screen and (min-width: 550px) {
  .cookie-panel {
    width: 29rem;
  }
}
@media only screen and (min-width: 768px) {
  .cookie-panel {
    width: 35rem;
    padding: 3rem;
    bottom: 3rem;
    right: 3rem;
  }
}
.cookie-panel:before {
  background: url(../images/cookie.svg) no-repeat center center;
  width: 15rem;
  height: 15rem;
  content: "";
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background-size: contain;
  z-index: 10;
  opacity: 0.1;
}
.cookie-panel__content {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  display: block;
  margin-top: 1rem;
  position: relative;
  z-index: 20;
}
.cookie-panel__content a {
  color: #fff;
  text-decoration: underline;
}
.cookie-panel__content a:hover {
  text-decoration: none;
}
.cookie-panel__content input {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1.5rem;
  background: #1bbbc7;
  box-sizing: border-box;
  padding: 1.5rem 4.5rem;
  text-align: center;
  transition: 0.3s;
  border: 0.2rem solid #fff;
  border-radius: 0;
  outline: none !important;
  cursor: pointer;
}
.cookie-panel__content input:hover {
  cursor: pointer;
  background: #fff;
  color: #1bbbc7;
}

.pager {
  text-align: center;
  padding: 2rem 0 5rem 0;
}
@media only screen and (min-width: 768px) {
  .pager {
    text-align: right;
    padding: 3rem 0 7rem 0;
  }
}
.pager__list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
.pager__list li {
  display: inline-block;
  vertical-align: top;
  padding: 0 !important;
  font-size: 1.4rem;
  margin: 0 0.2rem !important;
  font-weight: 600;
}
@media only screen and (min-width: 991px) {
  .pager__list li {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1500px) {
  .pager__list li {
    font-size: 2.2rem;
  }
}
.pager__list li:before {
  content: none !important;
}
.pager__list li a, .pager__list li span {
  display: block;
  text-decoration: none;
  padding: 0 1rem;
  margin: 0;
  text-align: center;
  height: 3.5rem;
  min-width: 3.5rem;
  line-height: 3.5rem;
  color: #525252;
  border: 0.1rem solid transparent;
  border-radius: 0.4rem;
  background: #fff;
  transition: 0.3s;
  position: relative;
}
@media only screen and (min-width: 991px) {
  .pager__list li a, .pager__list li span {
    height: 5rem;
    min-width: 5rem;
    line-height: 5rem;
    border-radius: 0.8rem;
  }
}
@media only screen and (min-width: 1500px) {
  .pager__list li a, .pager__list li span {
    height: 6rem;
    min-width: 6rem;
    line-height: 6rem;
  }
}
.pager__list li a:hover {
  text-decoration: underline;
}
.pager__list li.current span {
  color: #fff;
  background: #1bbbc7;
  font-weight: 600;
}

.form-info--login {
  flex-direction: row-reverse;
}

.form-info {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 2.5rem 0;
  font-size: 1.4rem;
  color: #000;
}
@media only screen and (min-width: 991px) {
  .form-info {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .form-info {
    font-size: 1.6rem;
  }
}
.form-info a {
  color: inherit;
}

.form-field {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 2.5rem 0;
}
.form-field__label {
  margin: 0;
  padding: 0;
  width: 13rem;
  line-height: 1.1;
  font-size: 1.5rem;
  color: #000;
  font-weight: 600;
  display: block;
}
.form-field__label.w-100 {
  padding: 0 0 1.1rem 0;
}
.form-field__control {
  width: calc(100% - 13rem);
}
.form-field__control textarea {
  border: 0.1rem solid #aaa;
  padding: 1.5rem 2rem;
  line-height: 1.1;
  color: #000;
  font-weight: normal;
  font-family: "Poppins", sans-serif;
  background: #fff;
  margin: 0;
  outline: none !important;
  border-radius: 0.5rem;
  resize: none;
  min-height: 20rem;
  width: 100%;
  max-width: 100%;
  font-size: 1.6rem;
}
@media only screen and (min-width: 991px) {
  .form-field__control textarea {
    font-size: 1.7rem;
    padding: 25px 25px 13px 25px !important;
  }
}
@media only screen and (min-width: 1200px) {
  .form-field__control textarea {
    font-size: 1.8rem;
  }
}
.form-field__control textarea::placeholder {
  font-style: italic;
}
.form-field__control textarea:focus {
  background: #fff;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
.form-field__control .span-like-input {
  display: block;
}
.form-field__control input, .form-field__control .span-like-input {
  border: 0.1rem solid #aaa;
  padding: 1rem 2rem;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  background: #fff;
  margin: 0;
  outline: none !important;
  border-radius: 0.5rem;
  resize: none;
  width: 100%;
  max-width: 100%;
  font-size: 1.6rem;
}
@media only screen and (min-width: 991px) {
  .form-field__control input, .form-field__control .span-like-input {
    font-size: 1.7rem;
    padding: 14px 25px 13px 25px !important;
  }
}
@media only screen and (min-width: 1200px) {
  .form-field__control input, .form-field__control .span-like-input {
    font-size: 1.8rem;
  }
}
.form-field__control input::placeholder, .form-field__control .span-like-input::placeholder {
  font-style: italic;
}
.form-field__control input:focus, .form-field__control .span-like-input:focus {
  background: #fff;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
.form-field__control input.radius-bottom, .form-field__control .span-like-input.radius-bottom {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.form-field__control select {
  border: 0.1rem solid #aaa;
  padding: 1rem 2rem;
  line-height: 1.1;
  color: #000;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  background: #fff;
  margin: 0;
  outline: none !important;
  border-radius: 0.5rem;
  resize: none;
  width: 100%;
  max-width: 100%;
  text-align: left;
  font-size: 1.6rem;
}
@media only screen and (min-width: 991px) {
  .form-field__control select {
    font-size: 1.7rem;
    padding: 14px 25px 13px 25px !important;
  }
}
@media only screen and (min-width: 1200px) {
  .form-field__control select {
    font-size: 1.8rem;
  }
}
.form-field__control select::placeholder {
  font-style: italic;
}
.form-field__control select:focus {
  background: #fff;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
.form-field__control select.radius-bottom {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.form-field__control .select2-container {
  width: 100% !important;
  text-align: left;
}
.form-field__control.visible-checked {
  display: none;
}
.form-field__control--suffix {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.form-field__control--suffix input {
  max-width: 25rem;
}
.form-field__control--suffix .form-field__suffix {
  font-size: 1.6rem;
  padding: 0 0 0 10px;
}
@media only screen and (min-width: 991px) {
  .form-field__control--suffix .form-field__suffix {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 1200px) {
  .form-field__control--suffix .form-field__suffix {
    font-size: 1.8rem;
  }
}
.form-field__control--prices {
  display: flex;
  align-items: center;
  flex-direction: row;
}
@media only screen and (min-width: 768px) {
  .form-field__control--prices {
    flex-direction: row;
  }
}
.form-field__control--prices input {
  max-width: 20rem;
}
.form-field__control--prices label {
  text-align: left !important;
  font-size: 1.6rem;
  padding: 0 1rem 0 0;
}
@media only screen and (min-width: 991px) {
  .form-field__control--prices label {
    font-size: 1.7rem;
    padding: 0 11rem0px 0 0;
  }
}
@media only screen and (min-width: 1200px) {
  .form-field__control--prices label {
    font-size: 1.8rem;
  }
}
.form-field__control--prices label.form-field__suffix {
  padding: 0 0 0 1rem;
}
.form-field__control--prices label.form-field__divider {
  padding: 0 1rem 0 2rem;
}
@media only screen and (min-width: 991px) {
  .form-field__control--prices label.form-field__divider {
    padding: 0 1rem 0 4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .form-field__control--prices label.form-field__divider {
    padding: 0 1rem 0 6rem;
  }
}
.form-field__info {
  font-style: italic;
  padding: 0.8rem 0 0 0;
  font-size: 1.6rem;
  color: #777;
}
@media only screen and (min-width: 991px) {
  .form-field__info {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 1200px) {
  .form-field__info {
    font-size: 1.8rem;
  }
}
.form-field__checkbox {
  margin: 0.8rem 0;
  display: block;
  color: #000;
  font-weight: 500;
  font-size: 1.5rem;
  position: relative;
  padding: 0 0 0 2.5rem;
  cursor: pointer;
  min-height: 1.6rem;
  line-height: 1.6rem;
  outline: none;
  width: 100%;
}
.form-field__checkbox:hover {
  text-decoration: underline;
}
.form-field__checkbox .form-field__label {
  width: calc(100% - 2rem);
  text-align: left;
}
.form-field__checkbox .form-field__label a {
  color: inherit;
}
.form-field__checkbox .form-field__label a:hover {
  color: #1bbbc7;
}
.form-field__checkbox input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.form-field__checkbox input:checked ~ .form-field__indicator {
  background-color: #1bbbc7;
  border-color: #1bbbc7;
}
.form-field__checkbox input:checked ~ .form-field__indicator {
  background-color: #1bbbc7;
  border-color: #1bbbc7;
}
.form-field__checkbox input:checked ~ .form-field__indicator {
  background: #1bbbc7;
}
.form-field__checkbox input:checked ~ .form-field__indicator:after {
  display: block;
}
.form-field__checkbox .form-field__indicator {
  top: 0;
  border: 0.1rem solid #c5c5c5;
  background-color: #fff;
  border-radius: 0.4rem;
  position: absolute;
  top: 0.1rem;
  left: 0;
  height: 1.4rem;
  width: 1.4rem;
  background: #fff;
}
.form-field__checkbox .form-field__indicator::after {
  content: "";
  position: absolute;
  display: none;
  left: 3px;
  top: 0px;
  width: 6px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-field__add {
  padding: 10px 0;
  font-style: normal;
  color: #1bbbc7;
  display: inline-block;
}
.form-field__add:hover {
  text-decoration: none;
}
.form-field .btn {
  padding: 1.5rem 2rem;
  min-width: 16rem;
  text-align: center;
  justify-content: center;
}
.form-field > ul {
  list-style-type: none;
  padding-left: 0;
  font-size: initial;
  color: red;
  margin-top: 0;
}

.form-button {
  text-align: right;
}

.success {
  width: 100%;
  max-width: 55rem;
  margin: 0 auto;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.15);
  transition: 0.5s;
  border-radius: 1rem;
  overflow: hidden;
}
.success__top {
  text-align: center;
  background: #5ae68d;
  background: linear-gradient(33deg, #68ef80 0%, #00a9e0 100%);
  color: #fff;
  padding: 3.5rem;
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
}
.success__icon {
  margin: 0 0 2rem 0;
}
.success__icon svg {
  max-width: 100%;
  fill: #fff;
}
.success__caption {
  color: inherit;
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
.success__bottom {
  background: #fff;
  padding: 2.5rem;
  color: #525252;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.5;
}
.success__bottom p {
  margin: 0 0 1rem 0;
}
.success__highlighted {
  color: #5ae68d;
  font-weight: 700;
}

.form-error {
  font-size: initial;
  color: red;
  padding-bottom: 2rem;
  text-align: left;
}

form .file-wrapper .pdf {
  line-height: 1.5;
  font-size: 1.5rem;
  color: #1bbbc7;
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  form .file-wrapper .pdf {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1200px) {
  form .file-wrapper .pdf {
    font-size: 1.8rem;
  }
}
form .file-wrapper .pdf:hover {
  text-decoration: none;
}
form .file-wrapper .remove-file {
  font-size: initial;
  text-decoration: none;
  color: #000;
  margin-left: 0.5rem;
}
form .file-wrapper .remove-file:hover {
  color: red;
}

.registration > .form-field > .form-field__label, .form-field__info {
  text-align: left;
}

.register-href {
  margin-top: 2rem;
}
.register-href__button {
  color: #000;
  font-size: 15px;
  font-weight: 600;
}
.register-href__button:hover {
  color: #1bbbc7;
}

/*# sourceMappingURL=main.css.map */
