@import url('https://fonts.googleapis.com/css?family=Numans');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

html, body {
    background-color: white;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    font-family: 'Roboto', sans-serif;
}


.uw-container {
    height: 100%;
    align-content: center;
    justify-content: center;
    overflow-x: hidden;
}

.uw-card {
    min-width: 470px;
    min-height: 510px;
    background-color: white;
    padding: 20px 30px 25px 30px;
    border-radius: 5px;
    border: 1px solid #dadce0;
}

.uw-card.activate {
    min-height: 475px;
}

.login-block {
    padding-left: .5rem;
    padding-right: .5rem;
}

.welcome-text {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #202124;
}

.welcome-text.large {
    font-size: 18px;
}

.caf-info {
    line-height: 18px;
    font-size: 14px;
    text-align: right;
    color: #9899AE;
    font-weight: 300;
}

.caf-info span {
    border: 1px solid lightgray;
    border-radius: 8px;
    padding: 20px 20px 8px 20px;
    width: 100%;
}

.caf-info:hover span {
    border: 1px solid #3751FF;
    color: #3751FF;
    transition: all 0.35s ease-in-out;
}

.uw-card-body .line-height {
    line-height: 1px;
}

.uw-card-header .logo-container {
    display: flex;
}

.uw-card-header .logo-container h2 {
    color: #262626;
    font-size: 24px;
}

.link-container a {
    font-weight: 500;
    font-size: 14px;
    color: #5f6368;
    letter-spacing: 0.1px;
    transition: all 0.2s ease-in-out;
}

.link-container a:hover {
    color: #3751FF;
}


/*=========== BUTTON STYLING ===========*/

.uw-primary-btn {
    min-height: 42px;
    min-width: 95px;
    background: #435cff;
    border-radius: 5px;
    letter-spacing: 0.2px;
    border: none;
    color: white;
    transition: all 250ms ease-in-out;
}

.uw-primary-btn:hover {
    background-color: rgba(55, 81, 255, 0.85);
}

.uw-primary-btn:focus, .uw-primary-btn:active {
    outline: none !important;
    box-shadow: none;
}

.uw-secondary-btn {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.2px;
    color: #3751FF;
    transition: all .2s ease-in-out;
}

.uw-secondary-btn:hover {
    color: rgba(55, 81, 255, 0.79);
}


/*=========== ALERT STYLING ===========*/

.uw-alert-alert, .uw-alert-info {
    background-color: #FEE9E7;
    border: none;
    color: #ff4c4c;
    padding: 26px 21px;
    height: 75px;
    border-radius: 3px;
}

.uw-alert-info {
    background-color: #FFF3E1;
    color: #FF9800;
}


/*=========== INPUT STYLING ===========*/

.out-sonata label {
    position: relative;
    display: block;
    margin: 0;
    z-index: 3;
}

.out-sonata label input, .out-sonata label textarea {
    font-size: 15px;
    font-weight: 400;
    box-sizing: border-box;
    display: block;
    border: none;
    color: #262626;
    padding: 18px 20px;
    height: 75px;
    width: 100%;
    margin: 0;
    outline: none;
    border-radius: 3px;
    transition: all 0.2s ease-in-out;
    background: white;
    letter-spacing: 0.3px;
    -webkit-box-shadow: inset 0 0 0 1px #CBCDDC;
    -moz-box-shadow: inset 0 0 0 1px #CBCDDC;
    box-shadow: inset 0 0 0 1px #CBCDDC;
}

.out-sonata label input::placeholder, .out-sonata label textarea::placeholder {
    transition: all 0.2s ease-in-out;
    color: rgba(0, 0, 0, 0.5);
    font-size: 15px;
    font-weight: 400;
}

.out-sonata label input:hover::placeholder, .out-sonata label textarea:hover::placeholder {
    color: rgba(55, 81, 255, 0.72);
}

.out-sonata label input:focus, .out-sonata label textarea:focus {
    outline: none;
    border: none !important;
    -webkit-box-shadow: inset 0 0 0 2px #3751FF;
    -moz-box-shadow: inset 0 0 0 2px #3751FF;
    box-shadow: inset 0 0 0 2px #3751FF;
}

.out-sonata label:focus-within {
    z-index: 100;
}

.out-sonata label input:focus, .out-sonata label input.populated, .out-sonata label textarea:focus, .out-sonata label textarea.populated {
    padding-top: 34px;
    padding-bottom: 11px;
    color: #262626;
    font-weight: 500;
}

.out-sonata label input:focus::placeholder, .out-sonata label input.populated::placeholder, .out-sonata label textarea:focus::placeholder, .out-sonata label textarea.populated::placeholder {
    color: transparent;
}

.out-sonata label input:focus + span, .out-sonata label input.populated + span, .out-sonata label textarea:focus + span, .out-sonata label textarea.populated + span {
    opacity: 1;
    top: 15px;
    letter-spacing: 0.2px;
}

.out-sonata label input:not(:placeholder-shown) + span {
    opacity: 1;
    top: 15px;
    letter-spacing: 0.2px;
}

.out-sonata label input:not(:placeholder-shown) {
    padding-top: 34px;
    padding-bottom: 11px;
    color: #262626;
    font-weight: 500;
}

.out-sonata label .inputname {
    color: #3751FF;
    background: none;
    font: 12px Helvetica, Arial, sans-serif;
    letter-spacing: .1px;
    position: absolute;
    top: 0;
    left: 20px;
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

.out-sonata textarea {
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    line-height: 25px !important;
}

.out-sonata textarea::-webkit-scrollbar {
    width: 0 !important;
}

.out-sonata .char-textarea {
    width: 100%;
    height: 170px;
    color: white;
    resize: none;
}

.out-sonata .email-input {
    border-radius: 3px 3px 0 0;
}

.out-sonata .password-input {
    border-radius: 0 0 3px 3px;
    margin-top: -1px;
    -webkit-text-security: disc;
}

/*======================= CHECKBOX ====================*/

.checkbox-container {
    position: relative;
}

.checkbox-name {
    position: absolute;
    width: 110px;
    left: 37px;
    top: 3px;
    font-weight: 400;
    font-size: 14px;
    color: #5f6368;
    letter-spacing: 0.1px;
    transition: all 0.2s ease-in-out;
}

.checkbox-name:hover {
    color: #3751FF;
}

.check {
    width: 27px;
    height: 27px;
}

.check input {
    display: inline;
    position: absolute;
    left: -9999px;
}

.check input:checked + .box {
    background-color: #E9EDFF;
}

.check input:focus + .box {
    background-color: #E9EDFF;
}

.check input:checked + .box:after {
    top: 0;
}

.check .box {
    width: 100%;
    height: 100%;
    border-radius: 3px;
    transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
    border: 2px solid transparent;
    background-color: #F0F0F0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.check .box:after {
    width: 50%;
    height: 30%;
    content: '';
    position: absolute;
    border-left: 2.5px solid;
    border-bottom: 2.5px solid;
    border-color: #3751FF;
    transform: rotate(-45deg) translate3d(0, 0, 0);
    transform-origin: center center;
    transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
    left: 0;
    right: 0;
    top: 200%;
    bottom: 5%;
    margin: auto;
}


/*===================== MEDIA ======================*/

@media (max-width: 575px) {
    .uw-container {
        height: auto;
    }

    .uw-card, .uw-card.activate {
        min-width: 100vw;
        min-height: 100vh;
        max-width: auto;
        max-height: auto;
    }

    .login-block {
        padding: 0;
    }
}

@media (max-width: 375px) {
    .link-container {
        width: 100%;
        margin-top: 10px;
    }
}

/*=============== Added by Jevgenijs ===============*/

.loginFormBlock {
    margin-top: auto;
    margin-bottom: auto;
}

.social_icon span {
    font-size: 60px;
    margin-left: 10px;
    color: #3751FF;
}

.social_icon span:hover {
    color: white;
    cursor: pointer;
}

.social_icon {
    position: absolute;
    right: 20px;
    top: -45px;
}

.input-group-prepend span {
    background-color: #3751FF;
    color: black;
    border: 0 !important;
}

.remember {
    color: white;
}

.remember input {
    width: 20px;
    height: 20px;
    margin-left: 15px;
    margin-right: 5px;
}

.login_btn {
    color: black;
    background-color: #3751FF;
}

.login_btn:hover {
    color: black;
    background-color: white;
}

.links {
    color: white;
}

.links a {
    margin-left: 4px;
}

a {
    color: #3751FF;
    text-decoration-line: none;
    transition: all 150ms ease-in-out;
}

a:hover {
    color: #2a3fc2;
}

thead a {
    color: #262626;
}

thead a:hover {
    color: #3751FF;
}

h6 {
    color: white;
}

form ul li {
    color: #ff4c4c;
}


/*==================================================================*/
/*====================== INNER PAGES ===============================*/
/*==================================================================*/

.content-wrapper, .right-side {
    background-color: #F2F3F8;
}


.box, .box.box-primary {
    border-top: 3px solid #3751FF;
}

.form-control:focus {
    border-color: #3751FF;
}

.custom-search-form .btn.btn-flat {
    padding: 6px 12px;
}

.select2-results .select2-highlighted {
    background-color: #3751FF;
}

.navbar-default {
    border: none;
    background-color: #ffffff;
}

.navbar-nav > .user-menu > .dropdown-menu {
    box-shadow: 0 2px 2px 0 #00000014;
    border: 1px solid #eeeeee;
    border-radius: 0 0 4px 4px;
}

.bg-light-blue, .label-primary, .modal-primary .modal-body {
    background-color: #3751FF;
}

.navbar-nav > .user-menu > .dropdown-menu > li.user-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: white !important;
    color: #262626 !important;
}

.navbar-nav > .user-menu > .dropdown-menu > li.user-header > img {
    z-index: 5;
    height: 50px;
    width: 50px;
    border: 1px solid #dadde8;
    padding: 9px;
}

.navbar-nav > .user-menu > .dropdown-menu > li.user-header > p {
    color: #262626;
}

.navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default:hover {
    color: white;
}

th.sonata-ba-list-field-header-order-asc a:hover::after, th.sonata-ba-list-field-header-order-asc.sonata-ba-list-field-order-active a::after, th.sonata-ba-list-field-header-order-desc.sonata-ba-list-field-order-active a:hover::after {
    color: #262626;
    font-size: 15px;
    top: 61%;
}

th.sonata-ba-list-field-header-order-desc a:hover:after, th.sonata-ba-list-field-header-order-desc.sonata-ba-list-field-order-active a:after, th.sonata-ba-list-field-header-order-asc.sonata-ba-list-field-order-active a:hover:after {
    color: #262626;
    font-size: 15px;
    top: 61%;
}

.skin-black .wrapper, .skin-black .left-side {
    background-color: white;
}

.pull-right-container .pull-right {
    transform: rotate(180deg);
}

.sidebar small, .sidebar p {
    border-top: none !important;
}

.skin-black .sidebar-form {
    border: 1px solid #F1F3F4;
    margin: 20px 10px;
    box-shadow: 0 1px 1px 0 rgba(65, 69, 73, 0.3), 0 1px 3px 1px rgba(65, 69, 73, 0.15);
}

.skin-black .sidebar-form input[type="text"], .skin-black .sidebar-form .btn {
    background-color: #F1F3F4;
}

.custom-search-form .btn.btn-flat:hover {
    border-color: transparent;
}

.custom-search-form .btn.btn-flat:hover .fa-search {
    color: #3751FF;
}

.sidebar-menu > li > a {
    padding: 22px 5px 22px 15px;
}

.skin-black .sidebar-menu > li:hover > a, .skin-black .sidebar-menu > li.active > a {
    color: #3751FF;
    background: #EFF1FF;
    border-left-color: #3751FF;
}

.skin-black .sidebar-menu > li > .treeview-menu {
    background: white;
}

.sidebar-menu .treeview-menu {
    padding-left: 0;
}

.sidebar-menu .treeview-menu > li > a {
    padding: 18px 5px 18px 22px;
}

.skin-black .sidebar-menu > li > .treeview-menu {
    border-bottom: 1px solid #eeeeee;
}

.skin-black .treeview-menu > li > a {
    color: #262626;
}

.skin-black .treeview-menu > li.active > a, .skin-black .treeview-menu > li > a:hover {
    color: #3751FF;
}

.table-hover > tbody > tr:hover {
    background-color: rgba(239, 241, 255, 0.4);
}

.btn-primary {
    background-color: #3751FF;
    border-color: #3751FF;
    color: #fff;
}

.btn-primary:hover {
    background-color: #425aff;
    border-color: #425aff;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    background-color: #3751FF;
    border-color: #3751FF;
}

.well {
    border: none;
    background-color: white;
}

.study-selector {
    cursor: pointer;
}

.hidden {
    display: none !important;
}

.strike {
    display: block;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}

.strike > span {
    position: relative;
    display: inline-block;
}

.strike > span:before,
.strike > span:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 9999px;
    height: 1px;
    background: lightgrey;
}

.strike > span:before {
    right: 100%;
    margin-right: 15px;
}

.strike > span:after {
    left: 100%;
    margin-left: 15px;
}

.dBlock {
    display: block !important;
}

.callout {
    margin: 0 0 1px 0 !important;
}

input[id$="_phoneNumber_number"] {
    display: inline-block;
    width: 49%;
}

div[id$="_phoneNumber_country"] {
    width: 49%;
}

.ruleDescriptionText {
    font-size: .75rem !important;
    padding-bottom: 4px;
}

.ruleDescriptionText > .material-icons {
    font-size: 16px;
    margin-bottom: 2px;
}

.ruleDescriptionText > div {
    display: inline-block;
    vertical-align: middle;
}

.showPassword {
    cursor: pointer;
}

.fixed .content-wrapper, .fixed .right-side {
    padding-top: 64px;
}

.h-100 {
    height: 100% !important;
}

.mdc-button__ripple {
    width: 100%;
}

.edc-profile-icon {
    display: inline-flex;
}

.edc-profile-arrow {
    vertical-align: middle;
    color: #105bc8;
}

.card-body {
    cursor: pointer;
}

*, :after, :before {
    background-repeat: repeat;
}

.content {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.subjectId {
    display: inline-block;
    color: #115bc8;
    cursor: pointer;
    font-weight: 500;
}
#subjectDropdown{
    display: inline-block;
}
.modal-body {
    padding: 0 15px 0 15px;
}

.savedFiltersBlock>.row>div{
    padding-top: 3px;
    padding-bottom: 3px;
}

.w-100{
    width: 100%;
}
.dateCheckbox{
    display: inline-block;
}

.documentIcon{
    height:40px !important;
    width:auto !important;
}

.hamburgerButton{
    cursor: pointer;
}
.alert-dismissable .close, .alert-dismissible .close {
    right: 0;
}