
.changeTz
{
    color: #1b49b1;
}
.changeTz:hover
{
    color: #333;
}


#reset_link {
    color: #1b49b1;
    cursor: pointer;
    margin-bottom: 10px;
}
#reset_link:hover {
    color: #333;
}

.loader-wrapper {
    display: flex;
    padding-left:20px;
    justify-content: left;
    font-size: 20px;
}
.loader {
    border: 5px solid skyblue;
    border-top: 5px solid deepskyblue;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    /*      position: relative; */
    bottom: 20px;
    left: 20px;
}
@keyframes spin{
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg);}
    100% { -webkit-transform: rotate(360deg);}
}

.modal-loader {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 20px;
    padding: 20px;
    border: 1px solid #888;
    width: 60%;
    left: 20%;
    top: 30%;
}
