:root {
    font-family: Inter, sans-serif;
    /* font-feature-settings: "liga" 1, "salt" 1; */
}

* {
    padding: 0;
    margin: 0;
    color: #171717;
}

#root-content {
    display: flex;
}

::-webkit-scrollbar {
    width: 8px;
    height: 1px;
}

::-webkit-scrollbar-track {
    background: rgba(41, 9, 66, 0.15);
    border-radius: 100px;
}
::-webkit-scrollbar-thumb {
    background: rgba(251, 245, 255, 0.4);
    border-radius: 2px;
}

.line-full {
    display: block;
    width: 100%;
    height: 1px;
    box-sizing: border-box;
}

.btn-primary-full {
    display: flex;
    height: 48px;
    background-color: #06b6d4;
    color: white;
    font-weight: 600;
    line-height: 100%;
    width: 100%;
    align-items: center;
    border-radius: 100px;
    padding: 0 24px;
    gap: 16px;
    justify-content: center;
    transition: ease-in 0.2s all;
}

.btn-icon {
    display: flex;
    border-radius: 100px;
    background-color: #342a74;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
}

.status-detail {
    display: flex;
    padding: 0px 12px;
    height: 28px;
    font-size: 13px;
    font-weight: 600;
    line-height: 130%;
    border-radius: 100px;
    align-items: center;
    color: white;
}

.btn-icon:hover {
    background-color: #06b6d4;
}

.modal-full-feature {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* FORM */

input[type="text"].searchmap {
    width: 240px;
    height: 36px;
    display: inline-block;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    box-sizing: border-box;
    outline: none;
    background: url(../img/search.svg) no-repeat scroll 16px center;
    background-position: 8px;
    /* background-color: #f8fafc; */
    padding-left: 36px;
    font-size: 14px;
    line-height: 16px;
    background-color: white;
}

input[type="text"].searchmap:focus {
    border: 1px solid #0ea5e9;
    background-color: white;
    box-shadow: 0px 1px 2px rgba(50, 50, 71, 0.08), 0 0 0 2px #06b6d420;
}

@media only screen and (max-width: 580px) {
    #root-content {
        display: flex;
        min-height: 100vh;
    }
}
