.chart-cotainer {
    min-height: 1200px;
    background: #FFFFFF;
    box-shadow: 0px 0px 1px rgba(26, 32, 36, 0.32), 0px 1px 2px rgba(91, 104, 113, 0.32);
    border-radius: 10px;
}

.header-login {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 23px;
}

.sing-in {
    min-height: calc(100vh - 100px);
    background-image: url(../img/sing-in-bg.svg);
    background-repeat: no-repeat;
    background-position: right center;
    display: flex;
    align-items: center;
    padding: 30px 0;
}

.sing-in .container {
    width: 100%;
}

.sing-in-form {
    background: #FFFFFF;
    box-shadow: 0px 0px 1px rgba(26, 32, 36, 0.32), 0px 4px 8px rgba(91, 104, 113, 0.24);
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    margin: 0 auto;
}

.standart-1 {
    max-width: 410px;
}

.standart-2 {
    max-width: 790px;
    min-height: 469px;
    display: flex;
    flex-direction: column;
}

.sing-in-form__title {
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 24px;
    color: #068BBF;
    margin-bottom: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.input-group__title {
    display: flex;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #737373;
    margin-bottom: 5px;
}


.form-actions {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.base-link {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #03A688;
}

.base-link:hover {
    opacity: .7;
}

.form-actions .btn-primary {
    margin-left: auto;
}

.form-actions .base-link+.base-link {
    margin-left: 20px;
}

.btn-primary {
    display: flex;
    align-items: center;
    text-transform: capitalize;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    background: #03A688;
    color: white;
    padding: 8px 12px;
}

.btn-primary:hover {
    opacity: .7;
}

.btn-primary .btn-icon:last-child {
    margin-left: 12px;
}

.sing-in-form__item {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;

}

.sing-in-form__col {
    flex: 0 0 50%;
    padding: 0 15px;
}

.sing-in-form__item.border-top {
    position: relative;

    padding-top: 30px;
}

.sing-in-form__item.border-top::before {
    content: '';
    width: calc(100% - 30px);
    position: absolute;
    top: 0;
    left: 15px;
    height: 1px;
    background-color: #E5E5E5;
}

.sing-in-form__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sing-in-form__title {}

.steps-pagination {
    display: flex;
    align-items: center;
}

.sing-in-form__head .steps-pagination {
    margin-bottom: 20px;
    margin-left: 20px;
}

.steps-pagination__item {
    position: relative;
    display: block;
    width: 11px;
    height: 11px;
    background: #E5E5E5;
    border-radius: 50%;
    cursor: pointer;

}

.steps-pagination__item.active {
    background-color: #03A688;
}

.steps-pagination__item.check {
    background-color: #03A688;
}

.steps-pagination__item.check:after {
    background-color: #03A688;
}

.steps-pagination__item+.steps-pagination__item {
    margin-left: 80px;
}

.steps-pagination__item:last-child::after {
    display: none;
}

.steps-pagination__item:after {
    content: '';
    position: absolute;
    top: 5px;

    left: 100%;
    width: 80px;
    height: 1px;
    background: #E5E5E5;
}

.btn-outline {
    border: 2px solid #E5E5E5;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
}

.btn-outline:hover {
    border-color: #03A688;
    background-color: white;
    color: #03A688;
}

.btn-icon:first-child {
    margin-right: 12px;
}

.sing-in-form__col-12 {
    flex: 0 0 100%;
    padding: 0 15px;
}

.textarea-wrapper {
    position: relative;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    padding: 10px 10px 30px;
}

.textarea-wrapper .input {
    resize: none;
    width: 100%;
    border-radius: 10px;
    padding: 5px;
    border-color: transparent;
}

.text-area-info {
    position: absolute;
    bottom: 15px;
    right: 10px;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #C0C0C0;
}

.add-project {
    display: flex;
    align-items: center;
}

.add-project .select {
    flex: auto;
    margin-right: 20px;
    margin-bottom: 15px;
}

.add-project .btn-primary {
    margin-bottom: 15px;
}

.btn-icon:only-child {
    margin-right: 0;
    margin-left: 0;
}

.icon-only {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 3px;
}

.projects-list__item {
    padding: 15px 0;
    border-top: 1px solid #E5E5E5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 17px;
    line-height: 20px;
    color: #737373;
}

.header-actions {
    display: flex;
    align-items: center;
}

.header-actions-btn + .header-actions-btn{
    margin-left: 15px;
}

.header-profile {
    width: 42px;
    height: 42px;
    border: 1.5px solid #E5E5E5;
    border-radius: 50%;
    overflow: hidden;
}
.header-profile img{
    width: 100%;
    height: 100%;
}

.mobile-profile {
    display: none;
}

@media (max-width: 768px) {
    .sing-in-form__head {
        flex-direction: column;
    }
    .form-actions .btn-primary {
        width: auto;
        margin: 0;
        margin-left: auto;
    }
    .profile_page_wrpr {
        flex-direction: column;
    }
    .profile_page_wrpr .profile_left_sidebar {
        width: 100%;
        max-width: none;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .header-login .logo {
        width:auto;
    }
    .form-actions .btn-primary {
        width: auto;
        margin: 0;
        margin-left: auto;
    }
    .sing-in-form__col {
        flex: 0 0 100%;
    }
    .steps-pagination__item+.steps-pagination__item {
        margin-left: 40px;
    }
    
    .steps-pagination__item:after {
        width: 40px;
    }
    .sing-in-form__col.mb30 {
        margin-bottom: 15px;
    }
    .sing-in-form__item.border-top {
        margin-top: 15px;
    }
    .sing-in-form {
        padding: 15px;
    }
    .sing-in-form__title {
        text-align: center;
        line-height: 40px;
    }
    .add-project .select {
        width: 100%;
        margin-right: 0;
    }
    .add-project {
        flex-direction: column;
    }
    .btn-outline {
        width: auto;
        margin: 0;
    }
    .mobile-none {
        display: none;
    }
    .mobile-profile {
        display: block;
    }
    .mobile-profile {
        padding: 15px 10px 15px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #E5E5E5;
    }
    .mobile-profile a.header-actions-btn{
        padding: 0;
        border-bottom: 0;
    }
    .pf_content_footer .btn {
        width: auto;
        margin: 0;
    }
    .profile_main_content .pf_content_body {
        padding: 15px;
    }
    .profile_main_content .pf_content_footer {
        padding: 15px;
    }
    .add-project > .btn-primary {
        margin-left: 0;
    }
    .add-project .input_wrpr {
        padding-left: 0!important;
    }
}

@media (max-width: 350px) {
    .form-actions {
        flex-direction: column;
    }
    .form-actions .btn-outline {
        margin-bottom: 15px;
    }
    .base-link {
        margin-bottom: 10px;
    }
    .form-actions .base-link+.base-link {
        margin-left: 0;
    }
    .form-actions .btn-primary {
        margin: 0 auto;
        width: 100%;
    }
}
