body {
    max-height: 100vh;
    height: 100vh;
    max-width: 100vw;
    width: 100vw;
    overflow: hidden;
}

/* DEFAULT */
.btn-link, .show-ent-data{
    text-decoration: none;
}

.btn-link{
    color: var(--bs-primary);
}

a, .show-ent-data {
    cursor: pointer !important;
}

input:focus,
input:active {
    box-shadow: none !important;
}

/*off canvas*/
.offcanvas-bottom {
    height: 95vh !important;
}

/* LOADER */
.loader {
    position: relative;
    height: 100vh;
    width: 100vw;
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car__body {
    -webkit-animation: shake 0.2s ease-in-out infinite alternate;
    animation: shake 0.2s ease-in-out infinite alternate;
}

.car__line {
    transform-origin: center right;
    stroke-dasharray: 22;
    -webkit-animation: line 0.8s ease-in-out infinite;
    animation: line 0.8s ease-in-out infinite;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.car__line--top {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.car__line--middle {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.car__line--bottom {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

@-webkit-keyframes shake {
    0% {
        transform: translateY(-1%);
    }

    100% {
        transform: translateY(3%);
    }
}

@keyframes shake {
    0% {
        transform: translateY(-1%);
    }

    100% {
        transform: translateY(3%);
    }
}

@-webkit-keyframes line {
    0% {
        stroke-dashoffset: 22;
    }

    25% {
        stroke-dashoffset: 22;
    }

    50% {
        stroke-dashoffset: 0;
    }

    51% {
        stroke-dashoffset: 0;
    }

    80% {
        stroke-dashoffset: -22;
    }

    100% {
        stroke-dashoffset: -22;
    }
}

@keyframes line {
    0% {
        stroke-dashoffset: 22;
    }

    25% {
        stroke-dashoffset: 22;
    }

    50% {
        stroke-dashoffset: 0;
    }

    51% {
        stroke-dashoffset: 0;
    }

    80% {
        stroke-dashoffset: -22;
    }

    100% {
        stroke-dashoffset: -22;
    }
}




.checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin-left: calc(50% - 29px);
}

.checkmark_circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark_check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

#search-cross .checkmark {
    box-shadow: inset 0px 0px 0px red;
    animation: fill-red .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

#search-cross .checkmark_circle {
    stroke: red;
}

#search-check .checkmark {
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill-green .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

#search-check .checkmark_circle {
    stroke: #7ac142;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill-red {
    100% {
        box-shadow: inset 0px 0px 0px 30px red;
    }
}

@keyframes fill-green {
    100% {
        box-shadow: inset 0px 0px 0px 30px #7ac142;
    }
}

/*RATING*/
div.stars {
    display: inline-block;
}

input.star {
    display: none;
}

label.star {
    float: right;
    font-size: 26px;
    color: #4A148C;
    transition: all .2s;
    margin-left: 5px;
    margin-right: 5px;
}

input.star:checked~label.star:before {
    content: '\f005';
    color: #FD4;
    transition: all .25s;
}

input.star-5:checked~label.star:before {
    color: #FE7;
    text-shadow: 0 0 20px #952;
}

input.star-1:checked~label.star:before {
    color: #F62;
}

label.star:hover {
    transform: rotate(-15deg) scale(1.3);
}

label.star:before {
    content: '\f006';
    font-family: FontAwesome;
}