.logo img{
    max-width: 100px;
}
.ck-content {
    height: 400px;
}


    /* input type= file */
    .button-wrapper {
        position: relative;
        width: 150px;
        text-align: center;
        cursor: pointer;
    }

    .button-wrapper span.label {
        position: relative;
        z-index: 0;
        display: inline-block;
        /*width: 100%;*/
        background: #00bfff;
        cursor: pointer;
        color: #fff;
        padding: 5px 10px;
        font-size: 12px;
    }

.upload-box {
    display: inline-block;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 50px;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}


/*Responsive Table*/

.responsive-table .table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

    .responsive-table .table td {
        padding: 7px 10px;
        border: 1px solid;
    }

@media screen and (max-width: 600px) {
    .responsive thead {
        visibility: hidden;
        height: 0;
        position: absolute;
    }

    .responsive tr {
        display: block;
        margin-bottom: .625em;
    }

    .responsive td {
        border: 1px solid;
        border-bottom: none;
        display: block;
        font-size: .8em;
        text-align: right;
    }

        .responsive td::before {
            content: attr(data-label);
            float: left;
            font-weight: bold;
            text-transform: uppercase;
        }

        .responsive td:last-child {
            border-bottom: 1px solid;
        }
}



/* loading */
#loader {
    border: 12px solid #f3f3f3;
    border-radius: 50%;
    border-top: 12px solid #444444;
    width: 70px;
    height: 70px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.center {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}



.dot {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    display: inline-block;
}

.account_form input[type=checkbox] {
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

/* loading spinner */
.center-div {
    width: 300px;
    height: 300px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    margin-top: -150px;
}

.spinner {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: Black;
    filter: alpha(opacity=60);
    opacity: 0.6;
    -moz-opacity: 0.8;
}

.loader-spinner {
    margin: auto;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #15a0ec;
    border-bottom: 16px solid #15a0ec;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.inner-div {
    background-color: white;
    border-radius: 15px;
    margin: auto;
    padding: 2%;
    width: 150px;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



/* map css*/

body {
    height: 100vh;
    width: 100vw;
    margin: 0;
}

#map {
    width: 100%;
    height: 50%;
    margin: auto;
    padding: 5px 5px 36px 5px;
    background-color: #d9d9d9;
    border-radius: 5px;
    position: relative;
}

.map-container {
    width: 100%;
    height: 100%;
}

#map-neshan-logo {
    width: 36px;
    height: 36px;
    position: absolute;
    bottom: 0;
    left: 20px;
    z-index: 1000;
    cursor: pointer;
}

    #map-neshan-logo img {
        width: 100%;
    }