/* Full Screen Loader */

.background {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#687e99+1,ffffff+100 */
    background: rgb(104,126,153); /* Old browsers */
    background: -moz-linear-gradient(45deg, rgba(104,126,153,1) 1%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, rgba(104,126,153,1) 1%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg, rgba(104,126,153,1) 1%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#687e99', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */        z-index: -1;
    
}

#Loader {
    position: fixed;
    top: 50%;
    left: 50%;
    height: 100%;
    width: 100%;
    transform: translate(-50%, -50%);
    background-color: rgba(255,255,255,0.9);
    display: none;
    z-index: 9000;
}

#Dots {
    transform: translate(-50%, -50%);
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}









/* Popup */
#popup {
    position: fixed;
    bottom: 0px;
    display: none;
    width: 100vw;
    text-align: center;
    z-index: 10000;
    background-color: rgba(204, 212, 221, 1);
    padding: 5px;
}

.popupAlert {
    display: inline-block;

}

#PopupTextEnter {
    flex-basis: auto !important;
}

.alertpop {
    display: inline-block;
    padding: 10px;
    border-radius: 8px;
    font-family: "Raleway";
}

.popup-danger {
    background-color: rgba(255, 149, 149, 0.5686274509803921);
}

.popup-alert {
    background-color: rgba(188, 255, 174, 0.5686274509803921);
}

#PopupIcon {
    font-size: 20px;
    display: table;
}






.itt_container {
    background-color: rgba(255, 255, 255, 0.6784313725490196);
    max-width: 1500px;
    margin: auto;
    width: 100%;
    padding-bottom: 20px;
}
.itt_container .itt_header {
    padding: 10px;
    font-size: 18px;
    font-family: "Raleway";
    border-bottom: thin solid lightgray;
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.5215686274509804);
}
.itt_container .itt_subheader {
    font-size: 14px;
    color: #6b6b6b;
}

.itt_input {
    border-radius: 0px;
    background-color: rgba(255, 255, 255, 0.8117647058823529);
}

.table-itt th {
    font-weight: normal;
    font-size: 15px;
    font-family: "Raleway";
    border-top: 0px;
    border-bottom: 0px;
}
.table-itt td {
    font-size: 14px;
    color: rgb(107, 107, 107);
    vertical-align: middle;
}

.itt_button {
    vertical-align: middle;
    font-family: "Raleway";
    font-size: 15px;
    color: black;
    border: thin solid rgb(210, 210, 210);
    padding: 5px;
    border-radius: 2px;
    transition: background-color 0.2s;
}

.copyrightNotice {
    font-size: 12px;
    font-style: italic;
    color: rgb(103, 103, 103);
}

.itt_dropdown_menu {
    background-color: rgba(255, 255, 255, 0.6784313725490196);
    margin: 0px;
    border-radius: 0px;
    font-family: "Raleway";
    font-size: 15px;
    color: black;
    border: 0px;
}

.itt_smallText {
    font-size: 12px;
    font-family: "Raleway";
}
.itt_Text {
    font-size: 15px;
    font-family: "Raleway";
}
.itt_bigText {
    font-size: 20px;
    font-family: "Raleway";
}

.itt_sans {
    font-family: sans-serif;
}

.itt_red {
    color: red;
}

.itt_button:hover {
    cursor: pointer;
}

.b_danger:hover {
    background-color: rgb(255, 191, 191);
}
.b_info:hover {
    background-color: rgb(190, 200, 211);
}
.b_backfill {
    background-color: white;
}
.b_backfilldanger {
    background-color: red;
}
.b_backfillgreen {
    background-color: rgb(187, 247, 187);
}
