@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bitter:wght@100;200;300;400;500;600;800&display=swap");
html, body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  font-family: "Bitter", serif;
}

body {
  background: #0018a8;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  font-weight: 300;
}

* {
  box-sizing: border-box;
  vertical-align: top;
  outline: none;
}

.content {
  background: #fff;
  min-height: 600px;
  padding: 40px;
  border-radius: 20px;
}
.content h2 {
  font-size: 120%;
  margin-bottom: 40px;
}

.page header {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-content: centere;
  align-items: center;
}
.page header .tabs {
  font-size: 130%;
}
.page header .tabs span {
  width: 30px;
  font-size: 80%;
  margin-right: 10px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 100px;
}
.page header .tabs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.page header .tabs ul li {
  position: relative;
  display: flex !important;
  align-items: center;
  color: white;
  opacity: 0.5;
}
.page header .tabs ul li:after {
  content: " •";
  margin: 0px 10px;
}
.page header .tabs ul li:last-child:after {
  content: "";
}
.page header .tabs ul li.active {
  opacity: 1;
}
.page header .tabs ul li.active:after {
  opacity: 0.5;
}

.logo {
  width: 200px;
  margin-top: 20px;
  display: block;
  height: 100px;
  background: url("logo.png") no-repeat center;
  background-size: 100%;
}

.wspace {
  margin: auto;
  border: 10px solid #0018a8;
  max-width: 1200px;
  width: 100%;
}

footer {
  opacity: 0.7;
  text-align: center;
  color: white;
  padding-top: 20px;
}

.line {
  padding: 10px 0px;
  margin-bottom: 10px;
  display: flex;
}
.line .section {
  flex-basis: 33%;
  border: 10px solid white;
  display: flex;
  flex-direction: column;
}
.line .section label {
  font-size: 80%;
  flex-direction: column;
}
.line .section label span {
  display: block;
  margin-bottom: 2px;
}
.line .section label input[type=text], .line .section label textarea, .line .section label select {
  resize: none;
  padding: 10px 14px;
  width: 100%;
  border: 1px solid #ccc;
}
.line .section label input[type=text]:focus, .line .section label textarea:focus, .line .section label select:focus {
  border: 1px solid #0018a8;
  background: rgba(0, 24, 168, 0.05);
}

.otheropton {
  flex-basis: 66% !important;
}

.file {
  flex-basis: 66% !important;
}

.nextprev_buttons {
  display: flex;
  border-top: 1px solid #ccc;
  padding-top: 30px;
  margin-top: 30px;
  justify-content: space-between;
}
.nextprev_buttons button {
  padding: 10px 20px;
  border: none;
  background: none;
  min-width: 120px;
  font-size: 100%;
  cursor: pointer;
  border-bottom: 2px solid white;
}
.nextprev_buttons button:hover {
  border-bottom: 2px solid #0018a8;
}
.nextprev_buttons button.prev {
  background: #eaeaea !important;
}
.nextprev_buttons button.next {
  background: rgba(0, 24, 168, 0.2) !important;
  color: #0018a8;
  font-size: 120%;
}
.nextprev_buttons button.disable {
  color: #ccc !important;
  cursor: not-allowed;
  border: none !important;
}

.big .section {
  flex-basis: 100% !important;
}

@media screen and (max-width: 600px) {
  .tabs {
    font-size: 80%;
  }

  .logo {
    background-size: contain;
    margin-bottom: 20px;
    height: 120px;
  }

  .page header {
    height: 140px;
    flex-direction: column;
    justify-content: center;
  }

  footer {
    padding: 30px;
  }

  .line {
    flex-direction: column;
  }
}
.m {
  flex-direction: row-reverse !important;
}
.m label {
  flex: 1;
  border-right: 4px solid #fff;
}

select {
  -webkit-appearance: none;
          appearance: none;
}

.required span:after {
  content: "*";
  color: red;
  font-size: 133%;
  margin-left: 5px;
  transform: translateY(5px);
  display: inline-block;
}

.oksign svg {
  fill: #0018a8;
  width: 200px;
  margin-bottom: 30px;
}

.ok {
  text-align: center;
  font-size: 120%;
}
.ok b {
  font-weight: 500;
}
.ok a {
  color: #0018a8;
  text-decoration: none;
}
.ok ul {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  text-align: left;
  width: 300px;
}
.ok ul li {
  padding: 10px;
  background: #eaeaea;
  margin-bottom: 4px;
}
.ok ul li.wp {
  background: #25d366;
}
.ok ul li.wp a {
  color: white;
}