.body {
    background-color: #123146!important;
}

.tos_body {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.tos_title {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: SF Pro Display, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

.topblock_tos {
  width: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #08273c;
  background-image: url("../images/stars.png");
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 40px 16px;
  display: flex;
}

.tos_logo {
  height: 64px;
  flex: none;
}

.tos_logolink {
  flex: none;
}

.tos_logolink.w--current {
  min-width: 200px;
}

.tos_maincontainer {
  width: 100%;
  height: 100%;
  max-width: 994px;
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: auto;
  padding: 80px 16px;
  display: flex;
}

.tos_contactcontainer {
  position: relative;
  width: 100%;
  max-width: 600px;
  background-color: #031d2e;
  border-radius: 16px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px;
}

.tos_formblock {
  width: 100%;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.tos_contactinput {
  width: 100%;
  max-width: 552px;
  min-height: 48px;
  color: #fff;
  background-color: #08273c;
  border: 1px solid rgba(29, 76, 179, 0);
  border-radius: 8px;
  padding: 16px;
  font-family: SF Pro Display, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.tos_contactinput:focus {
  border-color: #1d4cb3;
}

.tos_contactinput::-ms-input-placeholder {
  color: rgba(255, 255, 255, .72);
}

.tos_contactinput::placeholder {
  color: rgba(255, 255, 255, .72);
}

.tos_contactinputtxt {
  width: 100%;
  max-height: 320px;
  max-width: 552px;
  min-height: 124px;
  color: #fff;
  background-color: #08273c;
  border: 1px solid rgba(29, 76, 179, 0);
  border-radius: 8px;
  padding: 16px;
  font-family: SF Pro Display, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  overflow: auto;
}

.tos_contactinputtxt:focus {
  border-color: #1d4cb3;
}

.tos_contactinputtxt::-ms-input-placeholder {
  color: rgba(255, 255, 255, .72);
}

.tos_contactinputtxt::placeholder {
  color: rgba(255, 255, 255, .72);
}

.tos_paragraph {
  color: #fff;
  text-align: left;
  margin-bottom: 0;
  font-family: SF Pro Display, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}



.form-input {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
}

.form-input.error input,.form-input.error textarea {
  border-color: rgba(255,0,0,.5)
}

.form-input.success input,.form-input.success textarea {
  border-color: rgba(43,255,0,.5)
}

.error-msg {
  position: absolute;
  color: red;
  font-size: 14px
}

.loader {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(33,30,51,.4);
  display: none
}

.loader .spinner {
  border: 5px solid #f5f7f6;
  border-radius: 50%;
  border-top: 5px solid #33b9de;
  width: 40px;
  height: 40px;
  animation: spin 1000ms linear infinite;
  margin: 1rem auto
}

.cta_block {
  min-width: 350px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #1d4cb3;
  background-image: linear-gradient(60deg, #1d4cb3 15%, #33b9de 85%);
  border: 1px solid #1d4cb3;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  font-family: SF Pro Display, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: flex;
  box-shadow: 0 0 16px rgba(51, 185, 222, .24);
}

.cta_block:hover {
  background-color: #725ee1;
  transform: translate(0, -4px);
  box-shadow: 0 0 16px rgba(51, 185, 222, .56);
}

@keyframes spin {
  0% {
      transform: rotate(0deg)
  }

  100% {
      transform: rotate(360deg)
  }
}

@media screen and (max-width: 767px) {
  .topblock_tos {
    background-position: 50%;
    background-size: contain;
  }
}

.tos-section .see-more {
    color: #77E0FC!important;
    font-weight: 900;
    font-size: 18px;
}
.tos-section .see-more .arrow {
    display: flex!important;
}
.tos-section .see-more .arrow svg{
    fill: #77E0FC!important;
}

.link, .tos_mainlink {
    color: #33b9de!important;
}

table th, table td {
   border: 1px solid #fff!important;
}

.backBtn {
    display: none!important;
}