/* == FONT-FACE == */

@font-face {
    font-family: 'Rubik';
    src: url('/assets/fonts/Rubik-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Rubik';
    src: url('/assets/fonts/Rubik-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* == KEYFRAMES == */

@keyframes location-pulse {

    0% {
        transform: scale(1);
        box-shadow: 0 0 20px 0 #00b0eb, 0 0 0 24px rgba(0, 176, 235, .25);

    }

    to {
        transform: scale(1.1);
        box-shadow: 0 0 16px 5px #00b0eb, 0 0 0 24px rgba(0, 176, 235, .25)
    }
}

@keyframes loader {

    100% {
        transform: rotate(1turn);

    }

}

.caminho-seguro-app .cs .container .box {
    transition: none;
}

.caminho-seguro-app .cs .container .box .container {
    padding: 70px 20px 20px 20px;
}

.caminho-seguro-app .cs .container .sidebar>.container {
    padding-top: 70px;
}

.caminho-seguro-app .cs>.container>.header {
    bottom: 30px;
}

.caminho-seguro-app .leaflet-bottom {
    bottom: 15px;
}

.caminho-seguro-app .cs .container .popup>.container {
    margin: 0 20px;
}

.caminho-seguro-app .cs .container .popup>.container form {
    width: 70%;
}

.caminho-seguro-app .cs .container .popup>.container form .container .row {
    flex-direction: column;
    height: auto;
    width: 100%;
}

.caminho-seguro-app .cs .container .popup>.container form .container .row.code-inputs {
    flex-direction: row;
}

.caminho-seguro-app .cs .container .popup>.container .footer {
    margin-top: 30px;
}

.caminho-seguro-app .cs .container .box .container .row .menu {
    z-index: 9999;
    width: 21px;
    height: 14px;
}



.cs .map .leaflet-map-pane .leaflet-marker-pane .leaflet-marker-icon.is-current-location::before {
    content: "";
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background: #00b0eb;
    border: 2px solid #fff;
    box-shadow: 0 0 20px 0 #00b0eb, 0 0 0 24px rgba(0, 176, 235, .25);
    border-radius: 50%;
    animation: location-pulse 1.5s ease-in-out infinite alternate;
}

/* Caminho Seguro */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}

.cm-alert-cluster {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    margin-top: -6px;
    margin-left: -6px;
    background: #ffc400;
    font-size: 12px;
    font-weight: 500;
    border-radius: 50px;
    border: 2px solid #fff;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, .5)) drop-shadow(0 0 2px rgba(0, 0, 0, .22));
}


.cs {
    width: 100svw;
    height: 100svh;
    position: relative;
}

.cs .container {
    width: 100%;
    height: 100%;
}

/* Box */

.cs .container .box {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    margin: 8px;
    width: 370px;
    transition: all .3s ease;
}

.cs .container .box .container {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .3);
    border-radius: 10px;
}

.cs .container .box .container .row {
    display: flex;
}

.cs .container .box .container .row .menu {
    width: 18px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: center;
    cursor: pointer;
}

.cs .container .box .container .row .menu:hover div {
    background-color: #09f;
}

.cs .container .box .container .row .menu div {
    width: 100%;
    height: 2px;
    background-color: #3b4043;
    transition: all .3s ease;
}

.cs .container .box .container .row .menu:hover div:nth-child(1) {
    width: 50%;
}

.cs .container .box .container .row .menu div:nth-child(3) {
    width: 50%;
}

.cs .container .box .container .row .menu:hover div:nth-child(3) {
    width: 100%;
}

.cs .container .box .container .row .menu button {
    background-color: #ffff;
    border: none;
}

.cs .container .box .container .row .menu button:hover {
    cursor: pointer;
}

.cs .container .box .container .row .title {
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: #202124;
    letter-spacing: .3px;
    line-height: 18px;
    font-weight: 500;
}

.cs .container .box .container .row .search {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.cs .container .box .container .row .search input {
    width: 100%;
    height: 40px;
    padding: 0 50px 0 15px;
    background-color: #F2F4F7;
    border: none;
    outline: none;
    border-radius: 6px;
}

.cs .container .box .container .row .search button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    background-color: unset;
    border: none;
    cursor: pointer;
}

.cs .container .box .container .row .search button img {
    width: 23px;
}

.cs .container .box .container .row .search button .loader {
    width: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(farthest-side, #202124 94%, #0000) top/4px 4px no-repeat,
        conic-gradient(#0000 30%, #202124);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 4px), #000 0);
    animation: loader 1s infinite linear;
}

@media only screen and (max-width: 767px) {
    .cs .container .box {
        width: 100%;
        margin: 0;
    }

    .cs .container .box .container {
        border-radius: 0 0px 15px 15px;
    }
}

/* Header Map */

.cs>.container>.header {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 999;
    transition: all .3s ease;
}

.cs>.container>.header .login {
    font-size: 15px;
    font-weight: 500;
    background: #09f;
    color: #fff;
    outline: none;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3), 0 4px 8px rgba(60, 64, 67, .15);
    cursor: pointer;
}

.cs>.container>.header .user-box {
    position: relative;
}

.cs>.container>.header .user-box .user-name {
    font-size: 15px;
    font-weight: 500;
    background: #fff;
    color: #202124;
    outline: none;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3), 0 4px 8px rgba(60, 64, 67, .15);
    cursor: pointer;
}

.cs>.container>.header .user-box .user-popup {
    position: absolute;
    top: 50px;
    right: 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3), 0 4px 8px rgba(60, 64, 67, .15);
}

.cs>.container>.header .user-box .user-popup .container {
    display: flex;
    flex-direction: column;
}

.cs>.container>.header .user-box .user-popup .container .user-details {
    padding: 16px 20px;
    border-bottom: 1px solid #e8eaed;
}

.cs>.container>.header .user-box .user-popup .container .user-details .name {
    font-size: 18px;
    font-weight: 500;
    color: #202124;
}

.cs>.container>.header .user-box .user-popup .container .user-details .email {
    color: #72767d;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.25px;
    line-height: 22px;
}

.cs>.container>.header .user-box .user-popup .container .user-details .reputation {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #202124;
}

.cs>.container>.header .user-box .user-popup .container .menu-items {
    padding: 8px 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.cs>.container>.header .user-box .user-popup .container .menu-items .item {
    padding: 8px 20px;
    cursor: pointer;
    transition: background .3s ease;
}

.cs>.container>.header .user-box .user-popup .container .menu-items .item:hover {
    background-color: #e8eaed;
}

@media only screen and (max-width: 767px) {
    .cs>.container>.header {
        z-index: 9991;
        top: unset;
        right: unset;
        bottom: 15px;
        left: 15px;
    }

    .cs>.container>.header .user-box .user-popup {
        position: absolute;
        top: unset;
        bottom: 50px;
        right: unset;
        left: 0;
    }
}

/* Sidebar */

.cs .container .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    height: 100%;
    width: 100%;
    z-index: 999999;
    transition: all .3s ease;
    visibility: hidden;
}

.cs .container .sidebar>.container {
    max-width: 320px;
    background-color: #ffff;
    overflow-y: auto;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    transition: all .3s ease;
    transform: translateX(-100%);
}

.cs .container .sidebar.active>.container {
    transform: translateX(0%);
}

.cs .container .sidebar.active {
    background-color: rgba(0, 0, 0, .4);
    visibility: visible;
}

.cs .container .sidebar .header {
    position: relative;
    border-bottom: 1px solid #d3dae0;
    padding: 10px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cs .container .sidebar .header .logo img {
    width: 100%;
    max-width: 200px;
    object-fit: cover;
}

.cs .container .sidebar .header .close {
    background: none;
    border: none;
    outline: none;
    width: 30px;
    cursor: pointer;
}

.cs .container .sidebar .header .close img {
    display: block;
    width: 25px;
    height: 25px;
    object-fit: cover;
}


.cs .container .sidebar .filters {
    list-style: none;
    color: #4C4C4C;
    border-bottom: 1px solid #d3dae0;
    padding: 30px 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 14px;
}

.cs .container .sidebar .filters .filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cs .container .sidebar .filters .filter .title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.cs .container .sidebar .filters .filter .icon img {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: cover;
}


.cs .container .sidebar .filters .filter .toggle {
    cursor: pointer;
    display: inline-block;
}

.cs .container .sidebar .filters .filter .toggle-switch {
    display: inline-block;
    background: #ccc;
    border-radius: 16px;
    width: 36px;
    height: 18px;
    position: relative;
    vertical-align: middle;
    transition: background 0.25s;
}

.cs .container .sidebar .filters .filter .toggle-switch:before,
.cs .container .sidebar .filters .filter .toggle-switch:after {
    content: "";
}

.cs .container .sidebar .filters .filter .toggle-switch:before {
    display: block;
    background: linear-gradient(to bottom, #fff 0%, #eee 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
    width: 14px;
    height: 14px;
    position: absolute;
    top: 2px;
    left: 3px;
    transition: left 0.25s;
}

.cs .container .sidebar .filters .filter .toggle:hover .toggle-switch:before {
    background: linear-gradient(to bottom, #fff 0%, #fff 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}

.cs .container .sidebar .filters .filter .toggle-checkbox:checked+.toggle-switch {
    background: #168A53;
}

.cs .container .sidebar .filters .filter .toggle-checkbox:checked+.toggle-switch:before {
    left: 20px;
}

.cs .container .sidebar .filters .filter .toggle-checkbox {
    position: absolute;
    visibility: hidden;
}

.cs .container .sidebar .filters .filter .toggle-label {
    margin-left: 5px;
    position: relative;
    top: 2px;
}

.cs .container .sidebar .user-history {

    box-sizing: border-box;
    color: #4C4C4C;
}

.cs .container .sidebar .user-history .container>.title {
    font-size: 18px;
    font-weight: 700;
    padding: 10px 20px;
    border-bottom: 1px solid #d3dae0;
    text-align: center;
}

.cs .container .sidebar .user-history .container .itens {
    margin-top: 20px;
    padding: 10px 20px;
}

.cs .container .sidebar .user-history .container .itens .item {
    border: 1px solid #d3dae0;
    border-radius: 5px;
}

.cs .container .sidebar .user-history .container .itens .item+.item {
    margin-top: 20px;
}

.cs .container .sidebar .user-history .container .itens .item .controller {
    display: flex;
    align-items: center;
    background: #f3f3f3;
    justify-content: space-between;
    padding: 5px 10px;
    height: 45px;
}

.cs .container .sidebar .user-history .container .itens .item .controller .id {
    font-size: 13px;
    font-weight: 700;
    line-height: 15px;
}

.cs .container .sidebar .user-history .container .itens .item .controller .control {
    display: flex;
    gap: 10px;
}

.cs .container .sidebar .user-history .container .itens .item .controller .control .delete {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.cs .container .sidebar .user-history .container .itens .item .controller .control .delete img {
    width: 18px;
    height: 18px;
}

.cs .container .sidebar .user-history .container .itens .item .content {
    padding: 15px;
}

.cs .container .sidebar .user-history .container .itens .item .content .title {
    font-size: 16px;
    font-weight: 700;
}

.cs .container .sidebar .user-history .container .itens .item .content .localization {
    margin-top: 10px;
    font-size: 13px;
    line-height: 20px;
}

.cs .container .sidebar .user-history .container .itens .item .content .date {
    margin-top: 5px;
    font-size: 11px;
}

.cs .container .sidebar .user-history .container .itens .item .content .metrics {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
    align-items: center;
}

.cs .container .sidebar .user-history .container .itens .item .content .metrics>.title {
    font-size: 14px;
    font-weight: 500;
}

.cs .container .sidebar .user-history .container .itens .item .content .metrics .dislike,
.cs .container .sidebar .user-history .container .itens .item .content .metrics .like {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 11px;
}

.cs .container .sidebar .user-history .container .itens .item .content .dislike .icon img,
.cs .container .sidebar .user-history .container .itens .item .content .like .icon img {
    width: 18px;
}

/* Popup Message - Map - Markers - Popup Markers*/

/* Popup Message */

.cs .container .map .message-popup {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 10px 30px;
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 50px;
    z-index: 999;
    background-color: #ffffff;
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
    border-radius: 10px;
}

.cs .container .map .message-popup .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Makers */

.cs .container .map {
    width: 100%;
    height: 100%;
}

.cs .map .leaflet-map-pane .leaflet-marker-pane .leaflet-marker-icon.cm-alert-icon {
    width: 35px;
    height: 40px;
    margin-top: -40px;
    margin-left: -17.5px;
}

.cs .map .leaflet-map-pane .leaflet-marker-pane .leaflet-marker-icon.cm-alert-icon.cm-alert-icon-flooding {
    background: bottom / contain no-repeat url(/assets/icons/inundacao.png);
    filter: drop-shadow(0 3px 4px rgba(0, 0, 0, .4)) drop-shadow(0 -2px 2px rgba(0, 0, 0, .12));
}

.cs .map .leaflet-map-pane .leaflet-marker-pane .leaflet-marker-icon.cm-alert-icon.cm-alert-icon-slip {
    background: bottom / contain no-repeat url(/assets/icons/deslizamento.png);
    filter: drop-shadow(0 3px 4px rgba(0, 0, 0, .4)) drop-shadow(0 -2px 2px rgba(0, 0, 0, .12));
}

.cs .map .leaflet-map-pane .leaflet-marker-pane .leaflet-marker-icon.cm-alert-icon.cm-alert-icon-collapse {
    background: bottom / contain no-repeat url(/assets/icons/desmoronamento.png);
    filter: drop-shadow(0 3px 4px rgba(0, 0, 0, .4)) drop-shadow(0 -2px 2px rgba(0, 0, 0, .12));
}

.cs .map .leaflet-map-pane .leaflet-marker-pane .leaflet-marker-icon.cm-alert-icon.cm-alert-icon-erosion {
    background: bottom / contain no-repeat url(/assets/icons/erosao.png);
    filter: drop-shadow(0 3px 4px rgba(0, 0, 0, .4)) drop-shadow(0 -2px 2px rgba(0, 0, 0, .12));
}

.cs .map .leaflet-map-pane .leaflet-marker-pane .leaflet-marker-icon.cm-alert-icon.cm-alert-icon-hole {
    background: bottom / contain no-repeat url(/assets/icons/buraco.png);
    filter: drop-shadow(0 3px 4px rgba(0, 0, 0, .4)) drop-shadow(0 -2px 2px rgba(0, 0, 0, .12));
}

.cs .map.leaflet-zoom-13 .leaflet-map-pane .leaflet-marker-pane .leaflet-marker-icon.cm-alert-icon,
.cs .map.leaflet-zoom-12 .leaflet-map-pane .leaflet-marker-pane .leaflet-marker-icon.cm-alert-icon,
.cs .map.leaflet-zoom-11 .leaflet-map-pane .leaflet-marker-pane .leaflet-marker-icon.cm-alert-icon {
    width: 12px;
    height: 12px;
    margin-top: -6px;
    margin-left: -6px;
    background: #ffc400;
    border-radius: 50px;
    border: 2px solid #fff;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, .5)) drop-shadow(0 0 2px rgba(0, 0, 0, .22));
}

.cs .map.leaflet-zoom-16 .leaflet-map-pane .leaflet-marker-pane .leaflet-marker-icon.cm-alert-icon,
.cs .map.leaflet-zoom-17 .leaflet-map-pane .leaflet-marker-pane .leaflet-marker-icon.cm-alert-icon,
.cs .map.leaflet-zoom-18 .leaflet-map-pane .leaflet-marker-pane .leaflet-marker-icon.cm-alert-icon {
    width: 44px;
    height: 50px;
    margin-top: -50px;
    margin-left: -22px;
}

/* Controls - Buttons, zoom, latlng */

/* Buttons */

.cs .container .map .leaflet-control-container .leaflet-bottom .leaflet-control-attribution {
    background-color: unset;
    margin: 0 10px 15px 0px;
}

.cs .container .map .leaflet-control-container .leaflet-bottom .leaflet-control-attribution .buttons {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cs .container .map .leaflet-control-container .leaflet-bottom .leaflet-control-attribution .buttons button {
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3), 0 4px 8px rgba(60, 64, 67, .15);
    background: #fff;
    color: #4c4c4c;
    text-decoration: none;
    font-size: 24px;
    transition: background .3s ease;
    cursor: pointer;
}

.cs .container .map .leaflet-control-container .leaflet-bottom .leaflet-control-attribution .buttons button:hover {
    background: #f2f4f7;
}

.cs .container .map .leaflet-control-container .leaflet-bottom .leaflet-control-attribution .buttons img {
    width: 20px;
}

.cs .container .map .leaflet-control-container .leaflet-bottom .leaflet-control-attribution .buttons .add-location img {
    transition: rotate .3s ease, filter .3s ease;
}

.cs .container .map .leaflet-control-container .leaflet-bottom .leaflet-control-attribution .buttons .add-location.active img {
    rotate: 45deg;
    filter: grayscale(100%);
}

.cs .container .map .leaflet-control-container .leaflet-bottom .leaflet-control-attribution .buttons .tooltip {
    position: relative;
    background-color: #fff;
    pointer-events: none;
    text-wrap: nowrap;
    font-size: 14px;
    height: 80%;
}

.cs .container .map .leaflet-control-container .leaflet-bottom .leaflet-control-attribution .buttons button:hover .tooltip .container {
    opacity: 1;
}

.cs .container .map .leaflet-control-container .leaflet-bottom .leaflet-control-attribution .buttons .tooltip .container {
    background: #fff;
    color: #4c4c4c;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .1), 0 0 10px 0 rgba(0, 0, 0, .1);
    box-sizing: border-box;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 1px;
    max-width: 200px;
    min-width: 145px;
    position: absolute;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
}

.cs .container .map .leaflet-control-container .leaflet-bottom .leaflet-control-attribution .buttons .tooltip .container::after {
    background: #fff;
    content: "";
    height: 10px;
    position: absolute;
    transform: rotate(45deg);
    width: 10px;
    right: -2px;
    margin-top: -5px;
    top: 50%;
    z-index: -1;
}

/* Zoom */

.cs .container .map .leaflet-control-container .leaflet-bottom .leaflet-control-zoom {
    margin: 0 15px 15px 0px;
    border: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3), 0 4px 8px rgba(60, 64, 67, .15);
    border-radius: 10px;
    overflow: hidden;
}

.cs .container .map .leaflet-control-container .leaflet-bottom .leaflet-control-zoom a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #4c4c4c;
    height: 36px;
    width: 40px;
}

/* Lat Lng */

.cs .container .map .leaflet-control-container .leaflet-bottom .leaflet-control-attribution .cs-attribution-control {
    display: flex;
    border-radius: 6px;
    padding: 3px 10px;
    align-items: center;
    color: #3d3d3d;
    background-color: #fff;
    font-family: Rubik, sans-serif;
    font-size: 11px;
    line-height: 13px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3), 0 4px 8px rgba(60, 64, 67, .15);
}

.cs .container .map .leaflet-popup-pane .leaflet-popup .leaflet-popup-content-wrapper {
    border-radius: 5px 5px 5px 5px;
}

/* Single Marker Popup */

.cs .container .map .leaflet-popup-pane .marker-popup {
    font-family: Rubik, sans-serif;
    min-width: 301px;
    max-width: 350px;
}

.cs .container .map .leaflet-popup-pane .marker-popup .leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    color: #333;
    box-shadow: none;
}

.cs .container .map .leaflet-popup-pane .marker-popup .leaflet-popup-content {
    border-radius: 5px 5px 5px 5px;
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .3);
    text-align: left;
    background: #fff;
    overflow: hidden;
    margin: 0;
}

.cs .container .map .leaflet-popup-pane .marker-popup .leaflet-popup-content .header {
    display: flex;
    align-items: center;
    background: #f3f3f3;
    position: relative;
    padding: 5px 10px;
    height: 25px;
}

.cs .container .map .leaflet-popup-pane .marker-popup .leaflet-popup-content .header .title {
    color: #333333;
    font-size: 11px;
    font-weight: 700;
    line-height: 15px;
}

.cs .container .map .leaflet-popup-pane .marker-popup .leaflet-popup-content .content {
    color: #333;
    padding: 15px;
}

.cs .container .map .leaflet-popup-pane .marker-popup .leaflet-popup-content .content .event {
    font-size: 16px;
    font-weight: 700;
}

.cs .container .map .leaflet-popup-pane .marker-popup .leaflet-popup-content .content .address {
    margin-top: 10px;
    font-size: 13px;
    line-height: 20px;
}

.cs .container .map .leaflet-popup-pane .marker-popup .leaflet-popup-content .content .reported-by {
    font-size: 11px;
}

.cs .container .map .leaflet-popup-pane .marker-popup .leaflet-popup-content .content .time {
    margin-top: 5px;
    font-size: 11px;
}

.cs .container .map .leaflet-popup-pane .marker-popup .leaflet-popup-content .content .metrics {
    margin-top: 15px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.cs .container .map .leaflet-popup-pane .marker-popup .leaflet-popup-content .content .metrics .dislike,
.cs .container .map .leaflet-popup-pane .marker-popup .leaflet-popup-content .content .metrics .like {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 11px;
}

.cs .container .map .leaflet-popup-pane .marker-popup .leaflet-popup-content .content .metrics .dislike .icon img,
.cs .container .map .leaflet-popup-pane .marker-popup .leaflet-popup-content .content .metrics .like .icon img {
    width: 18px;
}

.cs .container .map .leaflet-popup-pane .marker-popup .leaflet-popup-content .content .metrics .dislike {}

.cs .container .map .leaflet-popup-pane .marker-popup .leaflet-popup-content .content .metrics .like {}


.cs .container .map .leaflet-popup-pane .marker-popup .leaflet-popup-content .content .title {
    font-size: 16px;
    font-weight: 700;
}

.cs .container .map .leaflet-popup-pane .marker-popup .leaflet-popup-content .content .subtitle {
    margin-top: 10px;
    font-size: 13px;
    line-height: 20px;
}

.cs .container .map .leaflet-popup-pane .marker-popup .leaflet-popup-content .content form {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.cs .container .map .leaflet-popup-pane .marker-popup .leaflet-popup-content .content select {
    width: 100%;
    height: 40px;
    padding: 0 15px 0 15px;
    background-color: #F2F4F7;
    border: none;
    outline: none;
    border-radius: 6px;
}

.cs .container .map .leaflet-popup-pane .marker-popup .leaflet-popup-content .content form button {
    font-size: 15px;
    font-weight: 500;
    background-color: #09f;
    color: #fff;
    padding: 0 20px;
    border-radius: 6px;
    border: none;
    outline: none;
    cursor: pointer;
}

/* Cluster Marker Popup */

.cs .container .map .leaflet-popup-pane .cluster-popup {
    font-family: Rubik, sans-serif;
    min-width: 301px;
    max-width: 350px;
}

.cs .container .map .leaflet-popup-pane .cluster-popup .leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    color: #333;
    box-shadow: none;
}

.cs .container .map .leaflet-popup-pane .cluster-popup .leaflet-popup-content {
    border-radius: 5px 5px 5px 5px;
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .3);
    text-align: left;
    background: #fff;
    overflow: hidden;
    margin: 0;
}


.cs .container .map .leaflet-popup-pane .cluster-popup .leaflet-popup-content .header {
    display: flex;
    align-items: center;
    background: #f3f3f3;
    position: relative;
    padding: 5px 10px;
    height: 25px;
}

.cs .container .map .leaflet-popup-pane .cluster-popup .leaflet-popup-content .header .pages {
    color: #333333;
    font-size: 11px;
    font-weight: 700;
    line-height: 15px;
}

.cs .container .map .leaflet-popup-pane .cluster-popup .leaflet-popup-content .content {
    color: #333;
    padding: 15px;
}

.cs .container .map .leaflet-popup-pane .cluster-popup .leaflet-popup-content .content .event {
    font-size: 16px;
    font-weight: 700;
}

.cs .container .map .leaflet-popup-pane .cluster-popup .leaflet-popup-content .content .address {
    margin-top: 10px;
    font-size: 13px;
    line-height: 20px;
}

.cs .container .map .leaflet-popup-pane .cluster-popup .leaflet-popup-content .content .reported-by {
    font-size: 11px;
}

.cs .container .map .leaflet-popup-pane .cluster-popup .leaflet-popup-content .content .time {
    margin-top: 5px;
    font-size: 11px;
}

.cs .container .map .leaflet-popup-pane .cluster-popup .leaflet-popup-content .content .metrics {
    margin-top: 15px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.cs .container .map .leaflet-popup-pane .cluster-popup .leaflet-popup-content .content .metrics .dislike,
.cs .container .map .leaflet-popup-pane .cluster-popup .leaflet-popup-content .content .metrics .like {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    cursor: pointer;
}

.cs .container .map .leaflet-popup-pane .cluster-popup .leaflet-popup-content .content .metrics .dislike .icon img,
.cs .container .map .leaflet-popup-pane .cluster-popup .leaflet-popup-content .content .metrics .like .icon img {
    width: 18px;
}

.cs .container .map .leaflet-popup-pane .cluster-popup .leaflet-popup-content .content .metrics .dislike {}

.cs .container .map .leaflet-popup-pane .cluster-popup .leaflet-popup-content .content .metrics .like {}


.cs .container .map .leaflet-popup-pane .cluster-popup .leaflet-popup-content .content .footer {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.cs .container .map .leaflet-popup-pane .cluster-popup .leaflet-popup-content .content .footer button {
    float: left;
    width: 95px;
    height: 20px;
    cursor: pointer;
    text-align: center;
    border: none;
    border-bottom: 2px solid #c2c2c2;
    background-color: #e9e9e9;
    border-radius: 5px;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cs .container .map .leaflet-popup-pane .cluster-popup .leaflet-popup-content .content .footer .prev img,
.cs .container .map .leaflet-popup-pane .cluster-popup .leaflet-popup-content .content .footer .next img {
    width: 17px;
}

.cs .container .map .leaflet-popup-pane .cluster-popup .leaflet-popup-content .content .footer button.disable {
    opacity: 0.5;
    cursor: default;
}


/* sssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss */

.cs .container .popup {
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: 999;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .4);
}

.cs .container .popup>.container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 30px 60px 30px;
    box-sizing: border-box;

    max-width: 850px;
    height: fit-content;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 4px 0 rgba(60, 64, 67, .3), 0 8px 12px 6px rgba(60, 64, 67, .15);
}

.cs .container .popup>.container .close {
    position: absolute;
    top: 15px;
    right: 16px;
    cursor: pointer;
}

.cs .container .popup>.container .close img {
    width: 15px;
    height: 15px;
}

.cs .container .popup>.container .title {
    font-size: 32px;
    font-weight: 500;
    text-align: center;
}

.cs .container .popup>.container .subtitle {
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
    text-align: center;
}

.cs .container .popup>.container form>.container {
    margin-top: 30px;
}

.cs .container .popup>.container form .container .row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    height: 40px;
}

.cs .container .popup>.container form .container .row .input input[type="text"],
.cs .container .popup>.container form .container .row .input input[type="email"],
.cs .container .popup>.container form .container .row .input input[type="password"] {
    position: relative;
    width: 100%;
    font-family: Rubik, sans-serif;
    background-color: #F2F4F7;
    border-color: #F2F4F7;
    border-radius: 6px;
    color: #2e2e2e;
    border-width: 0 0 2px;
    font-size: 14px;
    padding: 12px;
    outline: none;
    cursor: pointer;
}

.cs .container .popup>.container form .container .row .input {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.cs .container .popup>.container form .container .row .input::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    transition: width .3s ease;
    height: 2px;
    background-color: #09f;
}

.cs .container .popup>.container form .container .row .input:focus-within::after {
    width: 100%;
}

button {
    font-size: 15px;
    font-weight: 500;
    background-color: #09f;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    outline: none;
    cursor: pointer;
}

button .loader-form {
    width: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(farthest-side, #fff 94%, #0000) top / 4px 4px no-repeat, conic-gradient(#0000 30%, #fff);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 4px), #000 0);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 4px), #000 0);
    animation: loader 1s infinite linear;
}

.cs .container .popup>.container .footer {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 400;
    color: #55595e;
}

.cs .container .popup>.container .footer span {
    cursor: pointer;
}

.cs .container .popup>.container .footer span:hover {
    text-decoration: underline;
}

.verify-code-popup {
    display: flex;
    flex-direction: column;
    margin-top: 0 !important;
    align-items: center;
}