﻿html, body {
    height: 100%;
    font: 'Source Sans Pro', Helvetica, Arial, sans-serif;
}

/* Header */

.header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 80px;
    background: #050030;
    color: #fff;
}

@media only screen and (max-width: 812px) {
    .header {
        height: 48px;
    }
}

.logo-wrapper {
    height: inherit;
}

    .logo-wrapper img {
        height: inherit;
        width: 400px;
        max-width: 100%;
        object-fit: contain;
    }

.header-content-wrapper div {
    float: left;
    text-align: center;
}

.culture-wrapper {
    overflow: hidden;
    border: 2px #ccc solid;
    border-radius: 7px;
    margin: 22px;
}

.culture-item-wrapper {
    height: 32px;
    padding: 1px 10px;
    background: rgba(255, 255, 255, 0.7);
}

    .culture-item-wrapper.active {
        background: #fff;
    }

    .culture-item-wrapper a {
        color: #fff;
        font-weight: bolder;
    }

        .culture-item-wrapper a:hover {
            color: #fff;
            font-weight: bolder;
            text-decoration: none;
        }

    .culture-item-wrapper.active a {
        color: #000;
    }

.culture-wrapper img {
    height: 30px;
    width: 50px;
    opacity: 0.5;
}

.culture-item-wrapper span {
    position: relative;
    top: 1px;
    right: 3px;
}

.culture-wrapper .active img {
    opacity: 1;
}

/* End of Header */

/* Mobile Header */
.atlas-toggle .icon-bar {
    background: #fff;
}

/* Mobile Header */

/* Filters */

.filter-wrapper {
    position: absolute;
    height: 60px;
    /*width: 100%;
    background: rgba(255, 255, 255, 0.3);*/
    z-index: 9;
    font-size: 28px;
    color: #fff;
    text-transform: uppercase;
}

.filter-title-wrapper, .filter-title-triangle, .filter-items-wrapper {
    display: inline-block;
}

.filter-title-wrapper {
    background: rgba(0, 36, 125, 0.6);
    height: 60px;
    width: 300px;
    text-align: center;
    float: left;
}

    .filter-title-wrapper span {
        font-weight: bolder;
        padding: 10px 115px;
        float: left;
    }

.filter-title-wrapper span  a {
    color: #fff;
    text-decoration: none;
}

.filter-title-triangle {
    content: "";
    width: 0;
    height: 0;
    border-top: 60px solid rgba(0, 36, 125, 0.6);
    border-right: 35px solid transparent;
}

.filter-items-wrapper {
    margin-left: -26px;
}

.filter-item-wrapper-outer {
    transition: all .3s ease;
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    transform: skew(-30deg);
    opacity: 1;
    z-index: 10;
    display: inline-block;
    padding: 10px;
    background: rgba(0, 0, 0, 0.6);
    float: left;
    margin-left: 2px;
}

    .filter-item-wrapper-outer .filter-item-wrapper {
        -webkit-transform: skew(30deg);
        -moz-transform: skew(30deg);
        -o-transform: skew(30deg);
        transform: skew(30deg);
    }

.filter-item-wrapper a {
    margin-left: 50px;
    padding: 7px 12px;
    color: #fff;
}

    .filter-item-wrapper a:hover {
        text-decoration: none;
        color: #ccc;
    }

.filter-item-wrapper.active a {
    font-weight: bold;
}

.filter-item-badge {
    margin-left: 20px;
    background: -webkit-radial-gradient( 1px -11px, circle, #423ecc 8%, #0054c3 26px );
    background-color: red;
    border: 2px solid white;
    border-radius: 10px;
    padding: 10px;
    opacity: 0;
}

.active .filter-item-badge {
    opacity: 1;
}

.filter-list-wrapper {
    position: absolute;
    width: 400px;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9;
    color: #000;
    top: 85px;
    left: 25px;
    overflow-y: auto;
    height: calc(100vh - 239px);
}

.filter-sublist-wrapper {
    border-top: 2px solid black;
}

.filter-list-item {
    margin: 10px;
    position: relative;
}


.filter-list-subitem {
    margin-top: 10px;
    margin-left: 10px;
    position: relative;
}

.filter-list-item label {
    font-size: 16px;
}

.filter-list-subitem label {
    font-size: 12px;
}

.filter-list-item label img {
    height: 25px;
    width: 16px;
    margin-right: 10px;
}

input[type="checkbox"] {
    width: 0;
    height: 0;
    position: absolute;
    visibility: hidden;
}

    input[type="checkbox"] ~ label {
        display: block;
    }

        input[type="checkbox"] ~ label:before {
            content: "";
            display: block;
            position: absolute;
            top: 0;
            right: 0;
            width: 25px;
            height: 25px;
            background-color: #fff;
            border: 1px solid #2A6FB7;
        }

        input[type="checkbox"] ~ label:after {
            position: absolute;
            top: 3px;
            right: 0;
            color: #2A6FB7;
            content: "\f00c";
            display: block;
            width: 25px;
            height: 25px;
            opacity: 0;
            visibility: hidden;
            font: normal normal normal 10px/1 FontAwesome;
            line-height: 20px;
            text-align: center;
            font-size: inherit;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            -webkit-transition: opacity 250ms linear;
            -moz-transition: opacity 250ms linear;
            -o-transition: opacity 250ms linear;
            -ms-transition: opacity 250ms linear;
            transition: opacity 250ms linear;
        }

    input[type="checkbox"]:checked ~ label:after {
        opacity: 1;
        visibility: visible;
    }
    button.atlas-close {
        display: none;
    }

/* End of Filters*/
/* Map */
.map-wrapper {
    position: relative;
    height: calc(100vh - 80px);
}

@media only screen and (max-width: 812px) {
    .map-wrapper {
        height: calc(100vh - 48px);
    }
}

.map-wrapper #map {
    height: inherit;
}

/* End of Map */

/* Bottom Logo*/
.bottom-logo-wrapper {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 20px 0;
}
.bottom-logo-wrapper img {
    width: 300px;
}
/* Bottom Logo*/

/* Footer */
.footer-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}

.footer-message {
    display: none;
    padding: 20px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid white;
}

    .footer-message h3 {
        font-weight: bold;
        margin-top: 0;
    }

    .footer-message span {
        font-size: 18px;
        margin-bottom: 7px;
        display: block;
    }

    .footer-message p {
        font-weight: bold;
    }


    .footer-message .close {
        opacity: 1;
    }

        .footer-message .close span {
            font-size: 30px;
        }

/* End of Footer */

/* Incident modal */
@media only screen and (min-width: 812px) {
    .main-modal {
        width: 900px;
    }
}

.modal-incident-head, .modal-incident-footer {
    background-color: #fff;
    color: #050030;
}

.modal-incident-footer {
    margin-top: 0;
}

.modal-incident-body {
    background-color: #eee;
}

.modal-incidents-wrapper, .modal-victims-wrapper, .modal-incident-wrapper, .modal-victim-wrapper, .modal-microlocation-wrapper {
    border-radius: 3px;
    margin-top: 10px;
    /* border-bottom: 1px solid #050030; */
    padding: 5px;
    background-color: #fff;
}

.modal-details-btn {
    float: right;
    padding: 7px 12px;
    margin-right: 15px;
    border: 1px solid;
    text-decoration: none;
    background-color: #6495ed;
    color: #fff;
}

    .modal-details-btn:hover {
        text-decoration: none;
        color: #ccc;
    }

.modal-victims-btn {
    color: red;
}

    .modal-victims-btn:hover {
        color: red;
    }

.modal-incident-wrapper .title {
    padding: 15px 0;
    font-size: 18px;
}

.modal-incident-wrapper .date {
    font-size: 12px;
    margin-left: 5px;
}

.modal-incident-wrapper .description {
    margin: 15px 0;
}

.fa-gender {
    float: right;
    padding: 3px;
    font-size: 18px;
}

/* End of Incident modal */

/* Google map UI components */

.switch-map-view {
    position: absolute;
    bottom: 25px;
    right: 25px;
    height: 80px;
    width: 80px;
    z-index: 9;
    background: #fff;
}

    .switch-map-view img {
        height: inherit;
        width: inherit;
        cursor: pointer;
    }

.map-search-places {
    margin: 8px 20px;
    font-size: 15px;
    font-weight: 300;
    padding: 10px;
    text-overflow: ellipsis;
    width: 300px;
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(0, 0, 0, 0.6);
    color: #fff;
}

.map-search-places::placeholder {
    color: #fff;
}

.pac-container, .pac-item, .pac-item-query {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(0, 0, 0, 0.6);
    color: #fff;
}

    .pac-item:hover {
        background: #333;
        border-color: rgba(0, 0, 0, 0.6);
        color: #fff;
    }
    
.map-zoom-in {
    position: absolute;
    bottom: 70px;
    right: 115px;
    height: 35px;
    width: 35px;
    z-index: 9;
    background: #fff;
    cursor: pointer;
}

.map-zoom-out {
    position: absolute;
    bottom: 25px;
    right: 115px;
    height: 35px;
    width: 35px;
    z-index: 9;
    background: #fff;
    cursor: pointer;
}

    .map-zoom-in .fa, .map-zoom-out .fa {
        padding: 10px;
        font-size: 18px;
    }

/* End of Google map UI components */

/* Dossier */

.profile-thumb {
    margin: 10px;
    width: 100%;
}

.detail-row {
    margin: 10px;
}

    .detail-row label {
        font-weight: lighter;
    }

@media only screen and (min-width: 812px) {
    .detail-row label {
        float: right;
    }
}

.detail-row span, .detail-row p {
    font-weight: bold;
}

.idc-tabs li a {
    color: #000;
}

.idc-tabs li.active {
    font-weight: bold;
}

.idc-tab {
    margin: 10px;
}

    .idc-tab label {
        float: left;
    }

.carousel-inner > .idc-img-wrapper {
    text-align: center;
}

    .carousel-inner > .idc-img-wrapper > img, .carousel-inner > .idc-img-wrapper > a > img {
        height: 500px;
    }

.video-wrapper {
    text-align: center;
}

    .video-wrapper object {
        width: 600px;
        height: 300px;
    }

/* End of Dossier */
/* Loader */
.loader-background {
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 99;
}

.loader-wrapper {
    position: fixed;
    top: calc(50%);
    left: calc(50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 100;
}

/*.loader {
    position: absolute;
    opacity: .7;
}

    .loader circle {
        -webkit-animation: draw 4s infinite ease-in-out;
        animation: draw 4s infinite ease-in-out;
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

.loader-2 circle,
.loader-6 circle {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.loader-7 circle {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.loader-4 circle,
.loader-8 circle {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.loader-3 {
    left: -150px;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.loader-6,
.loader-7,
.loader-8 {
    left: -150px;
    -webkit-transform: rotateX(180deg) rotateY(180deg);
    transform: rotateX(180deg) rotateY(180deg);
}

.loader-5 circle {
    opacity: .2;
}

@-webkit-keyframes draw {
    50% {
        stroke-dashoffset: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}

@keyframes draw {
    50% {
        stroke-dashoffset: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}*/

/* End of Loader */

/* Forms */

.atlas-form {
}

    .atlas-form .form-control {
        width: 500px;
    }

    .atlas-form .form-control {
    }


    .atlas-form select {
        width: 500px;
        height: 34px;
        padding: 6px 12px;
        font-size: 14px;
        line-height: 1.428571429;
        color: #555;
        vertical-align: middle;
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 4px;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
        box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
        -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
        transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    }

    .atlas-form option {
        width: 500px;
    }

.login-form .checkbox {
    margin-bottom: 20px;
    padding-top: 4px;
}

/* End of Forms */

/* Search */

.search-wrapper {
    margin: 27px 0px;
    font-size: 20px;
}

    .search-wrapper i {
        padding: 3px;
    }

    .search-wrapper a {
        color: #fff;
    }

    .search-wrapper .search-input {
        width: 0;
        transition: width 1s;
    }

.search-content-wraper .tab-content {
    padding: 20px;
    padding-bottom: 0;
    border-left: 1px solid #ddd;
}

.search-content-wraper .pagination {
    margin: 0;
    margin-top: 20px;
    margin-left: -21px;
}

.search-content-wraper .search-item {
    margin-bottom: 5px
}

.search-content-wraper .search-item a {
    margin-bottom: 5px;
    color: #000;
    text-decoration: none;
}

    .search-content-wraper .search-item:hover {
        zoom: 120%; /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    }

.search-content-wraper {
    margin: 0 50px;
}

.page-heading-search {
    margin-bottom: 30px;
}

.page-heading-search h2 {
    border-bottom: 1px solid #b2b2b3;
    padding-bottom: 10px;
}

.search-form {
    display: flex;
    margin-bottom: 20px;
}

.search-form .search-input-wrapper input {
    height: 34px;
    width: 600px;
    padding: 5px;
    margin-right: 50px;
}
@media only screen and (max-width: 812px) {

    .search-content-wraper {
        margin: 0 10px;
    }

    .search-form {
        display: flex;
        flex-direction: column;
    }

    .search-form .search-input-wrapper input {
        width: 100%;
        margin-right: 0;
    } 

    .search-form .search-button-wrapper {
        margin-top: 10px;
    }

        .search-form .search-button-wrapper .btn {
            width: 100%;
        }
}

.search-form .search-button-wrapper button {
    width: 150px;
}

/* End of Search */

.home-wrapper {
    margin: 0 240px;
    margin-bottom: 100px;
}

/* Downloads */
.dropdowns-wrapper {
    margin: 20px;
}

.dropdown-item-wrapper {
    padding-bottom: 20px;
}

.dropdown-item-wrapper a {
    color: #000;
    text-decoration: none;
}

.dropdown-item-wrapper:hover {
    background: #c1c3c2;
}

.dropdown-item-wrapper .title {
    text-align: center;
    font-size: 25px;
}

.dropdown-item-wrapper img {
    width: 100%;
}
/* End of Downloads */

/* Admin */
.admin-wrapper .content {
    padding: 0 100px;
}

.user-wrapper {
    margin: 13px;
    padding: 10px;
}

.user-wrapper form {
    display: inline;
}

.user-wrapper a {
    margin-left: 30px;
}


/* Utils */
.m-r-20 {
    margin-right: 20px !important;
}

.m-b-50 {
    margin-bottom: 50px !important;
}

.m-x-25 {
    margin: 0 25% !important;
}

.p-r-15 {
    padding-right: 15px !important;
}

.full-width {
    width: 100% !important; 
}

.cursor-pointer {
    cursor: pointer;
}
/*HOVER SLIDE EFFECT*/
.menu-list-wrapper {
    position: absolute;
    width: 250px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9;
    color: #000;
    top: 85px;
    left: 25px;
    overflow-y: auto;
}

    .menu-list-wrapper ul {
        padding: 0;
        margin: 0;
        list-style-type: none;
        border-top: solid 1px #3C3735;
    }

        .menu-list-wrapper ul li {
            border-bottom: solid 1px #3C3735;
        }

            .menu-list-wrapper ul li a {
                text-decoration: none;
                color: #DFDBD9;
                padding: 1.1em 0;
                font: 400 1.125em 'Source Sans Pro', Helvetica, Arial, sans-serif;
                text-align: center;
                text-transform: lowercase;
            }
            .menu-list-wrapper ul li a:hover {
                color: #fff;
            }

.menu-item-badge {
    position: absolute;
    border-radius: 50%;
    padding: 5px;
    top: 12px;
    right: 15px;
    margin-left: 5px;
    background: #ffbf00;
    color: #000;
    font-weight: bold;
}

.list-hover-slide li {
    position: relative;
    overflow: hidden;
}

    .list-hover-slide li a {
        display: block;
        position: relative;
        z-index: 1;
        transition: .35s ease color;
    }

.list-hover-slide a:before {
    content: '';
    display: block;
    z-index: -1;
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    border-right: solid 5px #DF4500;
    background: #35302D;
    transition: .35s ease left;
}

.list-hover-slide a.is-current, .list-hover-slide a:hover:before {
    left: 0;
}
@media only screen and (max-width: 812px) {
    .filter-wrapper {
        background: none;
    }

    .filter-item-wrapper-outer {
        -webkit-transform: none;
        -moz-transform: none;
        -o-transform: none;
        transform: none;
        width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

        .filter-item-wrapper-outer .filter-item-wrapper {
            -webkit-transform: none;
            -moz-transform: none;
            -o-transform: none;
            transform: none;
        }

    .filter-list-wrapper {
        width: calc(100% - 50px);
    }

    button.atlas-close {
        position: absolute;
        display: inline-block;
        top: 25px;
        right: 25px;
        opacity: 1;
        color: #fff;
        z-index: 9;
        height: 50px;
        width: 50px;
        border: 5px solid #ff7070;
        background: transparent;
        border-radius: 50px;
        color: #ff7070;
        font-size: 28px;
    }

    .filter-title-wrapper {
        width: 100%;
    }

    .menu-list-wrapper {
        width: calc(100% - 50px);
        background: rgba(0, 0, 0, 1);
    }

    .filter-title-wrapper span {
        padding: 10px 0;
        margin-left: 50px;
    }

    .filter-title-triangle {
        display: none;
    }

    .home-wrapper {
        margin: 0 10px;
        margin-bottom: 50px;
    }
}

.form-flex {
    display: flex;
    flex-wrap: wrap;
}

.form-item {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
}

.form-item label {
    margin-left: 5px;
}

.form-item input, .form-item select, .form-item textarea {
    width: calc(100% - 20px);
}

.form-item .checkbox {
    position: relative;
    height: 61px;
    padding-left: 0; 
    margin-top: 0; 
    margin-bottom: 0;
}

.form-item .checkbox label {
    position: relative;
    height: 61px;
    font-weight: bold;
}

.form-item .checkbox label::before, .form-item .checkbox label::after {
    top: 30px;
    left: 0;
    right: unset;
    line-height: 25px;
}

.form-flex .input-validation-error {
    border-color: #f14f4f;
}

.admin-search-input {
    width: 400px;
    display: inline-block;
}

.header-user-wrapper {
    display: flex;
}

.languages-wrapper {
    position: relative;
    width: 50px;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 7px;
    margin-right: 30px;
}

.language-dropdown {
    position: absolute;
    top: 80px;
    right: 0;
    background: #f5f5f6;
    z-index: 10;
}

.language-item {
    width: 200px;
    height: 40px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ebebeb;
    cursor: pointer;
}

    .language-item.active, .language-item:hover {
        background: rgba(235, 235, 235, 0.9);
        color: #737881;
    }

    .language-item .lang-img-wrapper {
        width: 20px;
        margin: 0 10px;
    }

.languages-wrapper img, .language-item .lang-img-wrapper img {
    width: 100%;
}

    .language-item .title {
        color: #8d929a;
    }

.admin-table tr th {
    background: #428bca;
    color: #fff;
    font-weight: normal;
    min-width: 160px;
}

.dashboard-nav {
    padding: 0;
    margin: 0;
    list-style-type: none;
    border-top: solid 1px #ebebec;
    width: 300px;
}

    .dashboard-nav li {
        border-bottom: solid 1px #ebebec;
        background-color: #f7f7f7;
    }

        .dashboard-nav li a {
            text-decoration: none;
            color: #000;
            padding: 1.1em 0;
            font: 400 1.125em 'Source Sans Pro', Helvetica, Arial, sans-serif;
        }

.dashboard-nav li:hover {
    background: #fff;
}

.dashboard-hover-slide li {
    position: relative;
    overflow: hidden;
}

    .dashboard-hover-slide li a {
        display: block;
        position: relative;
        z-index: 1;
        transition: .35s ease color;
    }

.dashboard-hover-slide a:before {
    content: '';
    display: block;
    z-index: -1;
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    border-right: solid 5px #0063df;
    background: #efefef;
    transition: .35s ease left;
}

.dashboard-hover-slide a.is-current, .dashboard-hover-slide a:hover:before {
    left: 0;
}

.admin-wrapper {
    background-color: #f7f7f7;
}

/* Contact Us Form */

.contact-us-wrapper {
    margin: 0 240px;
    display: flex;
}

.contact-us-form {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    width: 100%;
}

    .contact-us-form .contact-us-input-wrapper {
        display: flex;
        flex-direction: column;
        margin: 20px;
    }

    .contact-us-form .contact-us-button-wrapper {
        margin: 0 20px;
        display: flex;
        align-items: center;
    }

        .contact-us-form .contact-us-input-wrapper input, .contact-us-form .contact-us-input-wrapper textarea {
            border: none;
            outline: none;
            border-bottom: 1px solid black;
            display: block;
            width: 100%;
            background: transparent;
            color: #555555;
            line-height: 1.2;
            padding: 10px 0;
        }

            .contact-us-form .contact-us-input-wrapper input {
                width: 250px;
            } 
            
            .contact-us-form .contact-us-input-wrapper textarea {
                overflow: hidden;
                resize: vertical;
            } 
            
        .contact-us-form .contact-us-input-wrapper input.error, .contact-us-form .contact-us-input-wrapper textarea.error {
            border-bottom: 1px solid red;
        }

          

.contact-us-details {
    padding: 20px;
    background: #f9f5f5;
    min-width: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-us-details .title {
    font-size: 15px;
}

.contact-us-details ul {
    padding: 0;
    list-style-type: none;
}

    .contact-us-details ul li {
        font-size: 15px;
        padding: 5px 0;
    }

    .contact-us-details ul li i {
        width: 24px;
        margin-right: 5px;
    }

            /* Utils */
            .m-t-20 {
                margin-top: 20px;
            }

@media only screen and (max-width: 812px) {
    .contact-us-wrapper {
        margin: 0 10px;
        display: block;
    }

        .contact-us-wrapper .btn-wrapper {
            width: 100%;
        } 
        
        .contact-us-wrapper .btn {
            width: 100%;
        }

    .contact-us-form .contact-us-input-wrapper input {
        width: 100%;
    } 

}

/* Add Victim Form */

.add-victim-wrapper {
    margin: 0 240px 100px 240px;
    display: flex;
}

.add-victim-form {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    width: 100%;
}

    .add-victim-form .add-victim-input-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-around;
        margin: 20px;
    }

        .add-victim-form .add-victim-input-wrapper .label-wrapper, .add-victim-form .add-victim-input-wrapper .input-wrapper {
            margin: 0 20px;
        }

        .add-victim-form .add-victim-input-wrapper .label-wrapper {
            flex: 1;
            text-align: right;
        }

        .add-victim-form .add-victim-input-wrapper .label-wrapper label {
            margin: 0;
        }

        .add-victim-form .add-victim-input-wrapper .input-wrapper {
            flex: 4;
        } 
        
        .add-victim-form .add-victim-button-wrapper {
            margin: 0 20px;
            display: flex;
            flex-direction:column;
            align-items: center;
        }

            .add-victim-form .add-victim-button-wrapper .btn-wrapper {
                margin-top: 10px;
            } 
            
            .add-victim-form .add-victim-input-wrapper input, .add-victim-form .add-victim-input-wrapper textarea {
                border: none;
                outline: none;
                border-bottom: 1px solid black;
                display: block;
                width: 100%;
                background: transparent;
                color: #555555;
                line-height: 1.2;
                padding: 10px 0;
            }

    .add-victim-form .add-victim-input-wrapper textarea {
        overflow: hidden;
        resize: vertical;
    }

        .add-victim-form .add-victim-input-wrapper input.error, .add-victim-form .add-victim-input-wrapper textarea.error {
            border-bottom: 1px solid red;
        }



.add-victim-details {
    padding: 20px;
    background: #f9f5f5;
    min-width: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .add-victim-details .title {
        font-size: 15px;
    }

    .add-victim-details ul {
        padding: 0;
        list-style-type: none;
    }

        .add-victim-details ul li {
            font-size: 15px;
            padding: 5px 0;
        }

            .add-victim-details ul li i {
                width: 24px;
                margin-right: 5px;
            }



@media only screen and (max-width: 812px) {
    .add-victim-wrapper {
        margin: 0 10px 100px 10px;
        display: flex;
    }

    .add-victim-form .add-victim-input-wrapper .label-wrapper {
        flex: 1;
        width: 100%;
        text-align: left;
    }

    .add-victim-form .add-victim-input-wrapper .input-wrapper {
        flex: 1;
        width: 100%;
    } 

    .add-victim-form .add-victim-input-wrapper {
        flex-direction: column;
    }

    .checkbox-container {
        margin-top: 10px;
    }
}

    /* Custom radio */
    /* The container */
    .radio-container {
        display: block;
        position: relative;
        padding-left: 35px;
        margin: 10px 0;
        cursor: pointer;
        font-weight: lighter;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

        /* Hide the browser's default radio button */
        .radio-container input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }

    /* Create a custom radio button */
    .radio-checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        width: 20px;
        background-color: #eee;
        border-radius: 50%;
    }

    /* On mouse-over, add a grey background color */
    .radio-container:hover input ~ .radio-checkmark {
        background-color: #ccc;
    }

    /* When the radio button is checked, add a blue background */
    .radio-container input:checked ~ .radio-checkmark {
        background-color: #050030;
    }

    /* Create the indicator (the dot/circle - hidden when not checked) */
    .radio-checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    /* Show the indicator (dot/circle) when checked */
    .radio-container input:checked ~ .radio-checkmark:after {
        display: block;
    }

    /* Style the indicator (dot/circle) */
    .radio-container .radio-checkmark:after {
        top: 6px;
        left: 6px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: white;
    }

    .custom-select {
        padding: 5px;
        width: 100%;
    }

    /* Custom checkbox */
    .checkbox-container {
        display: block;
        position: relative;
        padding-left: 35px;
        margin-bottom: 12px;
        cursor: pointer;
        font-size: 22px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

        /* Hide the browser's default checkbox */
        .checkbox-container input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }

    /* Create a custom checkbox */
    .checkbox-checkmark {
        position: absolute;
        top: -4px;
        left: 0;
        height: 20px;
        width: 20px;
        background-color: #eee;
    }

    /* On mouse-over, add a grey background color */
    .checkbox-container:hover input ~ .checkbox-checkmark {
        background-color: #ccc;
    }

    /* When the checkbox is checked, add a blue background */
    .checkbox-container input:checked ~ .checkbox-checkmark {
        background-color: #050030;
    }

    /* Create the checkmark/indicator (hidden when not checked) */
    .checkbox-checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    /* Show the checkmark when checked */
    .checkbox-container input:checked ~ .checkbox-checkmark:after {
        display: block;
    }

    /* Style the checkmark/indicator */
    .checkbox-container .checkbox-checkmark:after {
        left: 7px;
        top: 4px;
        width: 5px;
        height: 10px;
        border: solid white;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }


/* Date Picker */

.date-picker-wrapper {
    display: flex;
    /*justify-content: space-between;*/
}

    .date-picker-wrapper select {
        width: auto;
        padding: 5px;
        margin-right: 5px;
    }

    .date-picker-wrapper select.error {
        border: 1px solid red;
    }
