.black {
  color: black;
}

.red {
  color: #00B074;
}

.gray {
  color: #999999;
}

.bg-white {
  background-color: white;
}

.color-white {
  color: white;
}

.bg-red {
  background-color: #E65B5F;
}

@media (min-width: 1021px) {
  .onlyMobile {
    display: none;
  }
}

@media (max-width: 1020px) {
  .onlyScreen {
    display: none;
  }
}

a {
  color: unset;
  cursor: pointer;
  text-decoration: none;
}
a.inLine {
  color: #19a4a0;
  text-decoration: underline;
}

.allRed {
  color: #F56666;
}

.allBlue {
  color: #19a4a0;
}

.allGray {
  color: #888;
}

.bigData {
  font-size: larger;
}

.mobileMenu_btn {
  transform: translateY(-1em);
}
.mobileMenu_cont {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  background-color: #eee;
  z-index: 12;
  padding: 2em;
}

.form_cont {
  width: 100%;
  border-top: 1px solid #e9e6e6;
  border-bottom: 1px solid #e9e6e6;
  padding: 25px 0px;
}
.form_cont.w960 {
  max-width: 960px;
}
.form_cont .helf {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.5em;
  overflow: hidden;
}
.form_cont .helf > * {
  width: 100%;
}
@media (max-width: 1020px) {
  .form_cont .helf {
    display: block;
    width: 100%;
    overflow-x: hidden;
  }
  .form_cont .helf > * {
    width: calc(50% - 7px);
    margin-left: 10px;
    display: inline-block;
  }
  .form_cont .helf > *:last-child {
    margin-left: 0px;
  }
}
.form_cont .group_label {
  font-weight: bold;
  color: #000;
  display: block;
  margin-bottom: 5px;
  font-size: 86%;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1em;
}
@media (max-width: 1020px) {
  .split {
    grid-template-columns: 100%;
  }
}
.split > * {
  width: 100%;
}
.split .double {
  grid-column: 1/-1;
}
.split .spacer {
  grid-column: 1/-1;
  height: 2em;
}
.split .checkCont {
  background-color: white;
  color: #333;
  display: block;
  text-align: right;
  padding: 0.5em;
  border: 1px solid #ccc;
}
.split .checkCont label {
  margin-left: 2em;
}
.split.wideGap {
  grid-gap: 3em;
}

.triple {
  display: grid;
  grid-gap: 1em;
}
@media (min-width: 1021px) {
  .triple {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .triple .double {
    grid-column: span 2;
  }
  .triple .full {
    grid-column: 1/-1;
  }
}
@media (max-width: 1020px) {
  .triple {
    grid-template-columns: 100%;
  }
}
@media only print and (max-width: 1020px) {
  .triple {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .triple .double {
    grid-column: span 2;
  }
  .triple .full {
    grid-column: 1/-1;
  }
}
.triple > * {
  width: 100%;
}
.triple .checkCont {
  background-color: white;
  color: #333;
  display: block;
  text-align: right;
  padding: 0.5em;
  border: 1px solid #ccc;
}
.triple .checkCont label {
  margin-left: 2em;
}

.input {
  display: block;
  background-color: white;
  width: 100%;
  padding: 5px 10px;
  font-family: "Heebo", sans-serif;
  font-size: 1em;
  resize: none;
  outline: none !important;
  border: 1px solid #ccc;
  border-radius: 4px;
  direction: rtl;
}
.input--align-center {
  text-align: center;
}
.input.autoWidth {
  display: inline-block;
  width: auto;
}
.input_blank {
  display: inline-block;
  background: none;
  border: none;
  font-family: "Heebo", sans-serif;
  font-size: 1em;
}

.button {
  font-family: "Heebo", sans-serif;
  font-size: 100%;
  display: inline-block;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
  border: none;
  padding: 0.5em 2em;
  margin: 0;
}
@media (max-width: 380px) {
  .button {
    padding: 0.5em 1em;
  }
}
.button.hide {
  display: none;
}
.button.blue {
  color: #19a4a0;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.09) 1px 2px 4px;
  border: none;
  outline: none !important;
}
@media (min-width: 1021px) {
  .button.blue:hover {
    background-color: #19a4a0;
    color: white;
  }
}
.button.blue2 {
  background-color: #19a4a0;
  color: white;
}
.button.red {
  background-color: #00B074;
  color: white;
}
.button.main {
  background-color: #00B074;
  color: white;
}
.button.mainD {
  background-color: var(--colorD);
  color: white;
}
.button.white {
  background-color: white;
  border: 1px solid #ccc;
}
.button.white:hover {
  color: #00B074;
}
.button.wide {
  width: 100%;
}

.buttonCheckbox {
  display: none !important;
}
.buttonCheckbox + label {
  display: inline-block;
  padding: 5px 10px;
  background-color: white;
  border: 1px solid #ccc;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s;
  border-radius: 4px;
}
.buttonCheckbox + label:hover {
  color: #00B074;
}
.buttonCheckbox:checked + label {
  background-color: #00B074;
  border-color: #00B074;
  color: white;
}

.lineRadio {
  position: fixed;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.lineRadio + label {
  cursor: pointer;
  display: inline-block;
  padding: 5px 10px;
  background-color: white;
  border: solid 1px #ccc;
  transition: all 0.25s;
  text-align: center;
  border-radius: 4px;
}
.lineRadio:checked + label {
  background-color: #00B074;
  border-color: #00B074;
  color: white;
}
.lineRadio:not(:checked) + label:hover {
  color: #00B074;
}

.textRadio {
  position: fixed;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.textRadio + label {
  cursor: pointer;
  transition: all 0.25s;
  color: #aaa;
}
.textRadio:checked + label {
  color: #00B074;
}
.allTables {
  width: 100%;
  border-collapse: collapse;
  text-align: right;
}
.allTables tr th {
  padding: 1em 0.5em 0.5em;
}
.allTables tr td {
  padding: 0.5em;
  border: solid #aaa;
  border-width: 1px 0;
  transition: all 0.25s;
}
.allTables tr td.min {
  width: 1em;
  white-space: nowrap;
}
.allTables tr td.clickable {
  --thisColor: $colorPrimary;
  color: var(--thisColor);
}
.allTables tr td.clickable:nth-last-child(1) {
  --thisColor: #e57373;
}
.allTables tr td.clickable:nth-last-child(2) {
  --thisColor: #ba68c8;
}
.allTables tr td.clickable:nth-last-child(3) {
  --thisColor: #7986cb;
}
.allTables tr td.clickable:nth-last-child(4) {
  --thisColor: #4fc3f7;
}
.allTables tr td.clickable:nth-last-child(5) {
  --thisColor: #4db6ac;
}
.allTables tr td.clickable:hover {
  cursor: pointer;
  background-color: var(--thisColor);
  color: white;
}
.allTables tr.selected {
  background-color: #6abe9d;
  color: white;
}
.allTables tr.selected .selected_off {
  display: none;
}
.allTables tr:not(.selected) .selected_on {
  display: none;
}
.allTables tr:not(.selected) td.clickableGreen {
  color: #6abe9d;
}
.allTables tr:not(.selected) td.clickableGreen:hover {
  cursor: pointer;
  background-color: #6abe9d;
  color: white;
}

.req {
  display: inline;
}
.req::after {
  content: "*";
  color: #00B074;
}

.spinner, .spinner2 {
  text-align: center;
  font-size: 2em;
  color: #00B074;
}
.spinner.spinner--small, .spinner2.spinner--small {
  display: inline-block;
}
.spinner.spinner--margin-right, .spinner2.spinner--margin-right {
  margin-right: 10px;
}
.spinner.hide, .spinner2.hide {
  display: none;
}

.spinner--small {
  font-size: 1em;
}

.ok {
  background: #6abe9d;
  box-shadow: rgba(0, 0, 0, 0.09) 1px 2px 4px;
  color: white;
  padding: 1em;
  margin-bottom: 1em;
  width: 100%;
  text-align: center;
}

.error {
  background: #F56666;
  box-shadow: rgba(0, 0, 0, 0.09) 1px 2px 4px;
  color: white;
  padding: 1em;
  margin-bottom: 1em;
  width: 100%;
  text-align: center;
}

.slider_cont {
  position: relative;
  height: 2px;
  background-color: #888;
  margin: 0.75em auto;
  opacity: 1;
  transition: all 0.25s;
}
.slider_data {
  color: #00B074;
  font-size: larger;
}
.slider_slider {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  appearance: none;
  height: 2px;
  background: none;
  outline: none;
}
.slider_slider::-webkit-slider-thumb {
  pointer-events: all;
  -webkit-appearance: none;
  appearance: none;
  width: 1em;
  height: 1em;
  background: #00B074;
  cursor: pointer;
}
.slider_slider::-moz-range-thumb {
  pointer-events: all;
  width: 1em;
  height: 1em;
  background: #00B074;
  cursor: pointer;
}
.slider_min {
  font-size: 0.75em;
  position: absolute;
  top: calc(100% + 0.75em);
  right: 0;
}
.slider_max {
  font-size: 0.75em;
  position: absolute;
  top: calc(100% + 0.75em);
  left: 0;
}

.card {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 50;
  padding: 2em 1em;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}
.card.on {
  pointer-events: all;
  opacity: 1;
}
.card_close {
  color: #00B074;
  font-size: 1.5em;
  cursor: pointer;
}
.card_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #eee;
  padding: 1em;
  width: calc(100% - 1em);
  max-width: 480px;
  max-height: calc(100% - 4em);
  overflow-y: auto;
  box-shadow: rgba(0, 0, 0, 0.09) 1px 2px 4px;
}
@media (max-width: 1020px) {
  .card_content {
    max-height: 100%;
  }
}
.card_content.wide {
  max-width: 785px;
}
.card_content.exwide {
  max-width: 960px;
}
.card_error {
  background-color: #00B074;
  color: white;
}

.footer {
  position: sticky;
  top: 100%;
  width: calc(100% - 2em);
  padding: 2em 2em 0;
  background-color: #555;
  color: white;
  margin-top: 2em;
  font-size: 0.8em;
}
.footer_ver {
  font-size: 0.8em;
  opacity: 0.25;
}

.fa-shekel-sign {
  font-size: 0.75em;
}

.newUser .contact {
  text-align: center;
  font-weight: bold;
  margin: 15px 0px 0px;
  font-size: 110%;
}

.image-logo {
  max-height: 50px;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

@media (max-width: 1020px) {
  .mobile-hide {
    display: none !important;
  }
}

@media (min-width: 1021px) {
  .desktop-hide {
    display: none !important;
  }
}

.sticky-outer-wrapper {
  width: 100%;
}

.spinner-files {
  width: 100%;
  text-align: center;
  margin-top: 25px;
  font-family: "Font Awesome 5 Pro";
  color: #F56666;
  display: inline-block;
}
.spinner-files.hide {
  display: none;
}
.spinner-files.no-margin {
  margin-top: 0;
  margin: 0;
}

.popup {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 150;
  display: none;
  transition: 0.4s all;
}
.popup__wrapper {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 850px;
  max-width: 100%;
  background: #fff;
}
.popup__title {
  color: #343d3f;
  font-size: 28px;
}
.popup__subtitle {
  color: #343d3f;
  font-weight: normal;
  font-size: 16px;
}
.popup__subtitle b {
  color: #fc5353;
}
.popup__close {
  width: 30px;
  height: 30px;
  background: url("/images/popups/close.svg") no-repeat center center #fc5353;
  background-size: 12px 12px;
  position: absolute;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .popup__close {
    top: -8px;
  }
}
.popup--open {
  display: block;
}
.popup--newsletter-info .newsletter-info__logo {
  height: 100px;
  margin-top: 25px;
  display: inline-block;
}
.popup--newsletter-info .popup__body {
  background: #343d3f;
  margin-top: 25px;
  padding: 30px;
}
.popup--newsletter-info .popup__body img {
  width: 100%;
}
.popup--video .popup__wrapper {
  width: auto;
}
.popup--video .popup__body {
  padding: 5px;
  width: 100%;
  height: 39vw;
  width: 68vw;
}
.popup--video .popup__body iframe {
  width: 100%;
  height: 100%;
}
@media (orientation: portrait) {
  .popup--video .popup__body {
    height: 55vw;
    width: 95vw;
  }
}
.popup--launching-welcome .launching-welcome__title {
  color: #fff;
  font-size: 36px;
  position: relative;
  z-index: 1;
}
.popup--launching-welcome .popup__close {
  background-color: #FF7474;
}
.popup--launching-welcome .launching-welcome__subtitle {
  font-size: 25px;
  color: #FF7474;
  position: relative;
  z-index: 1;
  font-weight: normal;
}
.popup--launching-welcome .launching-welcome__content {
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  position: relative;
  z-index: 1;
  padding: 20px;
  text-align: right;
  margin-top: 20px;
}
.popup--launching-welcome .launching-welcome__contact {
  position: relative;
  margin-top: 30px;
  z-index: 1;
}
@media (max-width: 767px) {
  .popup--launching-welcome .launching-welcome__contact {
    margin-top: 15px;
  }
}
.popup--launching-welcome .launching-welcome__contact .contact__method {
  direction: ltr;
  color: #fff;
  font-size: 20px;
  float: right;
}
@media (max-width: 767px) {
  .popup--launching-welcome .launching-welcome__contact .contact__method {
    float: none !important;
    margin-bottom: 10px;
  }
  .popup--launching-welcome .launching-welcome__contact .contact__method:last-child {
    margin-bottom: 0px;
  }
}
.popup--launching-welcome .launching-welcome__contact .contact__method--email {
  float: left;
}
.popup--launching-welcome .launching-welcome__contact .contact__method i {
  color: #FF7474;
  margin-right: 5px;
  display: inline-block;
  position: relative;
  top: 1px;
}
.popup--launching-welcome .popup__wrapper {
  padding: 40px 70px;
  background: url("../images/popups/launching/welcome.jpg") no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .popup--launching-welcome .popup__wrapper {
    padding: 15px;
  }
}
.popup--launching-welcome .popup__wrapper:before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.noscroll {
  overflow: hidden;
}

.dialog {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background: rgba(143, 143, 143, 0.623);
  z-index: 101;
  visibility: hidden;
  opacity: 0;
  transition: 0.7s all;
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding: 50px 0px;
}
@media (max-width: 599px) {
  .dialog {
    padding: 0px;
    overflow: hidden;
  }
}
.dialog__wrapper {
  position: relative;
  width: 450px;
  margin: 30px 0px;
  max-width: calc(100% - 30px);
  transform: translateY(-5%);
  background: #FFF;
  border-radius: 4px;
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 12px 17px 2px rgba(0, 0, 0, 0.14), 0 5px 22px 4px rgba(0, 0, 0, 0.12);
  transform: translateY(-20px);
  transition: 0.4s transform;
}
@media (max-width: 599px) {
  .dialog__wrapper {
    width: 100% !important;
    height: 100% !important;
    max-width: 100vw;
    max-height: 100vh;
    transform: translate(0) !important;
    top: 0;
    right: 0;
    overflow-y: scroll;
    padding-top: 0;
    padding-bottom: 0;
    display: grid;
    border-radius: 0px;
    grid-template-rows: 0px auto 1fr auto;
    border-radius: 0;
    margin: 0px;
  }
}
.dialog__wrapper:before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 2;
  border-radius: 4px;
}
.dialog__wrapper:after {
  content: "";
  position: absolute;
  top: calc(50% - 20px);
  right: calc(50% - 20px);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 2px solid transparent;
  border-right: 2px solid #00B074;
  animation: 0.9s spin infinite linear;
  z-index: 3;
}
.dialog__wrapper:before, .dialog__wrapper:after {
  visibility: hidden;
  opacity: 0;
  transition: 0.4s all;
}
.dialog--loading .dialog__wrapper:before, .dialog--loading .dialog__wrapper:after {
  visibility: visible;
  opacity: 1;
}
.dialog__title {
  border-bottom: 2px solid #00B074;
  justify-self: right;
  font-size: 24px;
  font-weight: 400;
  color: #4A4A4A;
  text-align: right;
  padding-right: 50px;
  padding-bottom: 10px;
  padding-top: 10px;
}
@media (max-width: 599px) {
  .dialog__title {
    margin-top: 0px !important;
    padding-top: 5px !important;
  }
}
@media (max-width: 599px) {
  .dialog__top {
    position: sticky;
    top: 0px;
    z-index: 4;
    background-color: white;
  }
}
.dialog__top__title, .dialog__top__subtitle {
  text-align: center;
  display: block;
}
.dialog__top__subtitle {
  color: #E57373;
  font-size: 1em;
}
.dialog__close {
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  background: #CFCFCF;
  color: #FFF;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.4;
  transition: 0.4s background-color;
  z-index: 99;
}
@media (max-width: 599px) {
  .dialog__close {
    position: sticky;
    z-index: 5;
  }
}
.dialog__close:hover {
  background-color: #b6b6b6;
}
.dialog__top {
  width: 100%;
}
.dialog__subtitle {
  font-size: 1.2em;
  text-align: center;
  margin-top: 20px;
  font-weight: bold;
  padding: 0px 20px;
  color: #00B074;
}
.dialog__body {
  padding: 20px;
}
@media (max-width: 599px) {
  .dialog__body {
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
  }
}
.dialog__footer {
  border-top: 1px solid #E2E2E2;
  width: 100%;
  padding: 15px 15px;
  z-index: 4;
}
@media (max-width: 599px) {
  .dialog__footer {
    position: sticky !important;
    bottom: 0px !important;
    z-index: 4 !important;
    background-color: white !important;
  }
}
@media (max-width: 599px) {
  .dialog__footer.dialog__footer-safari {
    padding-bottom: 130px !important;
  }
}
.dialog--open {
  opacity: 1;
  visibility: visible;
  overflow-y: scroll;
}
@media (max-width: 599px) {
  .dialog--open {
    overflow: hidden;
  }
}
.dialog--open .dialog__wrapper {
  transform: translateY(0px);
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

.field {
  display: block;
  width: 100%;
  margin: 0;
}
.field__title {
  color: #636363;
}
.field__title--bold {
  font-weight: bold;
}
.field__input-login {
  border: 1.1px solid #7E7E7E;
  border-radius: 4px;
  background-color: #F3F3F3;
  color: #333333;
  padding: 13px 10px;
  padding-right: 60px;
  margin: 0;
  width: 100%;
  margin-bottom: 15px;
  background-repeat: no-repeat;
  background-position: right 14px top 50%;
  outline: none;
}
.field__input-login--email {
  background-image: url("../images/icons/empty-email.svg");
}
.field__input-login--profile {
  background-image: url("../images/icons/profile.svg");
}
.field__input-login--password {
  background-image: url("../images/icons/lock.svg");
}
.field__input-login--phone {
  background-image: url("../images/icons/telephone.svg");
}
.field--no-fill {
  width: unset;
}
.field--margin-top {
  margin-top: 20px;
}
.field--number {
  height: 50px;
  width: 50px;
  border: 1px solid #979797;
  border-radius: 4px;
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}
.field--checkbox input, .field--radio input {
  position: fixed;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.field--checkbox input + label, .field--radio input + label {
  width: 100%;
  cursor: pointer;
  display: block;
  padding: 7px 10px;
  background-color: white;
  border: 1px solid #ccc;
  transition: all 0.25s;
  text-align: center;
  border-radius: 4px;
}
.field--checkbox input:checked + label, .field--radio input:checked + label {
  background-color: #00B074;
  border-color: #00B074;
  color: white;
}
.field--checkbox input:not(:checked) + label:hover, .field--radio input:not(:checked) + label:hover {
  color: #00B074;
}
.field--shadow.field--checkbox input + label, .field--shadow.field--radio input + label {
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.16);
}
.field--bold.field--checkbox input + label, .field--bold.field--radio input + label {
  font-weight: bold;
}
.field--no-border.field--checkbox input + label, .field--no-border.field--radio input + label {
  border: none;
}
.field--customized-select select {
  width: 100%;
}
.field--customized-select .select2-container--default .select2-selection--single {
  border-radius: 4px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border: none;
  padding: 5px 0px;
  height: auto;
  outline: none !important;
}
.field--customized-select .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 6px;
  left: 5px;
}

.field-group {
  display: block;
  margin-top: 20px;
}
.field-group__title {
  color: #636363;
}
.field-group__title--bold {
  font-weight: bold;
}
.field-group__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 10px;
  align-items: center;
}
.field-group--with-splitter .field-group__fields {
  grid-template-columns: 1fr auto 1fr;
}
.field-group--with-splitter .field-group__fields .field-group__splitter {
  color: #AFAFAF;
}

.select2-dropdown {
  border: none;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.checkbox-container {
  display: inline-block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-right: 24px;
  color: #7E7E7E;
  font-size: 1.05em;
  font-weight: 300;
}
.checkbox-container--readonly {
  cursor: text;
}
.checkbox-container--readonly .checkbox-container__checkmark {
  cursor: default;
}
.checkbox-container.checkbox-container--right {
  padding-left: 0;
  padding-right: 27px;
}
.checkbox-container.checkbox-container--left {
  padding-left: 27px;
  padding-right: 0;
}
.checkbox-container.checkbox-container--left .checkbox-container__checkmark {
  margin: 0;
  margin-right: auto;
  left: 0;
  right: unset;
}
.checkbox-container .checkbox-container__checkmark:after {
  left: 50%;
  top: 45%;
  width: 7px;
  height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: translate(-50%, -50%) rotate(45deg);
  position: absolute;
}
.checkbox-container .checkbox-container__checkbox:checked + .checkbox-container__checkmark {
  background-color: #00B074;
  border: 1px solid #00B074;
}
.checkbox-container .checkbox-container__checkbox:checked + .checkbox-container__checkmark.checkmark-propt {
  background-color: #00B074;
  border: 1px solid #00B074;
}
.checkbox-container .checkbox-container__checkbox:checked + .checkbox-container__checkmark:after {
  display: block;
  content: "";
}
.checkbox-container .checkbox-container__checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-container .checkbox-container__checkmark {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  height: 18px;
  width: 18px;
  border: 1px solid #00B074;
  border-radius: 4px;
  transition: all 0.4s;
}
.checkbox-container .checkbox-container__checkmark ::after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox-container .checkbox-container__checkmark.checkmark-propt {
  border: 1px solid #00B074;
}
.checkbox-container--small {
  padding-right: 22px;
}
.checkbox-container--small .checkbox-container__checkmark {
  width: 16px;
  height: 16px;
  font-size: 14px;
}
.checkbox-container--small .checkbox-container__checkmark:after {
  width: 5px;
  height: 10px;
  margin-right: 1px;
  border-width: 0 2px 2px 0;
}
.checkbox-container.checkbox-container--gray .checkbox-container__checkmark {
  border: none;
  background-color: #F3F3F3;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 9vw;
  /* 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: #9B9B9B;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch .slider .circle {
  position: absolute;
  content: "";
  height: calc(9vw - 7px);
  width: calc(9vw - 7px);
  left: 4px;
  bottom: 3px;
  box-shadow: -1px 2px 5px rgba(0, 0, 0, 0.52);
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.switch input:checked + .slider {
  background-color: #00B074;
}
.switch input:checked + .slider .circle {
  color: #00B074;
  left: 100%;
  transform: translateX(calc(-100% - 4px));
}
.switch input[disabled] + .slider {
  opacity: 0.2;
}
.switch .slider.round {
  border-radius: 34px;
}
.switch .slider.round .circle {
  border-radius: 50%;
}

.auto-complete-input {
  position: relative;
}
.auto-complete-input:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  border-right: 1px solid #000;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  animation: loading 1s infinite;
  animation-delay: 0;
  animation-timing-function: linear;
  opacity: 0;
  transform: rotate(0deg);
}
.auto-complete-input--loading:before {
  opacity: 1;
}
.auto-complete-input__icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.auto-complete-options {
  position: absolute;
  width: 100%;
  z-index: 90;
  background: #fff;
  border-radius: 4px;
  background-color: #FFFFFF;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 2px 2px 0 rgba(0, 0, 0, 0.24);
  font-size: 1em;
}
.auto-complete-options__option .auto-complete-options__link {
  position: relative;
  display: block;
  padding: 5px 50px;
  border-radius: 4px;
}
.auto-complete-options__option .auto-complete-options__suggestion-address {
  display: block;
  margin-top: -2px;
  margin-bottom: 3px;
  color: #00B074;
}
.auto-complete-options__option .auto-complete-options__link:hover, .auto-complete-options__option--browsed .auto-complete-options__link {
  background: #00B074;
}
.auto-complete-options__option .auto-complete-options__link:hover .auto-complete-options__suggestion,
.auto-complete-options__option .auto-complete-options__link:hover .auto-complete-options__suggestion-type,
.auto-complete-options__option .auto-complete-options__link:hover .auto-complete-options__suggestion-address, .auto-complete-options__option--browsed .auto-complete-options__link .auto-complete-options__suggestion,
.auto-complete-options__option--browsed .auto-complete-options__link .auto-complete-options__suggestion-type,
.auto-complete-options__option--browsed .auto-complete-options__link .auto-complete-options__suggestion-address {
  color: #fff;
}
.auto-complete-options__option .auto-complete-options__link:hover .auto-complete-options__icon, .auto-complete-options__option--browsed .auto-complete-options__link .auto-complete-options__icon {
  filter: brightness(0) invert(1);
  opacity: 1;
}
.auto-complete-options__icon {
  width: 25px;
  height: 25px;
  position: absolute;
  display: inline-block;
  background: no-repeat;
  background-size: 100%;
  right: 12.5px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.3;
}
.auto-complete-options__icon--building {
  background-image: url("../images/autocomplete/icons/building.svg");
}
.auto-complete-options__icon--district {
  background-image: url("../images/autocomplete/icons/area.svg");
}
.auto-complete-options__icon--environment {
  background-image: url("../images/autocomplete/icons/environment.svg");
}
.auto-complete-options__icon--city {
  background-image: url("../images/autocomplete/icons/city.svg");
}
.auto-complete-options__icon--tag {
  background-image: url("../images/autocomplete/icons/tag.svg");
}
.auto-complete-options__suggestion {
  font-size: 1em;
  color: #000;
  font-weight: 500;
}
@media (max-width: 1020px) {
  .auto-complete-options__suggestion {
    font-size: 0.75em;
  }
}
.auto-complete-options__suggestion-type {
  color: #666666;
  margin-top: -5px;
  font-size: 0.8em;
  display: block;
  font-weight: 300;
}
@media (max-width: 1020px) {
  .auto-complete-options__suggestion-type {
    font-size: 0.7em;
  }
}

@keyframes loading {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
button {
  font-family: "Heebo", sans-serif;
}

.buttons-group {
  display: flex;
  border-radius: 4px;
}
.buttons-group .button {
  border-radius: 0px;
  flex: 1;
  white-space: nowrap;
}
.buttons-group .button:first-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  justify-content: center;
}
.buttons-group .button:last-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  justify-content: center;
}
.buttons-group--shadow {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.button {
  cursor: pointer;
  display: inline-block;
  padding: 7px 10px;
  transition: all 0.4s;
  text-align: center;
  border-radius: 4px;
  background: #FFF;
  outline: none !important;
}
.button--svg {
  display: flex;
}
.button--svg-stroke svg > * {
  stroke: #000;
}
.button--svg-fill svg > * {
  fill: #000;
}
.button i {
  margin-left: 7px;
}
.button--no-style {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none !important;
}
.button--no-style i {
  margin-left: 0px;
}
.button--100-redius {
  border-radius: 100px;
}
.button--circle {
  border-radius: 100px;
  height: 40px;
  width: 40px;
  position: relative;
  cursor: pointer;
}
.button--extra-padding {
  padding: 7px 13px;
}
.button--no-padding {
  padding: 0;
}
.button--full-width {
  width: 100%;
}
.button--no-cursor {
  cursor: default;
}
.button--transparent {
  background: none;
}
.button--shadow {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.button--red {
  color: white;
  border: none;
  background-color: #00B074;
}
.button--disabled {
  opacity: 0.5;
  cursor: default;
}
.button--border {
  border: 1px solid #E4E4E4;
}
.button--small {
  padding: 5px 20px;
}
.button--no-background {
  background: none;
}
.button--filled, .button--border.button--active {
  background: #00B074;
  color: #fff;
  border-color: #00B074;
}
.button--filled:disabled, .button--border.button--active:disabled {
  color: #DFDFDF;
  background: none;
}
.button--filled.button--svg-stroke svg > *, .button--border.button--active.button--svg-stroke svg > * {
  stroke: #fff;
}
.button--filled.button--svg-fill svg > *, .button--border.button--active.button--svg-fill svg > * {
  fill: #fff;
}
@media (min-width: 1021px) {
  .button--border:not(.button--disabled):hover {
    background: #00B074;
    color: #fff;
    border-color: #00B074;
  }
  .button--border:not(.button--disabled):hover:disabled {
    color: #DFDFDF;
    background: none;
  }
  .button--border:not(.button--disabled):hover.button--svg-stroke svg > * {
    stroke: #fff;
  }
  .button--border:not(.button--disabled):hover.button--svg-fill svg > * {
    fill: #fff;
  }
}
@media (min-width: 1021px) {
  .button--filled:hover {
    background: #008c5c;
  }
}
.button--no-radius {
  border-radius: 0px;
}
.button--circle {
  border-radius: 100px;
}
.button--auto-width {
  width: auto;
}
.button--center-self {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.button--underline {
  text-decoration: underline;
}
.button--email, .button--whatsapp {
  font-size: 20px;
  width: 46px;
  height: 43px;
  padding: 0px;
  line-height: 0;
  margin-left: 3px;
  color: #fff;
  position: relative;
}
.button--email i, .button--whatsapp i {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}
.button--email {
  background: #00B074;
}
.button--grey {
  background: #9B9B9B;
  color: #fff;
}
@media (min-width: 1021px) {
  .button--grey:hover {
    background: #828282;
  }
}
.button--green {
  background-color: #6abe9d;
  color: white;
}
.button--light-green {
  background-color: #8ABA4F;
  color: white;
}
.button--color-white {
  color: #fff;
}
.button--red {
  background-color: #00B074;
  color: white;
}
.button--red.button--border {
  border-color: #00B074;
  color: #00B074;
  background: #fff;
}
.button--azure {
  background-color: #4AC6D2;
  color: white;
}
.button--whatsapp {
  background: #00ba38;
  background: -moz-linear-gradient(top, #00ba38 0%, #05c442 33%, #12df63 69%, #1df47c 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #00ba38), color-stop(33%, #05c442), color-stop(69%, #12df63), color-stop(100%, #1df47c));
  background: -webkit-linear-gradient(top, #00ba38 0%, #05c442 33%, #12df63 69%, #1df47c 100%);
  background: -o-linear-gradient(top, #00ba38 0%, #05c442 33%, #12df63 69%, #1df47c 100%);
  background: -ms-linear-gradient(top, #00ba38 0%, #05c442 33%, #12df63 69%, #1df47c 100%);
  background: linear-gradient(to bottom, #00ba38 0%, #05c442 33%, #12df63 69%, #1df47c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ba38", endColorstr="#1df47c", GradientType=0 );
}
.button--video {
  border-radius: 100px;
  width: 66px;
  height: 66px;
  background-color: white;
}
.button--video--red {
  background-color: red;
}
.button--video button-video-block__triangular {
  width: 0;
  height: 0;
  border-top: 7.5px solid transparent;
  border-bottom: 7.5px solid transparent;
  border-left: 17.5px solid red;
}
.button--x {
  width: 15px;
  height: 15px;
  display: block;
  z-index: 3;
  position: relative;
}
.button--x:after, .button--x:before {
  content: "";
  width: 100%;
  height: 1.5px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  background-color: white;
}
.button--x:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.button--x:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.button--x-gray {
  background-color: #A6A6A6;
}
.button--x-gray:after, .button--x-gray:before {
  background-color: white;
}
.button--x-big {
  width: 22px;
  height: 22px;
}
.button--x-big:after, .button--x-big:before {
  width: 13px;
}
.button--top-right {
  position: absolute;
  right: 0;
  top: 0;
}
.button--article {
  background-color: #00B074;
  color: white;
  border-radius: 100px;
  padding: 8px 0;
  font-size: 22px;
  font-weight: bold;
  margin: 0 auto;
  width: 300px;
}
.button--bottom-shadow {
  -webkit-box-shadow: -1px 21px 23px -18px rgba(0, 0, 0, 0.56);
  -moz-box-shadow: -1px 21px 23px -18px rgba(0, 0, 0, 0.56);
  box-shadow: -1px 21px 23px -18px rgba(0, 0, 0, 0.56);
}
.button--disable {
  pointer-events: none;
  opacity: 0.5;
}

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