.blackColor{
    color: black;
}
/*#loading{*/
/*    background-color: rgba(209, 209, 209, 0.49);*/
/*    position:fixed;*/
/*    top:0px;*/
/*    bottom:0px;*/
/*    left:0px;*/
/*    right:0px;*/
/*    width:100%;*/
/*    z-index:10000;*/
/*    display: none;*/
/*}*/

/*.loading_div{*/
/*    width: 300px;*/
/*    height: 300px;*/
/*    position:absolute;*/
/*    top:0px;*/
/*    bottom:0px;*/
/*    left:0px;*/
/*    right:0px;*/
/*    margin:auto;*/
/*    border-radius: 10%;*/
/*    text-align:center;*/
/*}*/
/*.loading_div img{*/
/*    margin: 35px auto;*/
/*    !* margin: auto; *!*/
/*    !* width:120px; *!*/
/*    display:block;*/
/*}*/

#loading{
    background-color: rgba(209, 209, 209, 0.49);
    position:fixed;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    width:100%;
    z-index:10000;
    display: none;
}
.loading_div{
    width: 190px;
    height: 170px;
    position:absolute;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    margin:auto;
    background: #ffffff8c;
    text-align:center;
    border-radius: 20px;
}
.loading_div img{
    margin: auto;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    width: 65%;
    height: 75%;
    display:block;
}
.spinner{
    width:90px;
    margin:auto;
    text-align:center;
}
.spinner div{
    width:15px;
    height:15px;
    background-color: #17B1A5;
    border-radius:100%;
    -webkit-border-radius:100%;
    display: inline-block;
    animation: spinner 1.4s infinite;
}
.spinner .b1{
    animation-delay: -0.32s;
    -webkit-animation-delay: -0.32s;
}
.spinner .b2{
    animation-delay: -0.16s;
    -webkit-animation-delay: -0.16s;
}

.displayNone{
    display: none !important;
}

.displayBlock{
    display: block !important;
}

@keyframes spinner {
    0% {transform: scale(0)}
    40% {transform: scale(1)}
    100% {transform: scale(0)}
}
@-webkit-keyframes spinner {
    0% {-webkit-transform: scale(0)}
    40% {-webkit-transform: scale(1)}
    100% {-webkit-transform: scale(0)}
}

