*,
*:after,
*:before {
  box-sizing: border-box;
  /* outline: 2px solid lime !important; */
}

:root {
  color-scheme: only light;
}

html,
body {
  position: relative;
}

body {
  margin: 0;
  padding: 0;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  background-color: rgb(255, 255, 255);
}

h1,
h2,
h3,
h4,
h5,
h6,
th {
  margin: 0;
  font-size: 16px;
  font-weight: normal;
}


a {
  text-decoration: none;
  color: #363636;
}


dl,
dd,
p {
  margin: 0;
}

input,
button {
  border: none;
}

button {
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

ul,
ol,
menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

button,
input,
textarea {
  outline: none;
  font-family: inherit;
}

input,
textarea {
  font-size: 16px;
}

textarea {
  display: block;
}

address {
  font-style: normal;
}

.media-container {
  overflow: hidden;
}

.media-container img {
  display: block;
  width: 100%;
  height: 100%;
}

.media-container.cover img {
  object-fit: cover;
}

.media-container.contain img {
  object-fit: contain;
}


.input-radio,
.input-check-box
{
  position: relative;
  flex-shrink: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  border-radius: 5px;
  border: solid 1px #daddda;
  background-color: white;
  overflow: hidden;
  cursor: pointer;
  transition: .3s ease-in-out;
  z-index: 2;
}

.input-radio {
  padding: .8rem 1rem;
}


.input-radio .input-radio_pin {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-color: #daddda;
  border-radius: 50%;
  transition: .3s ease-in-out;
}

.input-radio:hover,
.input-check-box:hover
{
  box-shadow: 0 1px 3px 0 #daddda;
}

.input-radio.selected,
.input-check-box:has(input:checked)
{
  box-shadow: 0 1px 3px 0 #daddda;
  border: solid 1px rgba(42, 45, 153, 0.5);
}

.input-radio.selected .input-radio_pin {
  background-image: radial-gradient(#156c8f 30% , rgba(255, 255, 255, 0.53) 35%, rgba(255, 255, 255, 0.53) 43%, #156c8f 50%);
  box-shadow: 0 2px 6px 0 rgba(42, 45, 153, 0.5);
}

.input-radio:has(.info),
.input-check-box:has(.info)
{
  display: grid;
  gap: 16px;
}

.input-radio:has(.info) {
  padding: 0 0 0 1rem;
  grid-template-columns: min-content max-content auto ;
}


.input-check-box:has(.info)
{
  grid-template-columns: auto min-content  ;
}

.input-radio .info,
.input-check-box .info
{
  justify-self: end;
  display: grid;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #f7f7f7 ;
}

.input-radio .info svg,
.input-check-box .info svg
{
  width: 20px;
  height: 20px;
}

.input-check-box .quiz_checkbox {
  padding: .8rem 1rem;
  width: 100%;
}

.input-check-box .quiz_checkbox .label {
flex-grow: 1;
}


::-webkit-scrollbar {
width: 6px;
height: 6px;
}

::-webkit-scrollbar-thumb {
border-radius: 5px;
background-color: rgb(13, 12, 90);
}

::-webkit-scrollbar-thumb:hover {
background-color: rgb(13, 12, 90, 0.8);
}

::-webkit-scrollbar-track {
background-color: transparent;
}

.overflow-hidden {
overflow: hidden;
}

.user-select-none {
user-select: none;
}

.cursor-unset * {
cursor: unset;
}

.quiz_button {
position: relative;
display: flex;
align-items: center;
justify-content: center;
gap: 3px;
width: 100%;
height: auto;
min-height: 55px;
color: #ffffff;
white-space: normal;
font-size: 18px;
line-height: 18px;
border: none;
border-radius: 40px;
background: #156c8f;
overflow: hidden;
transition: 0.3s ease-in-out;
}

.quiz_button .last-step-sign,
.quiz_button .arrow {
flex-shrink: 0;
fill: currentColor;
width: 18px;
height: 18px;
}

.quiz_button .last-step-sign.hide,
.quiz_button .arrow.hide {
display: none;
}

.button-prev {
padding: 0;
display: flex;
align-items: center;
justify-content: center;
width: 43px;
height: 43px;
color: rgba(0, 0, 0, .4);
border: 1px solid rgba(0, 0, 0, .1);
background-color: transparent;
transition: .2s ease-out;
border-radius: 24px;
}

.button-prev:hover {
color: rgba(0, 0, 0, .5)
}

.button-prev:disabled:hover {
color: rgba(0, 0, 0, .4);
}

.button-prev svg {
height: 18px;
width: 18px;
fill: currentColor;
}

.quiz_button:hover {
background-color: #002f42;
}

.quiz_button:disabled:hover {
background: #be5c16;
}

.quiz_button_shadowed {
transition: box-shadow .2s ease-in;
}

.quiz_button_shadowed:hover {
box-shadow: 0 3px 10px 0 #002f42;
}



.quiz_button_shadowed:disabled:after {
content: none;
}

.quiz_button:disabled,
.button-prev:disabled,
.quiz_button_shadowed:disabled,
.quiz_button_shadowed:hover:disabled
{
cursor: not-allowed;
pointer-events: none;
opacity: 0.5;
filter: grayscale(100%);
box-shadow: unset;
}

.quiz_checkbox {
position: relative;
display: flex;
align-items: center;
gap: 8px;
width: max-content;
cursor: pointer;
}
.quiz_checkbox .border {
position: relative;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
width: 15px;
height: 15px;
background-color: #daddda;
border: transparent;
border-radius: 4px;
z-index: 10;
transition: 0.3s ease-in-out;
}

.quiz_checkbox input[type="checkbox"] {
appearance: none;
position: absolute;
left: 0;
}

.quiz_checkbox svg {
width: 70%;
aspect-ratio: 1;
color: #fff;
z-index: 9;
opacity: 0;
transition: 0.3s ease;
}

.quiz_checkbox:has(input:checked) .border {
background-color: #156c8f;
}

.quiz_checkbox:has(input:checked) svg {
opacity: 1;
}

.blick:after {
content: "";
position: absolute;
top: 0;
bottom: 0;
height: 100%;
background: linear-gradient(90deg, hsla(0, 0%, 100%, .1) 10%, hsla(0, 0%, 100%, .2) 20%, hsla(0, 0%, 100%, .6));
width: 20px;
transform: skewX(-45deg);
left: -20%;
transition: all .6s ease;
animation-name: blick;
animation-duration: 4s;
animation-iteration-count: infinite;
}

/*animations*/
.hide-up {
  animation: hide-up .35s forwards;
  animation-delay: .3s;
}

.hide-down {
  animation: hide-down .35s forwards;
  animation-delay: .3s;
}

.slide-layout-to-left {
  animation: slide-layout-to-left .35s cubic-bezier(.71,.09,.74,.91) forwards;
}

.slide-layout-to-right {
  animation: slide-layout-to-right .35s cubic-bezier(.71,.09,.74,.91) forwards;
}

.fade-out {
  animation: fade-out .35s ease-in-out forwards;
  animation-delay: .3s;
  animation-fill-mode: forwards;
}

.fade-in {
  animation: fade-in .35s ease-in-out forwards;
  animation-delay: .3s;
  animation-fill-mode: forwards;
}

.hide-text-to-right {
  animation: hide-text-to-right .75s cubic-bezier(.71,.09,.74,.91) forwards;
}
.hide-text-to-left {
  animation: hide-text-to-left .75s cubic-bezier(.71,.09,.74,.91) forwards;
}



@keyframes blick {
  60% {
    left: 100%
  }

  to {
    left: 130%
  }
}
@keyframes hide-up {
  0% {
    transform: translateY(0);
    opacity: 1
  }

  to {
    transform: translateY(-100px);
    opacity: 0
  }
}
@keyframes hide-down {
  0% {
    transform: translateY(0);
    opacity: 1
  }

  to {
    transform: translateY(100px);
    opacity: 0
  }
}
@keyframes slide-layout-to-left {
  0% {
    transform: translate3d(60%,0,0)
  }

  to {
    transform: translateZ(0)
  }
}
@keyframes slide-layout-to-right {
  0% {
    transform: translate3d(-60%,0,0)
  }

  to {
    transform: translateZ(0)
  }
}
@keyframes fade-out {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}
@keyframes fade-in {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}
@keyframes hide-text-to-right {
  0% {
    transform: translateX(0);
    opacity: 1
  }

  to {
    transform: translateX(100px);
    opacity: 0
  }
}
@keyframes hide-text-to-left {
  0% {
    transform: translateX(0);
    opacity: 1
  }

  to {
    transform: translateX(-100px);
    opacity: 0
  }
}
