﻿/* 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. */

.mainContent {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}

::-webkit-scrollbar-thumb {
    background: #a6a6a6;
}

html {
    font-size: 13px;
}

body {
    font-family: Roboto;
}

.navbar {
    background: #080441;
    color: #fff;
    padding: 0.5rem;
}

@font-face {
    font-family: Montserrat-Bold;
    src: url('../fonts/Montserrat-Bold.ttf');
}

.subHeading {
    font-size: 25px;
    font-family: Montserrat-Bold;
    font-weight: 900;
    margin: 0;
}

.footerTitle {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: Montserrat-Bold;
}

.card {
    background: #e7e7e769;
    border: 1px solid #d3d3d3;
}

.btn-primary {
    background-color: #ff4A65 !important;
    border: none !important;
    background-image: linear-gradient(139deg, #ff4A65 33%, #fc7c6b 98%) !important;
    height: 40px;
    font-weight: bold;
    width: 100%;
    font-size: 1.1rem;
}

    .btn-primary:hover {
        background-color: #ff4A65 !important;
        border: none !important;
        background-image: linear-gradient(139deg, #fc7c6b 33%, #ff4a65 98%) !important;
    }

    .btn-primary.focus, .btn-primary:focus {
        box-shadow: none !important;
    }

.swal2-styled.swal2-confirm {
    background-color: #ff4A65 !important;
    border: none !important;
    background-image: linear-gradient(139deg, #ff4a65 33%, #fc7c6b 98%) !important;
}

    .swal2-styled.swal2-confirm:hover {
        background-color: #ff4A65 !important;
        border: none !important;
        background-image: linear-gradient(139deg, #fc7c6b 33%, #ff4a65 98%) !important;
    }

    .swal2-styled.swal2-confirm:focus {
        box-shadow: none !important;
    }

.form-control{
    height: 40px;
    font-size: 1.3rem;
}

.form-control:focus {
    border-color: #003448;
    box-shadow: none;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    color: #ff4A65;
}

    a:hover {
        color: #ff4A65;
    }

.footer-content {
    background: #080441 !important;
    color: #fff !important;
    line-height: 29px;
    text-align: justify;
}

    .footer-content .row {
        padding: 12px 0px 12px 0px;
    }

.contactDetails {
    color: #fff;
    font-weight: 600;
}

    .contactDetails:hover {
        color: #ff4A65;
        font-weight: 600;
    }

p {
    margin: 0;
}

.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;
}

.loading .textBoxSkeleton {
    background-color: #e9ecef;
    background: linear-gradient(100deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, .5) 50%, rgba(255, 255, 255, 0) 60%) #e9ecef;
    background-size: 200% 100%;
    background-position-x: 180%;
    animation: 1s loading ease-in-out infinite;
}

@keyframes loading {
    to {
        background-position-x: -20%;
    }
}

.loading .textBoxSkeleton {
    min-height: 40px;
    border-radius: 4px;
}



@media (max-width: 768px) {
    html {
        font-size: 13px;
    }

    .customeHeader {
        justify-content: center !important;
    }

    .subHeading {
        font-size: 20px;
    }

    .navbar-brand {
        text-align: center;
    }

    .footer-content {
        text-align: initial;
        line-height: 29px;
    }

    .swal2-container.swal2-center > .swal2-popup{
        width: 80%;
    }
}