﻿/*#button {
    display: block;
    margin: 20px auto;
    padding: 10px 30px;
    background-color: #eee;
    border: solid #ccc 1px;
    cursor: pointer;
}*/

#spinneroverlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0,0,0,0.6);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

.is-hide {
    display: none;
}





.popupmodal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    /*padding-top: 100px;*/ /* Location of the box */
    padding-top: 180px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.popupmodal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 4px;
    border: 1px solid #888;
    width: 30%;
}

/* The Close Button */
.modalpopupclose {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    
    .modalpopupclose:hover,
    .modalpopupclose:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.closemodalbutton {
    height: 35px;
    width: 15%;
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}

.infomodalbutton {
    height: 35px;
    width: 15%;
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da;
}

.modalpopuphdrdiv {
    background-color: #dddddd;
    height: 40px;
    width: 100%;
    margin-bottom: 10px
}
