#allTimes{
    text-align: center;
}
select::-ms-expand {
    display: none;
}
.defaultOption {
    display: none;
}
.selects{
    background: none;
    cursor: pointer;
}
.texts{
    position :absolute;
    top: 32px;
    left : 20px;
    width: 70px;
    cursor: default;
    z-index: -1;
}
#customValue{
    display: none;
    position :absolute;
    top: 29px;
    left : 40px;
    width: 80px;
    text-align: center;
    font-size: 1.25em;
}
.select2-selection{
    height : 40px!important;
    border-radius: 0px!important;
    vertical-align: middle!important;
    border: 1px solid #aaa!important;
    line-height : 35px!important;
    padding-top: 5px;
}
.select2-container--default .select2-selection--single{
    border: 1px solid!important;
    border-color: #DBDBDB!important;
    box-sizing: border-box!important;
    box-shadow: inset 0 1px 1px #f1f1f1!important;
}
.select2-container--default .select2-selection--single:hover{
    border-color: #a2cab0!important;
}
.select2-container.req_place .select2-default .select2-chosen {
    color:#FFF !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: 3px!important;
}
.select2-selection__placeholder{
    font-family:'Open Sans',Arial,Helvetica,sans-serif!important;
    color: #cfcfcf!important;
    font-style: italic;
}
.defaultSelect{
    display: none;
}
#logout:hover{
    color: gray;
}

#logoimg{
    height: 90%;
}

#addBogobtn{
    height: 40px;
    font-size: 13px;
    padding-right: 15px;
    line-height: 25px;
}
.nav-text{
    margin-bottom: 10px;
}
#userIcon{
   color : white;
}
#addForm{
   /* display: none;*/
    margin-bottom: 30px;
}
#tableContent{
    margin-top: 30px;
}
.contact:hover{
    color: gray;
}
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: #ECF0F1;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;

    border: 3px solid transparent;
    border-top-color: rgba(227, 0, 0, 0.98);
    border-radius: 50%;
    z-index: 1500;

    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 3px solid transparent;
    border-top-color: #003c8b;
    border-radius: 50%;

    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid transparent;
    border-top-color: #e3e261;
    border-radius: 50%;

    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
@-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: 65px;
    width: 51%;
    height: 100%;
    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 */
}

#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;
}
.ModuleContainer
{
    height: 100%;
}
.header-slogan
{
    font-size: 18px;
    margin-top: -15px;
    font-weight: 100;
}
@media screen and (max-device-width: 640px){
    .header-slogan
    {
        font-size: 12px;
        margin-top: -15px;
        font-weight: 100;
    }
    h3
    {
        font-size: 1em;
    }
}