html {
    background-color: #f9fafb;
}

*::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.2);
}

*:-moz-placeholder {
    /* FF 4-18 */
    color: rgba(0, 0, 0, 0.2);
}

*::-moz-placeholder {
    /* FF 19+ */
    color: rgba(0, 0, 0, 0.2);
}

*:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(0, 0, 0, 0.2);
}


/**
    Loader
*/

#overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

#loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #1d7878;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 10%;
    left: 0%;
    right: 0%;
    margin-left: auto;
    margin-right: auto;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/** 
    Common
*/

#container {
    height: 100%;
    width: 100%;
}


/**
    Search wrapper
*/

#searchWrapper #myDistrictWrapper {
    display: none;
}

#searchWrapper {
    background-color: #ffffff;
    box-shadow: 4px 0px 4px 0 rgba(0, 0, 0, 0.1);
    padding: 20px;
    box-sizing: border-box;
    width: 400px;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    overflow-y: auto;
    z-index: 500;
}

#searchWrapper h2 {
    font-family: 'Roboto Slab';
    font-size: 20px;
    color: #000000;
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 15px;
}

#searchWrapper .logo_old {
    background-image: url('../img/logo-white.svg');
    background-repeat: no-repeat;
    width: 300px;
    height: 58px;
    margin: auto;
}

#searchWrapper .logo {
    background-image: url('../img/logo-kub-ng.svg');
    background-repeat: no-repeat;
    width: 117px;
    height: 58px;
    margin: auto;
}

#searchWrapper label {
    font-family: 'Lato';
    font-size: 14px;
    font-weight: 900;
    color: #1d7878;
    margin-bottom: 15px;
    display: block;
}

#searchWrapper .row {
    overflow: hidden;
    width: 100%;
    margin-top: 14px;
}

#searchWrapper .row .column {
    width: 50%;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

#searchWrapper .row .column-full {
    width: 100%;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}
#searchWrapper .button-row {
    text-align: center;
    margin-top: 30px;
}

#searchWrapper .form-group {
    margin-top: 35px;
    overflow: visible;
    display: inline-block;
}

#searchWrapper input {
    font-family: 'Lato';
    font-size: 18px;
    color: rgba(0, 0, 0, 0.9);
    border: none;
    box-shadow: none;
    border-radius: 0px;
    padding: 0px;
    width: 100%;
}

#searchWrapper input:focus {
    border: none;
    outline: 0;
    box-shadow: none;
}

#searchWrapper button {
    margin: auto;
    background-color: #2bb64d;
    border-radius: 40px;
    font-family: 'Roboto Slab';
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    height: 45px;
    padding-left: 30px;
    padding-right: 30px;
    display: inline-block;
    margin-bottom: 0;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    line-height: 1.42857;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#searchWrapper button:focus {
    outline: none;
}

#searchWrapper button:hover {
    color: #ffffff;
}

#searchWrapper .dropdown {
    border-radius: 0;
}

#searchWrapper .divider {
    border-bottom: 1px solid #c5c5c5;
    margin-top: 5px;
    content: '';
    width: 100%;
    margin: 5px 0px 0px 0px;
}

#searchWrapper .dropdown select,
select:focus {
    border-left: none;
    border-right: none;
    border-top: none;
    font-family: 'Lato';
    font-size: 18px;
    color: rgba(0, 0, 0, 0.9);
    border: none;
    outline: 0;
    box-shadow: none;
    padding: 0px;
    box-shadow: inset 0px 0px 0px;
    width: 100%;
}

#searchWrapper .chosen-single, .chosen-drop {
    background: none;
    font-family: 'Lato';
    font-size: 18px;
    color: rgba(0, 0, 0, 0.9);
    border: none;
    outline: 0;
    box-shadow: none;
    padding: 0px;
    box-shadow: inset 0px 0px 0px;
    width: 100%;
    border-radius: 0px;
}

.center {
    text-align: center;
}

.exportWrapper,
.summaryWrapper {
    margin-top: 50px;
}

#searchWrapper .checkbox label {
    font-family: 'Lato';
    font-size: 18px;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 0px;
    border: none;
    box-shadow: none;
    border-radius: 0px;
    padding: 0px;
    width: auto;
    font-weight: 400;
}

#searchWrapper .checkbox input[type="checkbox"] {
    width: auto;
    vertical-align: middle;
    position: relative;
    bottom: 1px;
}