
#content.account {
    padding: 0;
}
img.account__back {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.account__back + .container {
    min-height: 860px;
}
.account__title {
    font-weight: 400;
    font-size: 36px;
    line-height: 40px;
    text-transform: uppercase;
    margin-top: 70px;
}
.account__list {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin: 80px 0 80px;
}
.account__list a {
    width: 360px;
    height: 169px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #fff;
    box-shadow: 0px 0px 14px rgb(110 110 110 / 33%);
}
.account__icon {
    display: block;
    margin-bottom: 15px;
    transition: all 0.3s;
}
.account__icon_info {
    background: url('../image/acc/id_card.svg') center center/100% no-repeat;
    width: 38px;
    height: 31px;
}
.account__list a:hover .account__icon_info {
    background: url('../image/acc/id_card-blue.svg') center center/100% no-repeat;
}
.account__icon_calen {
    background: url('../image/acc/calendar_edit.svg') center center/100% no-repeat;
    width: 33px;
    height: 37px;
}
.account__list a:hover .account__icon_calen {
    background: url('../image/acc/calendar_edit-blue.svg') center center/100% no-repeat;
}
.account__icon_sett {
    background: url('../image/acc/settings_filled.svg') center center/100% no-repeat;
    width: 39px;
    height: 40px;
}
.account__list a:hover .account__icon_sett {
    background: url('../image/acc/settings_filled-blue.svg') center center/100% no-repeat;
}
.account__descr {
    color: #000000;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
}
.account__logout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    color: #000000;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
}
.account__logout img {
    margin-bottom: 5px;
}


.account-info__form {
    margin-top: 60px;
}
.account-info .account-info__form fieldset {
    width: 723px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.account-info__form fieldset .form-group {
    width: 340px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    position: relative;
}
.account-info__form fieldset .form-group input {
    background: #FFFFFF;
    border: 1px solid #DEDEDE;
    border-radius: 25px;
    height: 45px;
    padding-right: 23px;
    box-shadow: none;
}
.account-info__form fieldset .form-group input:focus {
    border: 1px solid #002857;
}
.account-info__form .password-control {
    top: 57%;
}
.account-info__btn .btn {
    width: 215px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid #B5944F;
    background: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    text-transform: uppercase;
    color: #B5944F;
    border-radius: 25px;
    margin: 0 auto;
    padding: 0;
    box-shadow: none;
}
.account-info__btn .btn:hover {
    background: #B5944F;
    color: #fff;
}
.account-back {
    width: 723px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    margin-top: 65px;
}
.account-back a {
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    color: #002857;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}
.account-back a.account-back__btn:hover {
    text-decoration: underline;
}
.account-back a.account-back__btn {
    margin-right: 60px;
}
.account-back a.account-back__btn img {
    display: block;
    margin-right: 6px;
}
.account-back a.account-back__home img {
    display: block;
    margin-right: 13px;
}
.account-pass__form fieldset {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 40px;
    width: 340px;
    margin: 0 auto;
}
.account-pass__form fieldset .control-label {
    display: flex;
    width: 100%;
    padding: 0;
}
.account-pass__form .input-choose {
    justify-content: flex-start;
    margin: -12px 0 25px 0;
}
p.account-his__empty {
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #002857;
    margin-top: 110px;
}
p.account-his__descr {
    width: 384px;
    text-align: center;
    margin: 0 auto;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #002857;
    margin-top: 50px;
}
.account-logout p {
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
    color: #002857;
    margin-top: 30px;
}
.account-logout__home {
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    color: #002857;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}
.account-logout__home img {
    margin-right: 10px;
}

@media (min-width: 1700px) {
    .account__back + .container {
        min-height: 1200px;
    }
}

@media (max-width: 700px) {
    .account__list {
        flex-direction: column;
        margin: 50px 0 30px;
        align-items: center;
    }
    .account__list a {
        width: 80%;
        margin-bottom: 40px;
        height: 114px;
    }
    .account__title {
        font-size: 18px;
        line-height: 22px;
    }
    .account__descr {
        font-size: 14px;
        line-height: 21px;
    }
    .account__icon_info {
        width: 26px;
        height: 21px;
    }
    .account__icon_calen {
        width: 23px;
        height: 25px;
    }
    .account__icon_sett {
        width: 26px;
        height: 27px;
    }
    .account-info__form {
        margin-top: 30px;
    }
    .account-info .account-info__form fieldset {
        width: 100%;
    }
    .account-back {
        width: 100%;
        align-items: center;
        flex-direction: column;
        align-items: center;
    }
    .account-back a.account-back__btn {
        margin-right: 0;
        margin-bottom: 30px;
    }
    .account-info__form .simpleregister-block-content {
        padding: 0;
    }
    p.account-his__descr {
        width: 290px;
        margin-top: 30px;
        font-size: 12px;
        line-height: 30px;
    }
    p.account-his__empty {
        margin-top: 50px;
    }
    .account-logout p {
        font-size: 14px;
    }
}