button{
    cursor: pointer;
}

.d-none{
    display: none!important;
}

.enterModal{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--black-one-color);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enterModalWindow{
    position: relative;
    border-radius: 10px;
    width: 415px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background: var(--white-color);
    padding: 30px;
}

.enterModalWindow__close{
    border: none;
    background: none;
    width: 30px;
    position: absolute;
    right: 5px;
    top: 5px;
}

.enterModalWindow__title{
    font-family: "Inter", sans-serif;
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    color: var( --black-color);
    margin-bottom: 20px;
}

.enterModalWindow__text{
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    color: var( --black-color);
    margin-bottom: 20px;
}

.enterModalWindow__link{
    font-family: "Inter", sans-serif;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    color: #00c0e8;
    border: none;
    background: none;
}

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

.enterModalWindow__input{
    font-family: "Inter", sans-serif;
    border: 1px solid #909090;
    color: #2e2e2e;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    font-weight: 400;
    font-size: 20px;
    outline-color: var(--main-color);
}

.enterModalWindow__btn{
    display: block;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    color: var(--white-color);
    border-radius: 8px;
    padding: 10px 16px;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    cursor: pointer;
}

.enterModal__line{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.enterModal__line span{
    background: #9e9e9e;
    height: 1px;
    width: 100px;
}

.enterModal__line p{
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    color: #9e9e9e;
}

.enterModalWindow__box{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.enterModalWindow__btns{
    background: none;
    border: none;
}

.logoutModalWindow__btn{
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--white-color);
    border-radius: 8px;
    padding: 7px;
    width: 152px;
    background: var(--main-color);
    border: 1px solid var(--main-color);
}

.logoutModalWindow__btn2{
    background: var(--white-color);
    border: 1px solid var(--red-color);
    color: var(--red-color);
    font-weight: 400;
}

.userz{
    position: relative;
}

.userz__name{
    width: 37px;
    height: 37px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--white-color);
    background: var(--main-color);
    border: 1px solid var(--main-color);
    cursor: pointer;
}

.userz__block{
    border: 1px solid var( --third-color);
    border-radius: 10px;
    width: 129px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background: var(--white-color);
    padding: 10px 20px;
    position: absolute;
    right: 0;
    top: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 8;
}

.userz__link{
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    background: none;
}

.userz__ico{
    width: 24px;
}

.userz__text{
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.userz__text.livia{
    color: #0bbc6f;
}
.userz__text.zoya{
    color: #82b640;
}
.userz__text.lex{
    color: #0F7BFF;
}
.userz__text.alex{
    color: #E8AB30;
}
.userz__text.sophie{
    color: #3CC882;
}
.userz__text.victor{
    color: #5299E0;
}

.userz__text.exit{
    color: var(--red-color);
}

.userz:hover .userz__block {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.userz__block.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.modalka {
    display: none;
    justify-content: center;
    align-items: center;
    background: #000000b3;;
    z-index: 9999;
    position: fixed;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
}

.modal_download__icon {
    width: 70px;
}

.modal_download__icon img {
    width: 100%;
    display: block;
    max-width: 100%;
    height: auto;
}


.modal_download__show {
    display: flex;
}

.modalka.show{
    display: flex;
}


.form__error {
    border: 1px solid var(--red-color) !important;
}

.form__error::-webkit-input-placeholder {
    color: var(--red-color) !important;
}

.form__error::-moz-input-placeholder {
    color: var(--red-color) !important;
}

.form__error:-moz-input-placeholder {
    color: var(--red-color) !important;
}

.form__error:-ms-input-placeholder {
    color: var(--red-color) !important;
}

.form__error_text {
    color: var(--red-color) !important;
}