@import "/fonts/style.css";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

[class^="icon-"], [class*=" icon-"]{
    display: inline-flex;
    align-items: center;
    justify-content: center;
}



.header {
    display: flex;
    justify-content: space-between;
    background: #202020;
    color: #FFF;
}

.header a{
    display: flex;
    justify-content: space-between;
    background: #202020;
    color: #FFF;
    padding: 10px;
    text-decoration: none;
}



.hide{
    display: none;
}



.customScrollbar::-webkit-scrollbar {
    width: 3px;
    height: 5px;
}
.customScrollbar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}
.customScrollbar::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 3px;
}





.flex-col {
    display: flex;
    flex-direction: column;
}


.flex-row{
    display: flex;
    flex-direction: row;
    align-items: center;
}



.flex-between{
    justify-content: space-between;
}

.flex-start{
    align-items: flex-start;
}

.pd-10{
    padding: 10px;
}
.pd-20{
    padding: 20px;
}

.textCenter{
    text-align: center;
}



.transition { -webkit-transition: all .2s ease-in-out; -moz-transition: all .2s ease-in-out; -o-transition: all .2s ease-in-out; transition: all .2s ease-in-out}






.btn {
    display: inline-flex;
    align-items: center;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    position: relative;
    text-decoration: none;
    margin: 0 5px;
    background-color: #efefef;
    cursor: default;
}

.btn-sm {
    font-size: 0.8rem;
    padding: .24rem .5rem;
}
.btn-sm-2{
    font-size: 0.7rem;
    padding: .18rem .4rem;
}

.btn-blue{
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-red {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-green{
    color: #fff;
    background-color: #36c71b;
    border-color: #36c71b;
}

.btn-green-light{
    color: #fff;
    background-color: #1aec0c;
    border-color: #1aec0c;
}

.btn-dark{
    color: #fff;
    background-color: #47525E;
    border-color: #47525E;
}

.btn-transparent{
    color: #47525E;
    background-color: transparent;
    border-color: #47525E;
}

.btn-gray{
    color: #fff;
    background-color: #797979;
    border-color: #797979;
}

.btn-yel{
    color: #FFF;
    background: #ffc107;
    border-color: #ffc107;
}

.btn:active{
    box-shadow: 0 2px 3px rgba(0,0,0,0.3) inset;
}

.btn:disabled{
    background: #CCC;
    border-color: #CCC;
}




.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #d6e3e3;
    border-radius: 4px;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

textarea.form-control{
    height: auto;
}

.form-control-min {
    height: 26px;
    padding: 0 10px !important;
    line-height: 26px;
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.08), 0 0 8px rgba(102,175,233,0.06);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.08), 0 0 8px rgba(102,175,233,0.06);
}




.loginForm {
    width: 400px;
    margin: auto;
    padding: 30px;
    border: 1px solid #ebebeb;
    border-radius: 1em;
    box-shadow: 0 0 100px #e1e1e1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loginForm h2{
    margin-bottom: 20px;
}

.loginForm .btn{
    margin: 10px auto;
    float: right;
}

.loginForm .btnLogIn{
    display: none;
}

.loginForm .showCode .btnLogIn{
    display: inline-block;
}

.loginForm .showCode .btnSendCode{
    display: none;
}
