﻿/* 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. */

/* Wrapping element 
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/*input {
    background-color: rgba(0,0,0,0.1) !important;
    border: 1px solid rgb(176, 196, 222) !important;
    border: 1px solid rgba(176, 196, 222, 0.5) !important;
    color: #ffffff !important;
}

    input:read-only {
        background: rgba(255,255,255,0.2) !important;
        color: rgb(255,255,255) !important;
    }

select {
    background-color: rgba(0,0,0,0.1) !important;
    border: 1px solid rgb(176, 196, 222) !important;
    border: 1px solid rgba(176, 196, 222, 0.5) !important;
    color: #ffffff !important;
}

    select:disabled {
        background: rgba(255,255,255,0.2) !important;
        color: rgb(255,255,255) !important;
    }


option {
    background-color: rgba(0,0,0,0.1) !important;
    border: 1px solid rgb(176, 196, 222) !important;
    border: 1px solid rgba(176, 196, 222, 0.5) !important;
    color: rgb(0,0,0) !important;
}

input[type="checkbox"] {
    background-color: rgb(0,0,0) !important;
    background-color: rgba(0,0,0,0.1) !important;
    color: #00ff21 !important;
}*/

/* Required Fields */

.label-required:after {
    content: ' *';
    color: #fe0d00;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

@font-face {
    font-family: Provicali;
    src: url("../fonts/Provicali.otf") format("opentype");
}

@font-face {
    font-family: Poppins;
    src: url("../fonts/Poppins-Regular.otf") format("opentype");
}

.provicali {
    font-family: Provicali !important;
}

.poppins {
    font-family: Poppins !important;
}


.pc-font-color {
    color: #0050a4 !important;
}

.pc-font-color-semi {
    color: #4674a2 !important;
}

.font-weight-bolder{
    font-weight: bolder;
}

.font-weight-bold {
    font-weight: bold;
}

/* Loader */

#loader {
    display: block;
    position: absolute;
    left: 50%;
    top: 50% !important;
    width: 150px;
    height: 150px;
    margin-top: -75px;
    margin-left: -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #00558C;
    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    z-index: 1001;
    opacity: 0.6;
}

    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #FFCC5B;
        -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
        animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #30C2E3;
        -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
        animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg); /* IE 9 */
        transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */
    }

    100% {
        -webkit-transform: rotate(360deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg); /* IE 9 */
        transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg); /* IE 9 */
        transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */
    }

    100% {
        -webkit-transform: rotate(360deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg); /* IE 9 */
        transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */
    }
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    z-index: 1000;
    -webkit-transform: translateX(0); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(0); /* IE 9 */
    transform: translateX(0); /* Firefox 16+, IE 10+, Opera */
    opacity: 0.3;
}

    #loader-wrapper .loader-section.section-left {
        left: 0;
    }

    #loader-wrapper .loader-section.section-right {
        right: 0;
    }

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(-100%); /* IE 9 */
    transform: translateX(-100%); /* Firefox 16+, IE 10+, Opera */
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(100%); /* IE 9 */
    transform: translateX(100%); /* Firefox 16+, IE 10+, Opera */
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateY(-100%); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateY(-100%); /* IE 9 */
    transform: translateY(-100%); /* Firefox 16+, IE 10+, Opera */
    -webkit-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1s ease-out;
    display: none;
}

/* FOOTABLE */

.footable-pagination-wrapper > .label-default {
    display: none !important;
}

.footable-pagination-wrapper > .pagination {
    display: inline-block !important;
    padding: 0;
    /* For IE, the outcast */
    zoom: 1;
    *display: inline;
}

    .footable-pagination-wrapper > .pagination > li {
        float: left !important;
        margin-left: .7rem !important;
        margin-right: .7rem !important;
    }

        .footable-pagination-wrapper > .pagination > li > a {
            color: silver !important;
        }

    .footable-pagination-wrapper > .pagination > .active > a {
        font-weight: bold !important;
        color: rgb(100,250,250) !important;
    }

/* CUSTOM */


/* Custom Styles */

.bgNoDesign {
    background-image: url('../images/PAMI_BG.jpg');
    background-size: cover !important;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.bg-trans {
    background-image: url('../images/bg-darky.jpg');
    background-size: cover !important;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.bg-login1 {
    background-image: url('../images/background02_2020-03.jpg');
}

.bg-login2 {
    background-image: url('../images/background04_2020-03.jpg');
}

.bg-login3 {
    background-image: url('../images/background05_2020-03.jpg');
}

.bg-success {
    background-image: url('../images/background03_2020-02.jpg');
    background-size: cover !important;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.pc-top {
    position: fixed;
    z-index: -1;
}

.pc-top1 {
    top: 27%;
    z-index: -1;
}


.logo {
    min-height: 100px;
    background-color: white;
}

.footer-success {
    position: absolute !important;
    background-color: #0050a4 !important;
    bottom: 20px;
    width: 100%;
    min-height: 40px;
}

.white {
    color: #ffffff !important;
}

.d-white {
    color: rgba(255, 255, 255, 0.8);
}

.fix-to-row {
    margin-right: 0px !important;
}

.border-login {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px 8px;
}

.border-survey {
    border: 2px solid #0050a4;
    border-radius: 8px 8px;
}

.bg-white-trans{
    background-color: rgba(255, 255, 255, 0.7);
}

.border-changepassword {
    border: 1px solid rgba(255,255,255, 0.4);
    border-radius: 8px 8px;
}


.radius-left {
    border-top-left-radius: 12px !important;
    border-bottom-left-radius: 12px !important;
    box-shadow: rgb(56,56,56) 4px 4px !important;
}

.radius-right {
    border-top-right-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
    box-shadow: rgb(56,56,56) 4px 4px !important;
}

.radius-btn {
    border-top-left-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
    box-shadow: rgb(56,56,56) 4px 4px !important;
    font-family: Poppins !important;
}

* {
    box-sizing: border-box;
}

.table thead, .table thead tr th {
    border: 1px solid white !important;
}

.table tbody, .table tbody tr td {
    border: 1px solid white !important;
}

.btn-login {
    background-color: #0050a4;
    color: white;
    padding: 8px 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}

    .btn-login:hover {
        opacity: 1;
    }



/* Style the form icons */
.icon {
    padding: 15px;
    background: white;
    color: gray;
    min-width: 60px;
    text-align: center;
}

/* Style the input container */
.input-container {
    display: flex;
    width: 100%;
    margin-bottom: 15px;
}

/* Style the input fields */
.input-field {
    width: 100%;
    padding-left: 20px !important;
    outline: none;
    background-color: white !important;
    border: white !important;
    color: #505050 !important;
    font-weight: 400 !important;
    font-family: Poppins !important;
}

    .input-field:focus {
        border: 2px solid dodgerblue;
    }

    .input-field::placeholder {
        color: #A9A9A9 !important;
        font-family: Poppins !important;
        padding-left: 0px !important;
    }


/* DRAG AND DROP */

.files input {
    outline: 2px dashed #92b0b3;
    outline-offset: -10px;
    -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
    transition: outline-offset .15s ease-in-out, background-color .15s linear;
    padding: 120px 0px 85px 35%;
    text-align: center !important;
    margin: 0;
    width: 100% !important;
}

    .files input:focus {
        outline: 2px dashed #92b0b3;
        outline-offset: -10px;
        -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
        transition: outline-offset .15s ease-in-out, background-color .15s linear;
        border: 1px solid #92b0b3;
    }

.files {
    position: relative
}

    .files:after {
        pointer-events: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 50px;
        right: 0;
        height: 56px;
        content: "";
        background-image: url(https://image.flaticon.com/icons/png/128/109/109612.png);
        display: block;
        margin: 0 auto;
        background-size: 100%;
        background-repeat: no-repeat;
    }

.color input {
    background-color: #f1f1f1;
}

.content-registration {
    padding-left: 120px;
    padding-right: 120px;
    margin-top: -35px;
}

.text-danger {
    color: #FF8C00 !important;
}

.data-privacy {
    font-size: 0.9rem;
}

.txtSuccess {
    font-size: 4rem;
}

.txtCheck {
    font-size: 5rem;
    padding-top: 10px;
}

.opacity-low {
    opacity: 0.9;
}

.para-message {
    font-size: 1.6rem;
    font-family: Poppins;
    margin-top: 8px;
}

.files:before {
    position: absolute;
    bottom: 10px;
    left: 0;
    pointer-events: none;
    width: 100%;
    right: 0;
    height: 57px;
    content: " or drag it here. ";
    display: block;
    margin: 0 auto;
    color: #2ea591;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
}

.navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show > .nav-link {
    color: #fff !important;
}

.success-message {
    margin-top: 150px;
}

.dropdown-backdrop {
    position: static;
}

/*.hideImg {
    display: none !important;
}*/

.hasDateIcon {
    background-color: white !important;
    background: url('../images/calender.png') no-repeat right 5px center;
}

.pacific-cross-color {
    background-color: #043b74 !important;
}

