﻿.roboto {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

.blue {
    color: #1E3F74;
}

.bg-blue {
    background-color: #1E3F74;
}

.btn, input.form-control, textarea.form-control {
    border-radius: 0;
}

.btn-outline-primary {
    background-color: #FFFFFF;
    border-color: #1E3F74;
    color: #1E3F74;
}

.btn-check:checked+.btn {
    background-color: #1E3F74;
    border-color: #1E3F74;
    color: #FFFFFF;
}

h6.nowrap, div.star-rating {
    text-wrap-mode: nowrap;
}

.star-rating {
    direction: rtl;
    display: inline-block;
    cursor: pointer;
}

.star-rating input {
    width: 1px;
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.star-rating label {
    color: #ddd;
    font-size: 24px;
    padding: 0 2px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input:checked~label {
    color: #ffc107;
}

@keyframes zoom {
    0%   {scale: 1;}
    100% {scale: 2;}
}

.animated-image {
    max-width: 400px;
    transform-origin: top right;
    animation: 2s ease-in 0s forwards zoom;
}

.popover-body.show .animated-image {
    max-width: 100%;
}

.popover-body {
    overflow: hidden;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 20px;
    text-align: center;
    align-content: center;
    background-color: #FFFFFF;
}