.orders-tabs {
    display: -ms-flexbox;
    display: flex;
    line-height: 1.2;
    font-weight: 700;
    gap: 32px;
    position: relative;
    margin-top: 30px;
    margin-bottom: 20px;
}

.orders-tabs li {
    margin: 0 8px;
}

.orders-tabs:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: #e0e0e0;
    bottom: 0;
}

.orders-tabs a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease-out;
    height: 20px;
    opacity: 0.5;
    padding-bottom: 20px;
}

.orders-tabs a:after {
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transition: all 0.3s ease-out;
    position: absolute;
    z-index: 1;
}

.orders-tabs a:hover,
.orders-tabs a.active {
    color: #042EB0;
    opacity: 1;
}

.orders-tabs a:hover img,
.orders-tabs a.active img {
    filter: none;
}

.orders-tabs img {
    transition: all 0.3s ease-out;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 10px;
    filter: brightness(0);
}

.orders-tabs span {
    margin-top: 1px;
}

.orders-tabs .active:after {
    background: #4471FB;
}

.enter-form {
    position: relative;
}

.enter-form #qr-code {
    position: absolute;
    top: -1px;
    right: -1px;
    transition: all 0.3s ease-out;
}

.input-block-code .send-repeat-code {
    width: 160px;
    height: 26px;
    position: absolute;
    top: 10px;
    right: 0px;
    padding-left: 10px;
    border-left: 1px solid #ddd;
    color: #8e8e8e;
}

.input-block-code {
    position: relative;
}

.input-block-code .send-repeat-code span {
    color: #042eb0;
}

.input-block-code .send-repeat-code button {
    height: 26px;
    font-family: Inter, Arial, Tahoma, sans-serif;
    font-weight: 600;
    background: transparent;
    border: none;
    color: #042eb0;
    cursor: pointer;
}

.input-block-code .send-repeat-code button:hover {
    color: #4471fb;
}

button.btn.darkblue-btn {
    position: relative;
}

button.btn.darkblue-btn:disabled:before {
    content: "";
    position: absolute;
    top: 0;
    margin-left: -30px;
    left: 50%;
    z-index: 6;
    width: 60px;
    height: 100%;
    background: url(../images/loader.svg) center no-repeat;
    background-size: 100% auto;
}

button.btn.darkblue-btn:disabled {
    background: #e0e0e0;
    cursor: default;
}

button.btn.darkblue-btn:disabled span {
    opacity: 0;
}