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

body {
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 400;
  color: var(--color-txt);
  background-color: var(--color-bg);
}

.header {
  display: block;
  position: relative;
  padding-top: 14px;
  /*background: url("header-bg2.png");*/
  background-position: top left;
  background-size: contain;
  background-repeat: no-repeat;
}
.header__title {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 0;
}
.header__subtitle {
  font-size: 20px;
  font-weight: 200;
  margin-bottom: 20px;
}
.title {
  font-size: 38px;
  font-weight: 900;
  color: var(--color-txt);
  width: 100%;
  text-align: center;
  padding: 50px 0;
}

@media (min-width: 300px) {
  .title {
    font-size: 30px;
  }
}

@media (min-width: 576px) {
  .title {
    font-size: 38px;
  }
}

.title-light {
  font-size: 38px;
  font-weight: 900;
  color: var(--color-bg);
  width: 100%;
  text-align: center;
  padding: 50px 0;
}

.subtitle {
  margin: 0 auto;
  width: 70%;
  text-align: center;
  font-size: 20px;
}

@media (min-width: 300px) {
  .subtitle {
    width: 90%;
  }
}

@media (min-width: 576px) {
  .subtitle {
    width: 80%;
  }
}

@media (min-width: 768px) {
  .subtitle {
    width: 70%;
  }
}

.termsofuse {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 50px 20px;
  text-align: justify;
}

.std-link {
  color: var(--color-btnm);
}

.std-link:hover {
  color: var(--color-grad-r);
}
.message-fullPage {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}
.message-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 500px;
  height: auto;
  padding-bottom: 30px;
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: 2px 2px 4px var(--color-shadow);
}
.message__title {
  width: 100%;
  text-align: center;
  padding: 30px 0;
  font-size: 32px;
  font-weight: 600;
}
.message-txt {
  margin: 0 0 40px 0;
}
.message-link {
  background: var(--color-btnm);
  color: var(--color-bg);
  padding: 5px 20px;
  border: 1px solid var(--color-btnm);
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  &:hover {
    color: var(--color-btnm);
    background: var(--color-bg);
    border: 1px solid var(--color-btnm);
    transition: all 0.2s ease-in-out;
  }
}

.nowrap {
  white-space: nowrap;
}
.color-txt {
  color: var(--color-txt);
}
.tariff-card {
  display: flex;
  flex-direction: row;
  margin: 0 20px;
  border-bottom: 1px solid var(--color-card-brd);
}
.tariff-left {
  width: 50%;
  text-align: left;
}
.tariff-right {
  width: 50%;
  text-align: right;
}
.text-lg {
  font-size: 20px;
}
.text-bold {
  font-weight: 600;
}
.text-accent {
  color: #00b67a;
  color: var(--color-btnm);
}
.icon-wrapper {
  width: 26px;
  display: inline-block;
  text-align: center;
}
