@charset "utf-8";
@import "default.css";
@import "font.css";

@keyframes nprogress-spinner {
    0% {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(1turn);
    }
}
@keyframes fadeIn-fixed {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

body,html {
    color: #363b44;
    font: 15px PT Sans,Arial,sans-serif;
}
body.page-loading:before {
    background: #fff;
    content: "";
    display: block;
    opacity: .5;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: right .5s;
    z-index: 1001;
}
body.page-loading:after {
    animation: nprogress-spinner .9s linear infinite;
    border-color: #158fd2 transparent transparent #158fd2;
    border-radius: 100%;
    border-style: solid;
    border-width: 2px;
    content: "";
    display: block;
    height: 36px;
    margin-left: -8px;
    margin-top: -8px;
    position: fixed;
    top: 50%;
    left: 50%;
    transition: left .5s;
    width: 36px;
    z-index: 1002;
}
.hidden {
    display: none !important;
}
/*modal*/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 100;
    transition: right 0.5s;
}
.modal .modal-scroller {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    overflow-x: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}
.modal .custom-scroll {
    -webkit-overflow-scrolling: touch;
}
.modal .modal-body {
    position: relative;
    background: #fff;
    border: 1px solid #c5c5c5;
    box-shadow: 0 14px 24px 1px rgba(0, 0, 0, .1);
    box-sizing: border-box;
    padding: 30px;
    transition: transform .3s, opacity .1s;
    width: 500px;
    min-height: 180px;
    z-index: 2;
}
.modal .overlay {
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    animation: fadeIn-fixed .2s ease both;
    visibility: visible;
    background: hsla(0, 0%, 100%, .6);
}
.modal .head-content {
    margin-bottom: 15px;
}
.modal .head {
    min-height: 20px;
    font-size: 20px;
    white-space: nowrap;
}
.modal .sub-head {
    color: rgb(95, 109, 121);
    font-weight: 400;
    line-height: 20px;
    font-size: 15px;
}
.modal .error-message {
    font-size: 14px;
    margin-left: 10px;
    color: #e87775;
}
.b-close-button {
    cursor: pointer;
    background: url("../icons/close.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 15px;
    height: 15px;
}
.modal .b-close-button {
    position: absolute;
    top: 16px;
    right: 16px;
}
/*end modal*/
.auth-page {
    margin: 60px auto;
    width: 75%;
}
.auth-page .head {
    font-size: 57px;
    font-weight: 700;
}
.auth-page .head > span {
    display: block;
    color: #3d8af5;
}
.auth-page .head-desc {
    margin-top: 32px;
    color: #576075;
    font-size: 20px;
    line-height: 28px;
}
.button-actions {
    margin-top: 25px;
}
.button-input {
    background: #fff;
    border: 1px solid #e8eaeb;
    border-radius: 3px;
    color: #363b44;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    max-height: 38px;
    outline: none;
    padding: 10px;
    vertical-align: middle;
    white-space: nowrap;
}
.button-input_blue {
    background: #4c8bf7;
    border: 1px solid #4077d6;
    color: #fff;
}
.button-input + .button-input {
    margin-left: 15px;
}
.auth-page .button-input {
    font-size: 20px;
    font-weight: 400;
}
.form-field:not(:last-child) {
    margin-bottom: 15px;
}
.form-field .label-field {
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 2px;
}
.input-text {
    background: #fff;
    color: #363b44;
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px solid #c5c5c5;
    font-size: 15px;
    padding: 8px 9px 7px;
}
.license {
    margin-top: 8px;
    font-size: 13px;
}
.modal-sign-up .form-field .input-text {
    width: 100%;
}
.modal-sign-up .head {
    font-size: 24px;
    line-height: 32px;
}
.modal-sign-up .button-actions {
    display: flex;
    align-items: center;
}
.action-link {
    color: #1579d2;
}
input.error {
    border-color: #e87775;
}





