@font-face {
  font-family: 'SegoeUI';
  src: var(--SegoeUI-Regular) format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/**
 * Cookies
 */

.cookies-notice {
  position: fixed;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 14px;
  padding: 16px 0;
  width: 100%;
  display: none;
  justify-content: center;
  z-index: 9999;
}

.cookies-notice a {
  color: #fff;
}

.cookies-notice > i.icon-close {
  position: absolute;
  right: 16px;
  top: 12px;
  transform: translate(0, -50%);
  cursor: pointer;
}

.cookies-notice > i.icon-close:before {
  content: "x";
  font-size: 12px;
}

.cookies-notice p {
  padding: 0 50px;
  width: 100%;
  font-size: 10px;
  margin: 0;
  line-height: 1.8;
  text-align: center;
}

@media only screen and (max-width: 450px) {
  .cookies-notice {
	  padding: 10px 0;
  }
  .cookies-notice p {
    text-align: left;
    padding: 0 15px;
    line-height: 1.6;
  }
  .cookies-notice > i.icon-close {
    position: absolute;
    right: 10px;
    top: 12px;
    transform: translate(0, -50%);
    cursor: pointer;
  }
}

/**
 * Cookies box
 */

.cookie-box * {
  font-family: 'Montserrat', "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.cookie-box a {
  color: #696969;
  font-weight: bold;
}

.cookie-box ol {
  list-style: none;
  padding: 0;
}

.cookie-box ol li {
  height: initial !important;
  float: initial !important;
}

.cookie-box label,
.cookie-box .closebutton {
  cursor: pointer;
}

#second-overlay [type="checkbox"] {
  position: absolute;
  left: -9999px;
}

.switches {
  width: 100%;
  margin: 5px auto 20px;
  border: 1px solid #d8d8d8;
}

.switches li {
  padding: 15px 0;
  border-bottom: 1px solid #d8d8d8;
  display: grid;
  grid-template-columns: 75% 25%;
  grid-template-areas: "cookieskind checkbox"
                       "explanation explanation";
  background-color: transparent;
}

.switches li:last-child {
  border-bottom: 0;
}

.switches .swithtext {
  grid-area: cookieskind;
  display: flex;
  align-items: center;
  color: #696969;
  font-size: 12px;
  font-weight: bold;
  padding-left: 20px;
  padding-right: 15px;
  cursor: pointer;
}

.switches .swithtext em {
  display: block;
  margin-right: 15px;
  margin-top: -1px;
  font-size: 20px;
  font-weight: normal;
  font-style: normal !important;
  cursor: pointer;
  color: #000;
}

.switches .swithtext em.hiddentext {
  margin-top: -5px;
  font-size: 26px;
}

.switches label {
  grid-area: checkbox;
  display: flex;
  /*flex-direction: row-reverse;*/
  align-items: center;
  justify-content: space-between;
  margin: 0 20px 0 0;
  margin-bottom: 0;
  justify-self: end
}

.switches span:last-child {
  position: relative;
  width: 50px;
  height: 26px;
  border-radius: 15px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.4);
  background: #cac9e1;
  transition: all 0.3s;
}

.switches span:last-child::before,
.switches span:last-child::after {
  content: "";
  position: absolute;
}

.switches span:last-child::before {
  left: 1px;
  top: 1px;
  width: 24px;
  height: 24px;
  background: #e8e9ed;
  border-radius: 50%;
  z-index: 1;
  transition: transform 0.3s;
}

.switches span:last-child::after {
  top: 50%;
  right: 8px;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  background: var(--uncheck-switcher);
  background-size: 12px 12px;
}

.switches [type="checkbox"]:checked + label span:last-child {
  background: #01b701;
}

.switches [type="checkbox"]:checked + label span:last-child::before {
  transform: translateX(24px);
}

.switches [type="checkbox"]:checked + label span:last-child::after {
  width: 14px;
  height: 14px;
  left: 8px;
  background-image: var(--checkmark-switcher);
  background-size: 14px 14px;
}

.switches .swithtextshowed {
  grid-area: explanation;
  font-size: 12px !important;
  color: #696969 !important;
  line-height: 1.8 !important;
  padding: 15px 20px !important;
  margin-top: 20px;
  margin-bottom: -15px;
  background-color: #eeeeee;
}

.overlay {
  background: rgba(0,0,0,.7);
  padding: 20px 0;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
  max-height: 100%;
  overflow: hidden;
  text-shadow: none;
}

.overlaycookies {
  background: rgba(0,0,0,0);
}

.overlayshows {
  display: flex;
}

.overlay .modalinfo {
  width: 100%;
  max-width: 500px;
  max-height: 100%;
  overflow: scroll;
  background-color: #ffffff;
  background-position: center;
  background-size: cover;
  padding:30px 45px 35px;
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
  position: relative;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.overlay .modalinfo::-webkit-scrollbar  {
  display: none;
}

.overlay .modalinfo .closex {
  height: 60px;
  text-align:  right;
  background-color: #ffffff;
  position: absolute;
  right: 35px;
  top: 15px;
}

.overlay .modalinfo .closex img {
  position: absolute;
  right: -15px;
  top: 5px;
  height: 18px;
  width: auto;
  cursor: pointer;
}
.overlay .modalinfo .modaltextcookies {
  padding-top: 30px;
}

.overlay .modalinfo .modaltext h4 {
  padding: 15px 0;
}

.overlay .modalinfo .modaltext p {
  color: #696969;
  font-size: 12px;
  line-height: 1.7;
  padding: 0 0 10px;
  text-align: left;
  text-justify: inter-word;
}

.overlay .modalinfo .modaltext .modaltitle {
  text-align:  center;
  font-size: 13.5px;
  font-weight: bold;
  margin: 0;
  padding-bottom: 15px;
}
.overlay .modalinfo .modaltext button {
  width: 100%;
  max-height: none !important;
  border: none;
  padding: 12px 15px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  color: #ffffff;
  border-radius: 0 !important;
  background-image: none !important;
  background-color: #ff4b77;
  background-position: center;
  background-size: cover;
}

.overlay .modalinfo .modaltext .acceptallbutton {
  /*width: 150px;*/
  background-image: none;
  margin-top: 10px;
  margin-bottom: 30px;
}

.overlay .modalinfo .modaltext .selectionbutton {
  /*width: 150px;*/
  margin-bottom: 15px;
}

.overlay .modalinfo .modaltext .rejectallbutton {
  /*width: 150px;*/
  background-color: #cac9e1;
}

.overlay .modalinfo .modaltext .cookiesset {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding: 0;
  margin-top: -10px;
  margin-bottom: -5px;
}

.overlay .modalinfo .modaltext .cookiesset a {
  font-size: 13px;
  color: #ff4b77;
}

.overlay .modalinfo .modaltext a {
  text-decoration: none;
  cursor: pointer;
}

.overlay .modalinfo .modaltext a:hover {
  text-decoration: underline;
}

.hideoverlay {
  display:  none;
}

#third-overlay .label-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-left: 28px;
  padding-bottom: 10px;
  font-weight: bold;
}

#third-overlay .main-label-container {
  padding-left: 0;
  padding-bottom: 0;
  margin-bottom: 11px;
}

#third-overlay .label {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: bold;
  color: #696969;
  padding: 0;
  cursor: pointer;
  white-space: normal;
  text-align: left;
  line-height: 22px;
}

#third-overlay .label em {
  line-height: 16px;
}

#third-overlay .main-label-container .label {
  font-size: 13.5px;
}

#third-overlay [type="checkbox"] {
  height: 18px;
  width: 18px;
  min-height: 18px;
  min-width: 18px;
  max-height: 18px;
  max-width: 18px;
  margin: 0;
  margin-right: 10px;
  border-radius: 0;
  -webkit-appearance: checkbox !important;
  -moz-appearance: checkbox !important;
  appearance: checkbox !important;
  border: 1px solid #000000;
}

#third-overlay em {
  display: block;
  margin-left: 10px;
  margin-top: -2px;
  font-size: 16px;
  max-height: 18px;
  max-width: 18px;
  min-height: 18px;
  min-width: 18px;
  border-radius: 50%;
  font-weight: normal;
  font-style: normal !important;
  cursor: pointer;
  color: #000;
  text-align: center;
  border: 1px solid #000;
}

#third-overlay p {
  padding-left: 28px;
  font-size: 12px;
}

#third-overlay .accordion-content {
  padding-left: 53px;
}

#third-overlay .accordion-content p {
  font-size: 12px;
  line-height: 1.6;
  padding-left: 0;
  padding-bottom: 0;
  color: #696969;
}

#third-overlay .accordion-content p a {
  word-break: break-all;
  color: #696969;
  font-weight: normal;
}

#third-overlay .accordion-content p:last-child {
  padding-bottom: 30px !important;
}

#third-overlay .accordion-content p.partnerpointstitle {
  font-weight: bold;
  margin-bottom: 0;
}

#third-overlay .accordion-content p.partnerpointscontent {
  padding-top: 5px;
  padding-bottom: 15px;
  margin-bottom: 0;
}

#third-overlay .accordion-content ul {
  list-style-type: circle;
  color:  #696969;
  font-size: 12px;
  padding-top: 5px;
  padding-left: 15px;
  padding-bottom: 30px;
}

#third-overlay .accordion-content ul li {
  padding: 3px 0;
  line-height: 1.6;
}

@media only screen and (max-width: 510px) {
    .overlay {
      background: rgba(0,0,0,.5);
        align-items: center;
        padding: 15px;
    }
    .overlay .modalinfo {
        padding: 30px 35px 30px;
    }
}

@media only screen and (max-width: 410px) {
  .overlay .modalinfo {
      padding: 30px 25px 25px;
  }
}

@media only screen and (max-width: 450px) {
    .switches .swithtext {
        max-width: 90%;
    }
}

@media only screen and (max-width: 340px) {
  .overlay .modalinfo .modaltext .selectionbutton {
      margin-bottom: 10px;
      font-size: 15px;
      padding: 8px;
  }

  .overlay .modalinfo .modaltext .rejectallbutton {
      margin-bottom: 10px;
      font-size: 15px;
      padding: 8px;
  }

  .overlay .modalinfo .modaltext .acceptallbutton {
      font-size: 15px;
      padding: 8px;
  }

}

/**
 * Oauth buttons
 */

.btn-con.oauth {
  width: 100%;
  text-align: center;
}

.btn-con.oauth .btn.btn-google-oauth,
.btn-con.oauth .btn.btn-yahoo-oauth,
.btn-con.oauth .btn.btn-microsoft-oauth {
  max-width: 100%;
  width: 318px;
  padding: 15px;
  color: #fff;
  border-radius: 0;
  position: relative;
  margin: 0 auto 20px;
  display: block;
  cursor: pointer;
  text-decoration: none;
}

.btn-con.oauth .btn-oauth * {
  font-size: 14px;
  padding-bottom: 0;
}

.btn-con.oauth .btn-oauth span:last-child {
  text-align: center;
  font-weight: normal;
}

.btn-con.oauth .btn.btn-google-oauth {
  border: solid 1px #4285f4;
  background: #4285f4;
}

.btn-con.oauth .btn.btn-yahoo-oauth {
  border: solid 1px #720e9e;
  background: #720e9e;
}

.btn-con.oauth .btn.btn-microsoft-oauth {
  border: solid 1px #8c8c8c;
  background: #fff;
  color: #5e5e5e;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 15px;
  padding-left: 27px;
}

.btn-con.oauth .btn.btn-microsoft-oauth span:last-child {
  font-family: 'SegoeUI';
  font-weight: 600;
  font-size: 15px;
  margin-top: -2px;
}

.btn-con.oauth .btn.btn-google-oauth span.icon-bg,
.btn-con.oauth .btn.btn-yahoo-oauth span.icon-bg,
.btn-con.oauth .btn.btn-microsoft-oauth span.icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 46px;
  height: 100%;
  background: #fff;
}

.btn-con.oauth .btn.btn-google-oauth span.icon-bg {
  border: 2px solid #4285f4;
}

.btn-con.oauth .btn.btn-yahoo-oauth span.icon-bg {
  border: 2px solid #720e9e;
}

.btn-con.oauth .btn.btn-microsoft-oauth span.icon-bg {
  border: 0;
}

.btn-con.oauth .btn.btn-google-oauth i.icon,
.btn-con.oauth .btn.btn-yahoo-oauth i.icon,
.btn-con.oauth .btn.btn-microsoft-oauth i.icon {
  z-index: 10;
  width: 16px;
  position: absolute;
  height: 16px;
  left: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  text-decoration: none;
  text-transform: none;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.btn-con.oauth .btn.btn-google-oauth i.icon.icon-google {
  background-image: var(--img-google-icon);
}

.btn-con.oauth .btn.btn-yahoo-oauth i.icon.icon-yahoo {
  background-image: var(--img-yahoo-icon);
}

.btn-con.oauth .btn.btn-microsoft-oauth i.icon.icon-microsoft {
  background-image: var(--img-microsoft-icon);
  width: 21px;
  height: 21px;
}

.btn-con.oauth,
.continue-with{
  width: 100%;
  text-align: center;
}

.btn-con.oauth .btn.btn-yahoo-oauth span.icon-bg {
  border: 2px solid #720e9e;
}

.btn-con.oauth .btn.btn-microsoft-oauth span.icon-bg {
  border: 0;
}

.cancel-oauth-wrap a{
  text-decoration: none;
}

.turn-back span {
  font-size: 14px;
  font-weight: bold;
}

.turn-back-google span {
  color: #5187ec;
}

.turn-back-yahoo span {
  color: #720e9e;
}

.turn-back-microsoft span {
  color: #5e5e5e;
}

.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: block;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  text-align: left;
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}

.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}

.email-loader-container {
  position: absolute;
  right: 10px;
  top: calc(50% - 10px);
}

.email-loader {
  position: relative;
  height: 20px;
  width: 20px;
  display: inline-block;
  animation: around 5.4s infinite;
}

@keyframes around {
  0% {
    transform: rotate(0deg)
  }
  100% {
    transform: rotate(360deg)
  }
}

.email-loader::after, .email-loader::before {
  content: "";
  background: transparent;
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  border-width: 2px;
  border-color: #333 #333 transparent transparent;
  border-style: solid;
  border-radius: 20px;
  box-sizing: border-box;
  top: 0;
  left: 0;
  animation: around 0.7s ease-in-out infinite;
}

.email-loader::after {
  animation: around 0.7s ease-in-out 0.1s infinite;
  background: transparent;
}

.agreement-checkbox-firstlabel {
  height: 15px;
  width: 15px;
  margin-right: 5px;
  display: inline-block;
  position: relative;
}

.agreement-checkbox-firstlabel input[type="checkbox"] {
  width: inherit;
  height: inherit;
  top: 2px;
  left: 0;
  cursor: pointer;
  position: absolute;
}

.agreement-checkbox-secondlabel {
  line-height: 18px;
}

/**
 * Button loading
 */

.action-button-container {
  position: relative;
}

.action-button {
  z-index: 91;
}

.action-button-loading {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 92;
  cursor: not-allowed;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 16px;
  height: 16px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  margin: 2px;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}