code {
    font-size: 0.9rem;
}

/* Style the Image Used to Trigger the Modal */
.images img {
    cursor: pointer;
}

/*img:hover {
    opacity: 0.7;
}*/

/* The Modal (background) */
#image-viewer {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

.image-modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.image-modal-content {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

#image-viewer .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

    #image-viewer .close:hover,
    #image-viewer .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

/* Click to copy */
.clickToCopy {
    cursor: pointer;
}

.hiddenElement {
    display: none !important;
}

.alert button.close {
    border: 0;
    font-size: x-large;
    background-color: transparent;
    float: right;
    padding: unset;
}

.clr-field {
    width: 100%;
}

.choices__placeholder {
    border: 1px indianred;
}

/* Spinner */

.spinner-background {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
    position: fixed;
    top: 0;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.5);
}

.spinner {
    position: relative;
    width: 66.6px;
    height: 66.6px;
    perspective: 190.2px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

    .spinner div {
        width: 100%;
        height: 100%;
        background-size: 400% 400%;
        background: linear-gradient(-120deg, rgba(34,193,195,1), rgba(253,187,45,1));
        position: absolute;
        left: 50%;
        transform-origin: left;
        animation: spinner-16s03x 2.4s infinite;
    }

        .spinner div:nth-child(1) {
            animation-delay: 0.18s;
        }

        .spinner div:nth-child(2) {
            animation-delay: 0.36s;
        }

        .spinner div:nth-child(3) {
            animation-delay: 0.54s;
        }

        .spinner div:nth-child(4) {
            animation-delay: 0.72s;
        }

        .spinner div:nth-child(5) {
            animation-delay: 0.8999999999999999s;
        }

@keyframes spinner-16s03x {
    0% {
        transform: rotateY(0deg);
        background-position: 0% 50%;
    }

    50%, 80% {
        transform: rotateY(-180deg);
        background-position: 100% 50%;
    }

    90%, 100% {
        opacity: 0;
        transform: rotateY(-180deg);
        background-position: 0% 50%;
    }
}