html, body {
    font-family: 'Gilroy-Medium', sans-serif;
    height: 100vh;
    margin: 0;
}

.body-white {
    background-color: #fff;
    color: #292d34;
}

.body-charcoal {
    background-color: #292d34;
    color: #fff;
}

.full-height {
    height: 100vh;
}

.flex-center {
    align-items: center;
    display: flex;
    justify-content: center;
}

.position-ref {
    position: relative;
}

.top-right {
    position: absolute;
    right: 10px;
    top: 18px;
}

.content {
    margin: 10px;
    text-align: center;
}

.welcome {
    font-size: 14px;
    line-height: 1.43;
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    margin-bottom: 20px;
}

.btn {
    align-items: center;
    display: inline-block;
    width: 220px;
    padding: 16px 0;
    text-align: center;
    border-radius: 100px;
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 14px;
    letter-spacing: 0.4px;
    text-decoration: none;
}

.btn:hover {
    cursor: pointer;
}

.btn-blue {
    margin-bottom: 10px;
    color: #fff;
    background-color: #4bb3d1;
    outline: none;
    border: 0;
    border: none;
}

.btn-blue:hover {
    background-color: #398fa8;
}

.btn-red {
    margin-bottom: 10px;
    color: #fff;
    background-color: #f94262;
    outline: none;
    border: 0;
    border: none;
}

.btn-red:hover {
    background-color: #be334b;
}

.btn-transparent {
    color: #fff;
    border: solid 1px #ffffff;
}

.shadow-red {
    -moz-box-shadow: 0 20px 30px -15px rgba(255, 0, 45, 0.4);
    -webkit-box-shadow: 0 20px 30px -15px rgba(255, 0, 45, 0.4);
    box-shadow: 0 20px 30px -15px rgba(255, 0, 45, 0.4);
}

.btn-transparent:hover {
    background-color: #fff;
    color: #292d34;
}

.form-row {
    font-family: 'Gilroy-Medium', sans-serif;
    border: none;
    width: 300px;
    height: 30px;
    font-size: 14px;
    line-height: 1.43;
}

.form-row-dark-bg {
    border-bottom: 1px solid rgba(227, 227, 227, 0.1);
    color: #fff;
}

.form-row-light-bg {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #292d34;
}

.form-row-email {
    background: url('../img/e_mail.svg') no-repeat scroll 0 9px;
    padding: 0 0 5px 27px;
}

.form-row-password {
    background: url('../img/password.svg') no-repeat scroll 0 6px;
    padding: 0 0 5px 24px;
}

.form-row-username {
    background: url('../img/ic_username.svg') no-repeat scroll 0 7px;
    padding: 0 0 5px 24px;
}

.search-ic {
    background: url('../img/ic_search_grey.svg') no-repeat scroll 16px 10px;
    padding: 0 15px 0 41px;
}

.username-status-ic {
    position: absolute;
    right: 3px;
    top: 71%;
}

.email-status-ic {
    position: absolute;
    right: 3px;
    top: 21%;
}

.form-row:focus {
    border-bottom: 1px solid #4bb3d1;
    outline: none;
}

.form-row-dark-bg::placeholder {
    color: #7f8185;
}

.form-row-light-bg::placeholder {
    color: #cdcdcd;
}

.is-invalid {
    border-bottom: 1px solid #f94262;
}

.is-invalid:focus {
    border-bottom: 1px solid #f94262;
}

.invalid-feedback {
    display: block;
    color: #f94262;
}

.un-invalid-feedback {
    display: none;
    color: #f94262;
}

.un-success-feedback {
    display: none;
    color: #44db5e;
}

.form-link {
    align-items: center;
    text-align: center;
    font-family: 'Gilroy-Medium', sans-serif;
    font-size: 14px;
    color: #7f8185;
    margin-top: 10px;
    text-decoration: none;
}

.form-link:hover {
    text-decoration: underline;
}

.cover > img {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 210px;
}

.registration-title {
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    margin-top: 70px;
}

.registration-step {
    font-size: 14px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.registration-avatar {
    width: 100px;
    height: 100px;
    position: relative;
    margin: auto auto;
}

.registration-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 100px;
}

.form-avatar-upload-wrap {
    position: absolute;
    left: 70px;
    top: 70px;
}

.form-avatar-upload {
    width: 35px;
    height: 35px;
    overflow: hidden;
    background: #f94262;
    border-radius: 100px;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-avatar-upload img {
    border-radius: 0;
    /*width: 15px;*/
    width: auto !important;
    /*height: 12px;*/
    height: auto !important;
}

.form-avatar-upload:hover {
    background-color: #be334b;
}

.form-avatar-upload input[type="file"] {
    display: none;
}

.form-avatar-upload label {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.for-row_textarea {
    font-family: 'Gilroy-Medium', sans-serif;
    resize: none;
    border-radius: 6px;
    overflow: auto;
    font-size: 14px;
    border: solid 1px rgba(0, 0, 0, 0.1);
}

.for-row_textarea::placeholder {
    color: #cdcdcd;
}

.for-row_textarea:focus {
    outline: none;
}

/* Customize the label (the container) */
.container {
    display: inline-block;
    position: relative;
    padding-left: 32px;
    /*margin-bottom: 12px;*/
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-top: 2px;
}

/* Hide the browser's default radio button */
.container input {
    position: absolute;
    opacity: 1;
    display: none;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    /*background-color: #eee;*/
    border-radius: 100%;
    border: 2px solid rgba(213, 215, 221, 0.55);

    /*position: relative;*/
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*!* On mouse-over, add a grey background color *!*/
/*.container:hover input ~ .checkmark {*/
/*background-color: #ccc;*/
/*}*/

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #fff;
    border: 2px solid #f94262;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
    background-position: center;
    width: 12px;
    height: 12px;
    position: relative;
    border-radius: 50%;
    background: #f94262;
}

.cropper {
    max-width: 600px;
    max-height: 600px;
    overflow: hidden;
    margin: 20px;
}

.thumb {
    width: 100%;
    max-width: 100%;
}

.modal {
    display: none;
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    /*margin: 3% auto 0 auto;*/
    /*width: 638px;*/
    max-width: 640px;
    overflow: hidden;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    /*left: 93%;*/
    right: 30px;
    top: 30px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: none;
    background-color: #fff;
    /*border: 1px solid #fff;*/
    outline: none;
    /*margin-top: 30px;*/
    /*margin-right: 30px;*/
    display: block;
    /*float: right;*/
    /*font-size: 24px;*/
    /*color: #292d34;*/
    /*z-index: 2;*/
    background: url('../img/ic_close_x_charcoal.svg');
}

.close-modal:hover {
    /*color: #f94262;*/
    cursor: pointer;
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: none;
    background: url('../img/ic_close_x_watermalow.svg');
}

.grecaptcha-badge {
    display: none;
    /*box-shadow: grey 0px 0px 0px!important;*/
    /*background: rgba(255, 255, 255, 0) !important;*/
}

/*.rc-anchor-light{*/
/*background: rgba(255, 255, 255, 0) !important;*/
/*background-color: rgba(255, 255, 255, 0);*/
/*}*/

.recaptcha {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.full-block-a {
    z-index: 6;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}


.shadow-main-book-bg {
    background-color: #fdfdfd;
    box-shadow: 0 1px 11px 0 rgba(101, 150, 255, 0.15);
}

.shadow-main-book {
    box-shadow: 0 11px 20px 0 rgba(56, 82, 138, 0.36);
}

.li-users-list {
    width: 16%;
    /*margin-left: 32px;*/
}

.li-books-list {
    /*width: 15.82%;*/
    /*margin-left: 32px;*/
}

.bg-black-50 {
    background-color: rgba(0, 0, 0, 0.45);
}

.bottom-separator {
    /*height: 1px;*/
    margin-top: 27.7px;
    border: solid 1px #3b4049;
}

a {
    outline: none !important;
}
