:root {
    --default-color: #313131;
}

body {
    font-family: 'Exo 2';
    font-style: normal;
    color: var(--default-color);
}

img {
    max-width: 100%;
}

a {
    transition: 0.3s;
}

.text-right {
    text-align: right;
}

.user-page {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100vh;
    -ms-flex-pack: center;
    justify-content: center;
}

.user-card {
    max-width: 385px;
    margin: auto;
}

.user-card-title {
    font-weight: 600;
    font-size: 28px;
    line-height: 110%;
    text-align: center;
    margin-bottom: 35px;
}

.user-nav-tabs {
    display: flex;
    justify-content: space-between;
    border-bottom: 0;
    margin-bottom: 30px;
}

.user-nav-tabs .nav-link {
    padding: 0;
    border: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    color: var(--default-color);
}
.user-nav-tabs .nav-link.active {
    text-decoration-line: underline;
    color: #29A645;
}

.user-card .form-label {
    font-size: 15px;
    line-height: 16px;
    color: #616161;
    margin-bottom: 10px;
}

.user-card .form-control {
    padding: 0.5rem 0.75rem;
}

.form-control:focus {
    border-color: #DA091678;
    box-shadow: 0 0 0 0.25rem rgba(218, 9, 22, 0.25);
}

.user-card .btn-user {
    transition: 0.3s;
    padding: 0.719rem 0.75rem;
    background: linear-gradient(91.56deg, #EAA79D -15.95%, #E57E88 93.02%);
    font-weight: 600;
    font-size: 17px;
    line-height: 17px;
    text-transform: uppercase;
    color: #ffffff;
}

.user-card .btn-user:hover {
    background: linear-gradient(91.56deg, #E57E88 -15.95%, #E57E88 93.02%);
}

.user-card [class*=icheck-]>input:first-child+input[type=hidden]+label::before,
.user-card [class*=icheck-]>input:first-child+label::before {
    border-radius: 0.375rem;
    transition: 0.3s;
}

.user-card .icheck-primary>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.user-card .icheck-primary>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #DA091678;
}

.user-card .icheck-primary>input:first-child:checked+input[type=hidden]+label::before,
.user-card .icheck-primary>input:first-child:checked+label::before {
    background-color: #DA091678;
    border-color: #DA091678;
}

.user-card-link {
    font-size: 14px;
    line-height: 17px;
    text-decoration-line: underline;
    color: #616161;
}
.user-card-link:hover {
    color: #DA091678
}