:root {
  --dark: #232323;
  --white: #ffffff;
  --orange: #e66239;
  --red: #ea1f24;
  --gray: #9b9b9b;
}

html,
body {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  background: var(--white);
}

body {
  font-family: "Roboto", sans-serif;
  -webkit-text-size-adjust: none;
  color: var(--dark);
}

.wrap {
  margin: 0 auto;
  text-align: center;
  width: 100%;
  position: relative;
}

.content {
  display: block;
  position: relative;
  margin-bottom: 10px;
  margin: 0 auto;
  max-width: 600px;
}

.info {
  border-radius: 5px;
  max-width: 350px;
  margin: 0 auto 10px;
  width: 80%;
  padding: 1px 22px;
  padding-bottom: 10px;
  position: relative;
}

form {
  margin: 0 auto;
  width: 100%;
  max-width: 406px;
  position: relative;
}

p:empty {
  display: none;
}

h1 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
  padding: 0;
}

h1 span {
  color: #ea1f24;
  font-weight: bold;
}

h2 {
  margin: 20px auto 10px;
  font-size: 17px;
  line-height: 30px;
  font-weight: 400;
}

h3 {
  position: relative;
  z-index: 3;
  font-size: 14px;
  font-weight: normal;
  padding: 0;
  margin: 0;
  margin-top: 10px;
}

h4 {
  margin: 0;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  font-family: "Lato", sans-serif;
}

h5 {
  margin: 0;
  color: var(--orange);
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
}

h6 {
  margin: 0;
  font-size: 22px;
  color: #000;
}

h2 span {
  font-weight: bold;
  font-size: 22px;
}

h4 span {
  color: #ea1f24;
  font-weight: bold;
}

img.logo {
  margin: 0 auto;
  width: 90px;
  display: block;
  position: relative;
  z-index: 2;
  padding: 12px 0;
}

.main {
  max-width: 400px;
  margin: 0 auto;
}

.main_img {
  width: 100%;
  max-width: 115px;
  margin: 30px auto 0;
}

.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px auto 0;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #D84848;
  box-shadow: 4px 5px 2px 0 #A61616;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  font-size: 28px;
  letter-spacing: 1px;
  font-weight: bold;
  margin: 20px auto 15px;
  max-width: 280px;
  width: 100%;
  height: 70px;
  position: relative;
  text-transform: uppercase;
}

.success-checkmark {
  width: 80px;
  height: 100px;
  margin: 50px auto 30px;
  position: relative;
  z-index: 1;
}

.success-checkmark .check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid #232323;
  transform: scale(1.5);
  margin: 25px auto;
}

.check-icon::before {
  top: 3px;
  left: -2px;
  width: 30px;
  transform-origin: 100% 50%;
  border-radius: 100px 0 0 100px;
}

.check-icon::after {
  top: 0;
  left: 30px;
  width: 60px;
  transform-origin: 0 50%;
  border-radius: 0 100px 100px 0;
  animation: rotate-circle 4.25s ease-in;
}

.check-icon::after,
.check-icon::before {
  content: "";
  height: 100px;
  position: absolute;
  background: #fff;
  transform: rotate(-45deg);
}

.icon-line {
  height: 5px;
  background-color: #232323;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}

.icon-line.line-tip {
  top: 46px;
  left: 13px;
  width: 25px;
  transform: rotate(45deg);
  animation: icon-line-tip 0.75s;
}

.icon-line.line-long {
  top: 38px;
  right: 8px;
  width: 47px;
  transform: rotate(-45deg);
  animation: icon-line-long 0.75s;
}

.icon-circle {
  top: -4px;
  left: -4px;
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  box-sizing: content-box;
  border: 4px solid #ea1f24;
}

.icon-fix {
  top: 8px;
  width: 5px;
  left: 26px;
  z-index: 1;
  height: 85px;
  position: absolute;
  transform: rotate(-45deg);
  background-color: #fff;
}

@keyframes rotate-circle {
  0% {
    transform: rotate(-45deg);
  }

  5% {
    transform: rotate(-45deg);
  }

  12% {
    transform: rotate(-405deg);
  }

  100% {
    transform: rotate(-405deg);
  }
}

@keyframes icon-line-tip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }

  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }

  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }

  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }

  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}

@keyframes icon-line-long {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }

  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }

  84% {
    width: 55px;
    right: 0;
    top: 35px;
  }

  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}

.shake {
  position: relative;
  -webkit-animation: 3.5s infinite shake-animation;
  animation: 3.5s infinite shake-animation;
  transform-origin: 50% 50%;
}

@-webkit-keyframes shake-animation {

  0%,
  10.71429%,
  100%,
  3.57143%,
  7.14286% {
    transform: translate(0, 0);
  }

  1.78571%,
  5.35714%,
  8.92857% {
    transform: translate(5px, 0);
  }
}

@keyframes shake-animation {

  0%,
  10.71429%,
  100%,
  3.57143%,
  7.14286% {
    transform: translate(0, 0);
  }

  1.78571%,
  5.35714%,
  8.92857% {
    transform: translate(5px, 0);
  }
}

.error,
.error.white,
.error.yellow,
.error.black {
  margin: 0 auto;
  max-width: 280px;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 15px;
  color: #d11212;
  border: 1px solid #d11212;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
}

.error.white {
  color: #fff;
  border: 1px solid #fff;
}

.error.yellow {
  color: #efec00;
  border: 1px solid #efec00;
}

.error.black {
  color: #000;
  border: 1px solid #000;
}

.tariff {
  max-width: auto;
  font-size: 10px;
  text-align: center;
  color: var(--gray);
  line-height: 12px;
  margin-bottom: 10px;
}

.footer {
  display: flex;
  max-width: 2350px;
  margin: auto;
  flex-direction: column;
}

.footer p,
.footer a {
  max-width: auto;
  font-size: 10px;
  text-align: center;
  color: var(--gray);
  line-height: 12px;
}

.footer a {
  padding: 2px;
}

.certificat {
  width: 140px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.75);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fefefe;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #888;
  border-radius: 15px;
  width: 80%;
  height: 60%;
  max-width: 600px;

  overflow-y: scroll;
}

.modal-content h2 {
  color: #000;
  font-size: 15px;
  margin: 0;
  text-align: center;
}

.modal-content p {
  color: grey;
  font-weight: 300;
  font-size: 14px;
}

.close {
  color: #ddd;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 999;
}

.closeterms {
  color: black;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 999;
}


.modal-content ol {
  color: grey;
  font-weight: 300;
  font-size: 14px;
}

.modal-content a {
  color: #000;
  font-size: 14px;
}

.faq p {
  margin: 10px 0;
}



/* Hamburger icon */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Menu styles */

header {
  position: relative;
  width: 100%;
  height: 50px;
  max-width: 400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  gap: 0.5rem;
}

.logo {
  display: flex;
}

.logo img {
  width: 50%;
}

header p {
  text-align: right;
  font-size: 12px;
  padding: 0 8px;
  letter-spacing: -0.5px;
}

.wrap {
  text-align: center;
  margin: 0 auto;
}


.check {
  margin: 25px 0;
}

.exit {
  background-color: rgb(173, 173, 173);
  border: none;
  width: 40px;
  height: 25px;
  border-radius: 5px;
  margin: 15px auto;

}

.exit a {
  text-decoration: none;
  color: grey;
  font-size: 12px;
}

.tarrif-buttom {
  font-size: 10px;
  font-weight: 200;
  color: grey;
}








/* Fullscreen modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: black;
  justify-content: center;
  align-items: center;
}

.modal-content.fullscreen {
  background-color: #111;
  color: #fff;
  border-radius: 10px;
  padding: 40px;
  max-width: 800px;
  width: 90%;
  margin: 50px auto;
  border: none;
  animation: fadeIn 0.3s ease;
}

.modal-content.fullscreen h1 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #ff3c00;
}

.modal-content.fullscreen p {
  line-height: 1.6;
  font-size: 1rem;
  color: #ddd;
  text-align: justify;
}

.modal-content.fullscreen a {
  color: #ff3c00;
  text-decoration: none;
}

.modal-content.fullscreen a:hover {
  text-decoration: underline;
}

.close {
  color: #fff;
  float: right;
  font-size: 28px;
  cursor: pointer;
  margin-top: -10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*TERMS MODAL*/

/* Fullscreen modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: black;
  justify-content: center;
  align-items: center;
}

.modal-content.terms {
  background-color: white;
  color: black;
  border-radius: 10px;
  padding: 40px;
  max-width: 400px;
  width: 90%;
  margin: 50px auto;
  border: none;
  animation: fadeIn 0.3s ease;
}

.modal-content.terms h1 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #ff3c00;
}

.modal-content.terms p {
  line-height: 1.6;
  font-size: 1rem;
  color: grey;
  text-align: justify;
}

.modal-content.terms a {
  color: #ff3c00;
  text-decoration: none;
}

.modal-content.terms a:hover {
  text-decoration: underline;
}

.close {
  color: #ddd;
  float: right;
  font-size: 28px;
  cursor: pointer;
  margin-top: -10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Hamburger Icon */
.toggle {
  width: 28px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 2000;
}

.toggle span {
  background: black;
  height: 3px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Animation when active */
.toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.toggle.active span:nth-child(2) {
  opacity: 0;
}

.toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Navigation panel */
.navigation {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 300px;
  height: 100%;
  background: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.4s ease;
  z-index: 1500;
}

.navigation.active {
  right: 0;
}

.navigation ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.navigation li {
  margin: 15px 0;
}

.navigation a {
  color: #ff3c00;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.navigation a:hover {
  color: #fff;
}


.terms-condition-checks {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.terms-condition-checks p {
  font-size: 12px;
  font-weight: 300 !important;
  max-width: 200px;
  color: grey;
  padding: 20px 0;
  text-align: justify;
  margin-left: 10px;
}

.terms-condition-checks a {
  color: grey !important;
}