.mainbtn1 {
    display: flex;
    padding: 11px 27px;
    border-radius: 2px;
    border: 1px solid #B3BAC1;
    background: transparent;
    font-family: var(--body-font-family);
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 500;
    color: #122947;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    outline: none;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
  }
  .mainbtn1:hover {
    background: #122947;
    border: 1px solid #122947;
    color: #ffffff;
  }
  

  .manininput1 {
    font-family: var(--heading-font-family);
    font-weight: 400;
    font-size: var(--font-size-xsmall);
    color: #122947;
    border: 1px solid #122947;
    padding: 15px 10px;
    background: #f8f8f6;
    outline: none;
    transition: box-shadow 0.2s ease;
    -webkit-transition: box-shadow 0.2s ease;
    -moz-transition: box-shadow 0.2s ease;
    -ms-transition: box-shadow 0.2s ease;
    -o-transition: box-shadow 0.2s ease;
  }
  .manininput1:hover {
    box-shadow: 0px 0px 1px 1px #122947;
  }


.drop-downmainblock {
    display: flex;
    position: absolute;
    top: 106px;
    gap: 20px;
    right: 0;
    width: 100%;
    max-width: 440px;
    height: calc(100vh - 107px);
    border-top: 1px solid #DBDCE0;
    background: #F8F8F6;
    padding: 15px 45px;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    z-index: 5;
    visibility: hidden;
    transition: transform 0.4s ease 0s, visibility 0.4s ease 0s;
    -webkit-transition: transform 0.4s ease 0s, visibility 0.4s ease 0s;
    -moz-transition: transform 0.4s ease 0s, visibility 0.4s ease 0s;
    -ms-transition: transform 0.4s ease 0s, visibility 0.4s ease 0s;
    -o-transition: transform 0.4s ease 0s, visibility 0.4s ease 0s;
    flex-direction: column;
  }
  .drop-downmainblock.activetelem {
    overflow-y: auto;
    visibility: visible;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }

  .drop-downmainblock > p{
    text-align: center;
  }

  .puchButtH{
    color: #9200b4;
  }

  .authoris_block {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }


  .login_block > form{
    display: flex;
    align-content: center;
    flex-direction: column;
  }
  .login_block > form > div{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 15px;
  }


  .registrat_block {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .registrat_block > form{
    display: flex;
    align-content: center;
    flex-direction: column;
  }
  .registrat_block > form > div{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 15px;
  }
  .registrat_block > form > div > div{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .registrat_block > form > div > div > label{
    color:#757575;
    display: flex;
    gap: 5px;
    flex-direction: column;
    align-items: center;
  }
  .registrat_block > form > div > label{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }


.pop-loading-cont{
    height: 180px;
    width: 180px;
    align-content: center;
}

.pop-loading-cont > img{
    width: 50%;
    opacity: 0;
    animation: pop-loading-logo 0.3s ease-in forwards;
}

@keyframes pop-loading-logo{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}



.popresponse-result-error>p{
    margin: 10px 0px 50px;
    width: 300px;
    color: red;
}
.popresponse-result-error::before{
    content: '';
    background: url('../images/notsuccess.svg') no-repeat center center;
    background-size: contain;
    height:70px;
    width:70px;
    display: inline-block;
    -webkit-transition: all 0.33s ease;
    -moz-transition: all 0.33s ease;
    -o-transition: all 0.33s ease;
    transition: all 0.33s ease;
    margin-top: 40px;
    margin-bottom: 30px;
}
.popresponse-result-success>p{
    margin: 10px 0px 50px;
    width: 300px;
    color: green;
}
.popresponse-result-success>p>span,.popresponse-result-error>p>span{
    font-weight: 600;
    color: black;
}
.popresponse-result-success::before{
    content: '';
    background: url('../images/success.svg') no-repeat center center;
    background-size: contain;
    height:70px;
    width:70px;
    display: inline-block;
    -webkit-transition: all 0.33s ease;
    -moz-transition: all 0.33s ease;
    -o-transition: all 0.33s ease;
    transition: all 0.33s ease;
    margin-top: 40px;
    margin-bottom: 30px;
}

body.lock {
    position: relative;
  }
  body.lock::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
  }

.maininputcheckbox[type='checkbox']{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  width: 18px;
  height: 18px;
  cursor: pointer;
  outline: none;
  margin: 0;
}
.maininputcheckbox[type='checkbox']::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #122947;
    border-radius: 2px;
    background-color: #f8f8f6;
    box-sizing: border-box;
    -webkit-transition: all 0.33s ease;
    -moz-transition: all 0.33s ease;
    -o-transition: all 0.33s ease;
    transition: all 0.33s ease;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}
.maininputcheckbox[type='checkbox']:hover::before {
    background-color: #33293d14;
}
.maininputcheckbox[type='checkbox']:checked::before {
    background-color: #122947;
    background-image: url(../img/check-white.svg);
    box-shadow: 0 0 0 3px #33293d14;
}


.arrowback {
    opacity: 0.7;
    cursor: pointer;
    position: absolute;
    height: 25px;
    top: 20px;
    transition: all 0.5s;
}
.arrowback:hover {
    opacity: 1;
    transform: scale(1.04);
}

.imgmainstyl{
    height: 150px;
}

#errorreginfo p {
    color: red;
}