* {
    margin:0;
    padding:0;
}

@font-face {
    font-family: "Rubik-Regular";
    src: url("Rubik-Regular.ttf");
}
@font-face {
    font-family: "Rubik-Medium";
    src: url("Rubik-Medium.ttf");
}

:root {
    --s_green: #23A039;
    --s_orange: #FF7C4D;
    --s_white: #fff;
    --s_black: #2D2626;
    --s_back: #f7f1f0;
    --sb_green: #02a94d;
    --sb_blue: #04a0d1;
}

html, body {
    font-family: "Rubik-Regular";
    width:100%;
}

.bg1 {
    background: var(--s_back);
}
.logo {
    max-width: 160px;
    height: 40px;
}
.wr {
    max-width: 1000px;
    margin: auto;
}
.f {
    display: flex;
}
.fw {
    flex-wrap: wrap;
}

.wr1 {
    padding:24px;
    background-color: var(--s_white);
    border-radius: 0px 0px 40px 40px;
}
.h2-b {
    font-size: 18px;
    text-align: center;
    color:var(--s_black);
    font-weight: 600;
    margin: auto;
}
.c {
    color:var(--s_green);
    touch-action: manipulation;
}

.wr2 {
    padding:0px 24px;
    max-width: 500px;
    margin: auto;
}
.h2-o {
    font-size: 16px;
    text-align: left;
    color:var(--s_orange);
    font-weight: 600;
}

.f-l {
    font-size: 15px;
    font-weight: 400;
    padding-bottom:11px;
}

.f-i {
    box-shadow: 0px 2px 25px rgba(236, 221, 213, 0.29);
    border-radius: 16px;
    padding-left:25px;
    padding-top:13px;
    padding-bottom:12px;
}

.form-control:focus {
    color: var(--s_black);
    background-color: var(--s_white);
    border-color:var(--s_orange);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(255 124 77 / 27%)
}
.b {
    background: var(--s_white);
    box-sizing: border-box;
    box-shadow: 0px 2px 25px rgba(236, 221, 213, 0.29);
    border-radius: 16px;
    width: 151px;
    border:none;
    padding:16px 0px;
    margin: 12px 0 0 12px;
    outline: none;
}
.b.active {
    border: 1px solid var(--s_orange);
    outline: none;
    font-weight: 600;
}


.btns {
    justify-content: space-evenly;
    display: inline-flex;
    flex-wrap: wrap;
    margin: -12px 0 0 -12px;
    width: calc(100% + 12px);
}


.mr11 {
    margin-right:11px;
    max-width: 27px;
}
.sb1 {
    border-radius: 30px;
    width: 100%;
    color: var(--s_white);
    background-color: var(--sb_green);
    padding:15px 0px;
    outline: none;
    border:none;
    font-size: 18px;
}
.sb1:focus, .sb1:active {
    outline:none;
    border: 1px solid var(--s_black);
    font-weight: 600;
    color:var(--s_black);
}

.sb2 {
    border-radius: 30px;
    width: 100%;
    color: var(--s_white);
    background-color: var(--sb_blue);
    padding:15px 0px;
    outline: none;
    border:none;
    font-size: 18px;
}
.sb2:focus, .sb2:active {
    outline:none;
    border: 1px solid var(--s_black);
    font-weight: 600;
    color:var(--s_black);
}


.spin {
    position: relative;
    width: 100%;
}

.loader {
    display: flex;
    justify-content: center;
    font-size: 10px;
    margin: 20px auto;
    text-indent: -9999em;
    width: 14em;
    height: 14em;
    border-radius: 50%;
    background: #ffffff;
    background: -moz-linear-gradient(left, #ff7c4d 52%, #ff7c4d38 75%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(left, #ff7c4d 52%, #ff7c4d38 75%, rgba(255, 255, 255, 0) 100%);
    background: -o-linear-gradient(left, #ff7c4d 52%, #ff7c4d38 75%, rgba(255, 255, 255, 0) 100%);
    background: -ms-linear-gradient(left, #ff7c4d 52%, #ff7c4d38 75%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, #ff7c4d 52%, #ff7c4d38 75%, rgba(255, 255, 255, 0) 100%);
    position: relative;
    -webkit-animation: load3 1.4s infinite linear;
    animation: load3 1.4s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
  .loader:before {
    width: 50%;
    height: 50%;
 
    border-radius: 100% 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
  }
  .loader:after {
    background: #ffffff;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }
  @-webkit-keyframes load3 {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes load3 {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  

.loader-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: 600;
}

.wr3 {
    position: relative;
    max-width: 500px;
    margin: auto;
}
.loader-img {
    width: 100%;
}

.f-imgs {
    justify-content: space-between;
}


@media only screen and (max-width: 768px) {
    body {
      background-color: var(--s_back);
    }
  }


  /** pRAVKI! **/

.sb-wr {
    border: 1px rgb(0 0 0 / 15%) solid;
    box-shadow: 1px 25px 11px rgb(0 0 0 / 28%);
    border-radius: 18px;
}

html {
    min-height: 100vh;
}
body {
    min-height: 100vh;
    background: radial-gradient(at 5% 100%, #80ec7f 0%, transparent 45%),radial-gradient(at 50% 100%, #fbf17e 0%, transparent 45%),radial-gradient(at 95% 100%, #7fd3f5 0%, transparent 45%);
    display: initial;
}

.sb-wr1 {
    padding: 24px;
    background-color: var(--s_white);
    border-radius: 0px 0px 40px 40px;
    border-radius: 23px;
}