/*Loading css*/
.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    opacity: 0.2;
    display: none;
}

.checked-icon {
    width: 240px;
    display: inline-block;
}


.container {
    background: #f6f6f6;
}

.login-img {
    max-width: 225px;
}

.login-form {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.login-form input {
    font-size: 13px;
    box-shadow: 0px 6px 15px #00000012;
    border: 1px solid #E8E8E8;
    border-radius: 50px;
    background-color: #fff;
    height: 55px;
    padding: 10px 22px;
    width: 100%;
}

.help-login {
    text-align: right;
    font-size: 13px;
    color: #858585;
    margin-top: 10px;
    float: right;
}

.help-login a {
    color: #777;
}

.login-form-submit button {
    border: 0;
    border-radius: 50px;
    background-color: #1B5A90;
    display: inline-block;
    color: #fff !important;
    text-transform: uppercase;
    cursor: pointer;
    padding: 14px 15px;
    width: 100%;
}

.header-name-icon {
    padding-right: 8px;
}

.header-name-icon img {
    height: 54px;
}

.header-name {
    display: flex;
    margin-bottom: 24px;
}

.header-search #specialityList {
    font-family: 'Nunito Sans';
    background: #EEF6FC;
    border-radius: 18px;
    padding: 18px 20px;
    border-color: #EEF6FC;
}

.header-menu {
    max-width: 350px;
    margin: 24px auto 0;
}

.header-menu ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.menu-item {
    display: inline-block;
}

.header-menu .menu-item-title {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 135%;
    letter-spacing: 0.01em;
    color: #000000;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.header-name-text h1 {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 132%;
    letter-spacing: 0.01em;
    font-feature-settings: 'liga';
    color: #253141;
    text-transform: capitalize;
    margin: 0px;
}

.header-name-text span {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 112%;
    letter-spacing: 0.02em;
    font-feature-settings: 'salt' on, 'liga' off;
    color: #253141;
}

.header-name-logout {
    flex-grow: 2;
    align-self: center;
    text-align: right;
}

.header-name-logout > a {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 130%;
    text-align: center;
    letter-spacing: 0.03em;
    color: #fff;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    background: #1C6BA4;
    border-radius: 14px;
    text-decoration: none;
}

.header-menu .menu-item-icon {
    width: 71px;
    height: 71px;
    border-radius: 20px;
    background: #DCEDF9;
}

.header-menu .menu-item-icon img {
    width: 30px;
    position: relative;
    top: 15px;
    left: 20px;
}

/* INVOICES CSS */

.invoices-container {
    margin-top: 30px;
}

.invoice-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.invoice-card {
    text-decoration: none;
    display: flex;
    height: 90px;
    padding: 15px;
    border-radius: 24px;
    align-items: center;
}

.invoice-icon {
    width: 56px;
    height: 56px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.invoice-info.invoice-card {
    background: #0d6aad;
}

.invoice-info .invoice-icon  {
    background: #DCEDF9;
}

.invoice-info .invoice-icon > svg > path {
    fill: #0d6aad;
}

.invoice-danger.invoice-card {
    background: #F73859;
}

.invoice-danger .invoice-icon  {
    background: #F2E3E9;
}

.invoice-danger .invoice-icon > svg > path {
    fill: #F73859;
}

.invoice-success.invoice-card {
    background: #008A5E;
}

.invoice-success .invoice-icon  {
    background: #D6FFF3;
}

.invoice-success .invoice-icon > svg > path {
    fill: #008A5E;
}

.invoice-icon-wrapper {
    padding-right: 16px;
}

.invoice-title {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 116%;
    color: #fff;
    margin: 0;
}

.invoice-content-wrapper {
    flex: 2;
}

.invoice-sub-title {
    display: flex;
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 132%;
    letter-spacing: 0.01em;
    color: #FFFFFF;
}

.invoice-sub-title .invoice-price {
    padding-right: 15px;
}

.invoice-list .invoice-item {
    margin-bottom: 15px;
}

/* CARDS CSS */

.cards-container {
    margin-top: 30px;
}

.cards-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cards-card {
    text-decoration: none;
    display: flex;
    height: 90px;
    padding: 15px;
    border-radius: 24px;
    align-items: center;
    background: #0d6aad;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DCEDF9;
}

.card-icon > img {
    width: 40px;
}

.card-icon-wrapper {
    padding-right: 16px;
}

.card-title {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 116%;
    color: #fff;
    margin: 0;
}

.card-content-wrapper {
    flex-grow: 2;
}

.card-subtitle {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
    color: #fff;
}

.cards-list .cards-item {
    margin-bottom: 15px;
}

.invoice-card {
    padding: 20px;
    border-radius: 24px;
    height: auto;
    flex-wrap: wrap;
}

.invoice-card-danger {
    background: #F73859;
}

.invoice-card-info {
    background: #1C6BA4;
}

.invoice-card-success {
    background: #008A5E;
}

.invoice-card-header {
    display: flex;
    flex-wrap: wrap;
}

.invoice-card_title {
    flex: 2;
    margin: 0;
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 116%;
    color: #fff;
}

.invoice-card_price {
    position: relative;
    top: -25px;
    width: 100%;
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: #fff;
}

.invoice-card_sub_title {
    width: 100%;
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
}

.invoice-actions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
}

.invoice-actions-list > a {
    text-decoration: none;
}

.invoice-actions-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.invoice-actions-icon {
    width: 71px;
    height: 71px;
    background: #1C6BA4;
    border-radius: 20px;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 5px;
}

.invoice-actions-title {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 23px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #000000;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}