﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

a {
    color: rgba(17, 122, 139);
}
.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 99%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    /* Set the fixed height of the footer here */
    height: 60px;
    line-height: 60px; /* Vertically center the text there */
}

.imageThumbnail {
    height: 250px;
    width: auto;
    padding: .25rem;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
}

.nav-item {
    padding: 0 5px 0 5px !important;
}

/*Loader CSS*/

.loader-wrapper {
    width: 100%;
    height: 100vh;
    max-height: 99vh;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(17, 122, 139, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    border: 4px solid #Fff;
    animation: loader 2s infinite ease;
}

.loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #fff;
    animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(180deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-inner {
    0% {
        height: 0%;
    }

    25% {
        height: 0%;
    }

    50% {
        height: 100%;
    }

    75% {
        height: 100%;
    }

    100% {
        height: 0%;
    }
}

.paid {
    background-color: rgba(17, 122, 139, 0.6);
    color: white;
    font-size: 20px;
    font-weight: 500;
    padding: 5px 15px;
    position: absolute;
    top: 0;
    border-bottom-right-radius: 100%;
}

.paid_small {
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 2px 10px;
    position: absolute;
    bottom: 0px;
    overflow: hidden;
    background-color: rgba(17, 122, 139, 0.8);
}

body.loader-wrapper {
    height: 99vh;
    overflow-y: hidden;
}

.cursor-pointer{
    cursor:pointer;
}