.heading__custom {
    color: var(--black);
    display: block;
    position: relative;
    margin-top: -5px;
    margin-bottom: 5px;
    line-height: 35px;
    font-weight: 700;
    font-size: var(--fz-large);
}

.content-row {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: calc(var(--gutter-x) * -1);
    margin-left: calc(var(--gutter-x) * -1);
}

.content-left,
.content-main,
.content-right {
    padding-left: var(--gutter-x);
    padding-right: var(--gutter-x);
}


.content-right,
.content-left {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
}

.content-main {
    flex: 1;
    max-width: 100%;
    overflow: hidden;
}

.heading__custom h3,
.heading__custom h2 {
    font-weight: 400;
}

@media(min-width:1025px) {

    .content-right,
    .content-left {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .content-left {
        margin-right: 10px;
    }
}

.menu-profile-wrapper {
    background-color: var(--white);
    margin-top: 15px;
    box-shadow: var(--cl-shadown-1);
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.menu-profile-wrapper i {
    color: var(--cl-secondary);
    margin-right: 4px;
}

.menu-profile a {
    font-size: var(--fz-normal);
}

.menu-profile li {
    padding-bottom: 12px;
}

.menu-profile li:last-child {
    padding-bottom: 0;
}

@media(min-width: 992px) {
    .menu-profile-wrapper {
        margin-top: 20px;
    }
}

.spinner {
    position: absolute;
    top: 45%;
    left: 53%;
}

.spinner div:first-child {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    box-shadow: 0 3px 3px 0 rgba(255, 56, 106, 1);
    transform: translate3d(0, 0, 0);
    animation: kfSpin 2s linear infinite;
}

.spinner div:first-child:after,
.spinner div:first-child:before {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.spinner div:first-child:before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    box-shadow: 0 3px 3px 0 #3235353232383332;
    -webkit-animation: kfSpin 3s linear infinite;
    animation: kfSpin 3s linear infinite;
}

.spinner div:first-child:after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    box-shadow: 0 3px 3px 0 rgba(61, 175, 255, 1);
    animation: kfSpin 1.5s linear infinite;
}

.users-form-management {
    max-width: inherit !important;
    background: var(--white);
    box-shadow: var(--cl-shadown-1);
    border-radius: 5px;
    padding: 15px 15px;
    margin-bottom: 30px;
}

.content-main {
    overflow: inherit;
}

.management-col-custom {
    margin-bottom: 20px;
    padding: 0;
}

.management-col-date {
    margin-bottom: 10px;
    padding: 0;
}

.users-form-management input {
    padding-left: 15px !important;
}

.edit_avartar {
    position: relative;
    display: block;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 20px;
}

.edit_avartar .btn__custom {
    border-radius: 40px;
}

.edit_avartar input {
    width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    height: auto;
    border: none;
    cursor: pointer;
}

.bg-transfer {
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 1px 2px rgb(0 0 0 / 20%);
    box-shadow: 0 1px 2px rgb(0 0 0 / 20%);
    overflow: hidden;
    background-size: 100% !important;
    max-width: 100%;
    height: 300px;
}

@media(min-width: 1024px) {
    .spinner {
        top: 28%;
        left: 55%;
    }

    .users-form-management {
        padding: 20px 25px;
        max-width: 450px;
        margin: 20px auto 30px auto;
    }
}

.select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}

.select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 14px;
    color: #333;
    width: 100%;
    height: 40px;
    margin-top: 6px;
}

.select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 8px 15px;
    border-radius: 30px;
    border: 1px solid #ddd;
}

.select-styled:after {
    content: "";
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-color: #333 transparent transparent transparent;
    position: absolute;
    top: 16px;
    right: 10px;
}

.select-styled:hover {
    background-color: darken($select-background, 2);

}

.select-styled.active,
.select-styled:active {
    background-color: darken($select-background, 5);
}

.select-styled.active:after,
.select-styled:active:after {
    top: 11px;
    border-color: transparent transparent #333 transparent;
}

.select-options {
    display: none;
    position: absolute;
    top: 45px;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.select-options li {
    margin: 0;
    padding: 10px 0;
    text-indent: 15px;
}

.select-options li.is-selected,.select-options li:hover {
    color: #333;
    background: #eee;
}

.select-options li[rel="hide"] {
    display: none;
}