﻿@font-face {
    font-family: BTitr;
    src: url(../../fonts/BTitr/BTitr.ttf);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
.btn-back-user{
    position: absolute;
    left: 5%;
    padding: 19px 0 0 15px;
    color: #797979;
    cursor: pointer;
}

/*Timer*/
.base-timer {
    position: relative;
    width: 30px;
    height: 30px;
}

.base-timer__svg {
    transform: scaleX(-1);
}

.base-timer__circle {
    fill: none;
    stroke: none;
}

.base-timer__path-elapsed {
    stroke-width: 7px;
    stroke: grey;
}

.base-timer__path-remaining {
    stroke-width: 7px;
    stroke-linecap: round;
    transform: rotate(90deg);
    transform-origin: center;
    transition: 1s linear all;
    fill-rule: nonzero;
    stroke: currentColor;
}

.base-timer__path-remaining.green {
    color: rgb(65, 184, 131);
}

.base-timer__path-remaining.orange {
    color: orange;
}

.base-timer__path-remaining.red {
    color: red;
}

.base-timer__label {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px !important;
}
.field-icon {
    float: left;
    margin-left: 9px;
    margin-top: -30px;
    position: relative;
    cursor: pointer;
    color: #797979;
}
/*End timer*/