@font-face {
    font-family: 'Inter';
    src: url('/catalog/view/css/fonts/Inter-Regular.woff2') format('woff2'),
    url('/catalog/view/css/fonts/Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
:root {
    --mc: #019BE1;
    --sc: #ffffff;
    --font-color: #6B7280;
}
html {
    height: 100%;
}
body {
    min-height: 100%;
    background: #F5F5F5;
    color: var(--font-color);
    font-size: 14px;
    font-family: 'Inter';
}
h1{
    font-size: 22px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 10px;
}
h2 {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}
a {
    color: var(--mc);
}

.error{
    border: 1px solid #DC0D15 !important;
    background: #FDF3F3;
}
.alert_error {
    color: #CF0033;
}
.error_border {
    border: 1px solid #DC0D15 !important;
}
.form-control {
    border: 1px solid #F5F5F5 !important;
    padding: 18px 20px 16px !important;
    height: unset;
    border-radius: 0;
    box-shadow: unset;
}
.flex-end{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
}
header{
    padding: 12px;
    background: #fff;
}
.lang_div {
    margin-right: 30px;
}
.lang_div img, .service_div img{
    margin: 0 5px;
}
#logo_div {
    padding: 30px 0;
    text-align: center;
}
.login_container {
    background: #fff;
    padding: 35px 30px;
    margin: 30px 0;
    font-size: 16px;
}
.mt40 {
    margin-top: 40px;
}
.checkcontainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-weight: 400;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.checkcontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border: 1px solid #eee;
    border-radius: 3px;
}
.checkcontainer input:checked ~ .checkmark:after {
    display: block;
}
.checkcontainer .checkmark:after {
    left: 9px;
    top: 3px;
    width: 7px;
    height: 12px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.checkcontainer input:checked ~ .checkmark {
    background-color: var(--mc);
}
.btn {
    border-radius: 0;
}
.btn-main {
    background: var(--mc);
    border:1px solid var(--mc);
    color: var(--sc);
}
.btn-main:hover, .btn-main:focus, .btn-main:active{
    opacity: 0.8;
}
#sbmloginfrm {
    margin: 40px 0 30px;
    width: 100%;
    padding: 12px 20px  ;
}
.form-group {
    margin-bottom: 20px;
}
.auth_fieldset {
    border-width: 1px 0 0 0;
    border-color: #F5F5F5;
    margin: 0px 0 40px;
    padding: 0;
}
.auth_fieldset legend {
    width: unset;
    margin: 0 auto;
    padding: 0 10px;
    font-size: 16px;
    color: var(--font-color);
}
.login_container .btn {
    width: 100%;
}
.login_container .btn-default {
    margin-bottom: 15px;

    padding: 10px 20px !important;
}
.btn-default span {
    display: inline-block;
    width: 40px;
    text-align: left;
}
.btn-default {
    border: 1px solid #F5F5F5;
}
footer{
    background: var(--mc);
    padding: 30px 0;
    color: #fff;
    overflow: hidden;
    font-size: 16px;
}
footer  a, footer a:hover {
    color: #fff;
}
.flex-justified{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.foot_btn{
    background: #fff;
    color: var(--mc);
    padding: 15px;
    display: flex;
}
.foot_btn:hover{
    background: var(--mc);
    border:1px solid #fff;
}
.foot_btn:hover path {
    stroke: #fff;
}
.foot_sep{
    border-top: 1px solid #EDEDED;
    margin: 40px 0;
}
footer ul li{
    display: block;
}
footer h3{
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
}
footer p{
    font-size: 16px;
    font-weight: 400;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
#digits_form input {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
}
.btn-dark {
    background: var(--mc);
    color: #fff;
    border: 1px solid var(--mc);
}
.btn-dark:hover{
    background: #fff;
    color: var(--mc);
}
@media (min-width: 1200px) {
    .container {
        width: 80%;
    }
}