﻿/* colors */
/*
  media-query-breakpoints
320px - 480px mobile
481px - 768px ipads/tablet
769px - 1024px small screens/laptops
1025px - 1200px desktops/large screens
1200px >  extra large screens/ TV

*/
/* Search - input type="search"*/
#search-default {
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.select-component {
    width: 100%;
    border: solid lightgray 1px;
    padding-top: 0px;
    padding-bottom: 0px;
    /*word-break: break-all;*/
    min-width: 150px;
    display: inline-block;
    /*overflow: hidden;*/
    background-color: white;
}

/* Buttons */
.btn-select-component {
    width: 90%;
    text-align: left;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-right: 20px;
    word-break: break-all;
}

.btn-select-component-clear {
    position: absolute;
    top: 54%;
    transform: translateY(-50%);
    right: 1px;
    background: white;
    border: none !important;
    outline: none !important;
}

.btn-disable-shadow {
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none !important;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.btn-disable {
    cursor: pointer !important;
    pointer-events: none !important;
    /*Button disabled - CSS color class*/
    color: #c0c0c0 !important;
    border-color: #c0c0c0 !important;
    background-color: #ffffff !important;
}

/*Blazored Modal*/
.blazored-modal {
    max-height: 95%;
    position: relative;
    padding: 0px 0px 58px 0px !important;
    border-radius: 6px !important;
    border: 0 !important;
}

.blazored-modal-focus-trap {
    display: flex;
    position: fixed;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.position-middle {
    align-items: center !important;
}

.blazored-modal dd {
    overflow-wrap: break-word;
}

.modal-content-default {
    height: 100%;
    overflow: hidden;
    padding: 0.1rem;
}

.virtualized-content-holder {
    display: flex;
    gap: 1em;
    align-items: center;
}

.text-line {
    float: left;
    clear: both;
}

.blazored-modal-buttons {
    display: flex;
    position: absolute;
    bottom: 0.5rem;
    right: 0;
    width: 100%;
    padding-top: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    column-gap: 0.7rem;
    border-top: 1px solid lightgray;
}

div.blazored-modal-buttons > button:first-child {
    margin-left: auto;
}

.blazored-modal-small {
    width: 300px;
}

.blazored-modal-narrow {
    width: 350px;
}

.blazored-modal-auto {
    width: auto;
}

.blazored-modal-quarter {
    width: 500px;
}

.blazored-modal-600 {
    width: 600px;
}

.blazored-modal-moiety {
    width: 700px;
}

.blazored-modal-800 {
    width: 1400px;
}

.blazored-modal-1000 {
    width: 1000px;
}

.blazored-modal-1100 {
    width: 1100px;
}

.blazored-modal-1200 {
    width: 1200px;
}

.blazored-modal-wide {
    width: 1100px;
}

.blazored-modal-1350 {
    width: 1350px;
}

.blazored-modal-1920 {
    width: 1920px;
}

.blazored-modal-60 {
    width: 60%;
}

.blazored-modal-70 {
    width: 70%;
}

.blazored-modal.blazored-modal-flush {
    padding: 0 !important;
    border-radius: 10px !important;
    overflow: hidden;
}

.blazored-modal-80 {
    width: 80%;
}

.blazored-modal-100 {
    width: 100% !important;
}

.blazored-modal-extra-wide {
    width: 90% !important;
    font-size: 15px;
}

.blazored-modal-fit-content {
    width: auto !important;
    max-width: 50vw !important;
    max-height: 75vh !important;
    overflow-y: auto;
}

.blazored-modal-project-manager {
    width: 85vw !important;
    max-width: 85vw !important;
    min-width: 85vw !important;
}

.blazored-modal-fixed-width-700 {
    width: 700px !important;
}

/*Blazored Toast*/
.blazored-toast-container {
    z-index: 110;
}

/**/
.pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color 0.3s;
}

    .pagination a.active {
        background-color: dodgerblue;
        color: white;
    }

    .pagination a:hover:not(.active) {
        background-color: lightblue;
    }

/*Loading Overlay*/
.loader {
    /* Light grey */
    border: 20px solid #f3f3f3;
    /* Primary color */
    border-top: 20px solid #003951;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 1200ms linear infinite;
    position: relative;
}

.icon-center {
    margin-top: -45%;
    margin-left: -45%;
    width: 100px;
    height: 100px;
}

.loader-container {
    position: relative;
    display: inline-block;
    top: 40%;
    left: calc(50% - 60px);
}

    .loader-container span {
        position: absolute;
        top: 45%;
        left: 45%;
    }

.default-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#blocking-overlay {
    background: white;
    opacity: 0.5;
    z-index: 100;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* Blazor Radzen */
.ui-datepicker-calendar {
    width: 100%;
}

/* Login */
.login-center {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

    .login-center:focus-visible {
        outline: none;
    }

.login-form {
    width: 400px;
}

@media (min-width: 768px) {
    .login-form {
        width: 550px;
    }
}

.login-heading {
    display: flex;
    flex-flow: column;
    margin: 2em;
}

    .login-heading div {
        text-align: center;
        font-size: 3rem;
        color: white;
    }

        .login-heading div img {
            background-color: white;
            border-radius: 0.75em;
            width: 30%;
        }

.login-box {
    background: white;
    box-shadow: 0 10px 20px rgb(0 0 0 / 50%);
    padding: 2em 5em;
    border-radius: 1.25em;
}

    .login-box h2 {
        margin: 0 0 1em;
    }

    .login-box .form-control, .login-box .btn {
        min-height: 2.375em;
        border-radius: 2px;
        border-radius: 0.5em;
    }

/*Drag and drop*/
.dropzone {
    border: 3px dashed steelblue;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eee;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
    color: #444;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
}

    .dropzone:hover {
        background-color: #f3f3f3;
        color: #333;
    }

    .dropzone input[type=file] {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

.dropzone-drag {
    background-color: palegreen;
}

/* Background */
#bg {
    z-index: -1;
    position: fixed;
    width: 100%;
    height: 100%;
}

    #bg img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        min-width: 50%;
        min-height: 50%;
    }

.badge-team {
    max-width: 100px;
    overflow-x: hidden;
    font-size: x-small;
}

/* Landing Page specific */
.landing-page-content {
    background: url(/images/landing_background.jpg) no-repeat;
    height: 100vh;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 0;
}

.landing-btn {
    width: 133px;
    height: 38px;
    opacity: 1;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow: hidden;
    margin-top: 4.5rem;
    position: absolute;
    z-index: 1;
}

.btn-label {
    width: 56px;
}

#login-btn-background {
    background: rgb(34, 63, 102);
    color: rgb(237, 136, 14);
    right: 50px;
}

#sign-up-btn-border {
    color: white;
    border: none;
    right: 200px;
    /*border-color: rgba(237,136,14,1);*/
}

.center {
    margin: auto;
    width: 70%;
    padding: 10px;
}

.button-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.virtualize-component-holder {
    margin: auto;
    height: 50rem;
    overflow-y: scroll;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes rotate {
    0% {
        -o-transform: rotate(0deg);
    }

    100% {
        -o-transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes fadein {
    0% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadein {
    0% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadein {
    0% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadein {
    0% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

body {
    /*    -webkit-user-select: none;
  overflow: hidden;
  background: #2D2D2C;*/
}

    body .vertical-centered-box {
        position: absolute;
        width: 100%;
        height: 90%;
        text-align: center;
        z-index: 1;
    }

        body .vertical-centered-box:after {
            content: "";
            display: inline-block;
            height: 100%;
            vertical-align: middle;
            margin-right: -0.25em;
        }

        body .vertical-centered-box .content {
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            -webkit-animation: fadein 0.1s linear forwards;
            -moz-animation: fadein 0.1s linear forwards;
            -o-animation: fadein 0.1s linear forwards;
            animation: fadein 0.1s linear forwards;
            display: inline-block;
            vertical-align: middle;
            text-align: left;
            font-size: 0;
            opacity: 0;
        }

.loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 100px;
    margin-left: -50px;
    margin-top: -50px;
    overflow: hidden;
    -webkit-transform-origin: 50px 50px;
    -moz-transform-origin: 50px 50px;
    -ms-transform-origin: 50px 50px;
    -o-transform-origin: 50px 50px;
    transform-origin: 50px 50px;
    -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
    mix-blend-mode: hard-light;
    opacity: 0.8;
}

    .loader-line-mask .loader-line {
        width: 100px;
        height: 100px;
        border-radius: 50%;
    }

    .loader-line-mask.one {
        -webkit-animation: rotate 1s infinite linear;
        -moz-animation: rotate 1s infinite linear;
        -o-animation: rotate 1s infinite linear;
        animation: rotate 1s infinite linear;
    }

        .loader-line-mask.one .loader-line {
            box-shadow: inset 0 0 0 10px #003951;
        }

    .loader-line-mask.two {
        -webkit-animation: rotate 1.8s 0.5s infinite linear;
        -moz-animation: rotate 1.8s 0.5s infinite linear;
        -o-animation: rotate 1.8s 0.5s infinite linear;
        animation: rotate 1.8s 0.5s infinite linear;
    }

        .loader-line-mask.two .loader-line {
            box-shadow: inset 0 0 0 8px #F25F5C;
        }

    .loader-line-mask.three {
        -webkit-animation: rotate 1s 0.5s infinite linear;
        -moz-animation: rotate 1s 0.5s infinite linear;
        -o-animation: rotate 1s 0.5s infinite linear;
        animation: rotate 1s 0.5s infinite linear;
    }

        .loader-line-mask.three .loader-line {
            box-shadow: inset 0 0 0 10px #ED880E;
        }

    .loader-line-mask.four {
        -webkit-animation: rotate 1.8s 1.4s infinite linear;
        -moz-animation: rotate 1.8s 1.4s infinite linear;
        -o-animation: rotate 1.8s 1.4s infinite linear;
        animation: rotate 1.8s 1.4s infinite linear;
    }

        .loader-line-mask.four .loader-line {
            box-shadow: inset 0 0 0 8px #247BA0;
        }

lesshat-selector {
    -lh-property: 0;
    -lh-property: 0;
}

[not-existing] {
    zoom: 1;
    zoom: 1;
}

.badge-count {
    position: absolute !important;
    right: 0px !important;
    top: -5px !important;
    font-size: 0.6rem;
}

.info-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    border: 1px solid #003951;
    color: #003951;
    border-radius: 50%;
    width: 2.3em;
    background: white;
}

.bg-disabled {
    background-color: #e9ecef;
}

.shake-animation {
    animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

.pe-none {
    pointer-events: none;
}

.word-break-all {
    word-break: break-all;
}

.word-break-word {
    word-break: break-word;
}

.color-accent {
    color: #ED880E !important;
}

.color-primary {
    color: #003951;
}

.background-primary {
    background-color: #003951;
}

#floating-logo {
    position: absolute;
    left: 100px;
    top: 50px;
    height: 89px;
    width: 84px;
}

.w-100px {
    width: 100px;
}

/*OptionalField component*/
.optional-label {
    font-size: small;
    opacity: 0.5;
}

.dropdown-notif {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
}

#dropdown-notif-width {
    max-width: 30rem;
    width: max-content;
}

#mark-read a {
    color: #ED880E;
}

.dropdown-notif-header-footer {
    padding: 0px !important;
    font-size: small;
    text-align: center;
}

.notif-details-border {
    border: 1px solid #003951;
}

.font-26 {
    font-size: 26px;
}

.notif-details-button {
    font-size: 20px;
    width: 150px;
}

.vehicle-hover:hover {
    background: var(--b-bar-item-dark-hover-background, rgba(255, 255, 255, 0.3)) !important;
}

.badge-counter {
    position: absolute;
    top: 0.5em;
    right: 1.5em;
    font-size: 0.6em;
}

.add-items-wrapper {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

.currency-selector {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border: 0;
    border-right: 1px solid #dee2e6 !important;
    outline: none;
    padding-left: 6px;
}

.currency-symbol {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5em;
    color: #ED880E;
    border: 0;
    border-left: 1px solid #dee2e6 !important;
}

.amount {
    border: 0;
    text-align: right;
}

.currency-addon {
    width: 4.1em;
    text-align: left;
    position: relative;
}

.input-group-border {
    border: 1.2px solid #ced4da;
    border-radius: 0.25rem;
}

.w-md-150 {
    width: 150px;
}

.column-gap-3 {
    column-gap: 1rem;
}

.column-gap-2 {
    column-gap: 0.5rem;
}

.column-gap-1 {
    column-gap: 0.25rem;
}

.workday-note-container {
    border: 1px solid #ced4da;
    overflow: auto;
    max-height: 4rem;
}

.word-break-keep {
    word-break: keep-all;
}

.width-fixed-150 {
    width: 150px;
}

.width-fixed-200 {
    width: 200px;
}

/* Main layout*/
.page {
    width: 100%;
    background: white;
    min-height: 100vh;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

.top-right-corner {
    position: absolute;
    top: 0.2rem;
    right: 0.2rem;
}

.bottom-left-corner {
    position: absolute;
    bottom: 0.3rem;
    left: 0.3rem;
}

.table-badge {
    width: 170px;
    padding: 0.5em;
    font-size: 0.8rem;
}

.default-cursor {
    cursor: pointer;
}

.donut-chart-wt {
    position: absolute;
    right: 20px;
    bottom: -100px;
    width: 300px;
}

.flex-vertical-center {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Media queries */
@media (max-width: 1101px) {
    .blazored-modal {
        width: 700px !important;
    }

    .donut-chart-wt {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .tablet-d-none {
        display: none;
    }
}

@media (max-width: 701px) {
    .blazored-modal {
        width: 600px !important;
    }
}

@media (max-width: 601px) {
    .blazored-modal {
        width: 500px !important;
    }
}

@media (max-width: 501px) {
    .blazored-modal {
        width: 400px !important;
    }
}

@media only screen and (max-width: 480px) {
    .mobile-d-none {
        display: none;
    }
}

@media only screen and (max-width: 460px) {
    .rz-tick-text {
        font-size: 6.8px;
    }
}

@media (max-width: 401px) {
    .blazored-modal {
        width: 300px !important;
    }
}

@media (max-width: 301px) {
    .blazored-modal {
        width: 100%;
    }
}

thead {
    background-color: #003951 !important;
    color: white !important;
}

.min-width-180 {
    min-width: 180px;
}

.min-width-100 {
    min-width: 100px;
}

.small-image {
    width: 2.5em !important;
}

.wd-signature {
    width: 6.25rem;
    margin-left: 0.5rem;
}

.min-width-180 {
    min-width: 180px;
}

.min-width-150 {
    min-width: 150px;
}

.min-width-100 {
    min-width: 100px;
}

.min-width-180 {
    min-width: 180px;
}

.company-logo-thumbnail {
    border-radius: 0.5rem;
    height: 2.3rem;
    width: 2.3rem;
}

.thumbnail-md {
    height: 3rem;
    width: 3rem;
}

.thumbnail-lg {
    height: 5rem;
    width: 5rem;
}

.badge-sm {
    font-size: 0.55rem;
}

.bg-primary {
    color: white !important;
    background-color: #003951 !important;
}

.font-sm {
    font-size: 0.8rem;
}

.margin-right-2px {
    margin-right: 2px;
}

.font-awesome {
    font-family: "FontAwesome";
}

.dropdown-menu-with-icon {
    display: inline-flex;
    gap: 1em;
}

    .dropdown-menu-with-icon span:first-child {
        flex: 1;
    }

    .dropdown-menu-with-icon span:last-child {
        flex: 6;
    }

.text-neon-green {
    color: #49FB35;
}

.text-neon-red {
    color: #F72119;
}

.text-neon-orange {
    color: #FFAD00;
}

.page-wrapper {
    box-shadow: 0px 0px 5px 1px #ED880E;
    max-height: 90vh;
    overflow: auto;
    padding: 2rem;
    border-radius: 5px;
}

/*Multilne display of text*/
.multiline {
    white-space: pre-wrap;
}

/* Input fields hide arrows - Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
    display: none !important;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield !important;
}

.copy-icon {
    filter: brightness(0) saturate(100%) invert(55%) sepia(12%) saturate(6120%) hue-rotate(199deg) brightness(100%) contrast(102%);
    cursor: pointer;
}

/* CompanyOwner/Admin Dashboard */
.chart-button {
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5em;
    border: 0;
}

.arrow-right-x3 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-single-chart-info {
    position: absolute;
    left: 40%;
    bottom: 5%;
    font-size: 0.9rem;
    font-weight: bold;
}

.dashboard-double-chart-info {
    position: absolute;
    left: 30%;
    bottom: 5%;
    font-size: 0.9rem;
    font-weight: bold;
}

@media (max-width: 1919px) {
    .dashboard-double-chart-info {
        bottom: 0;
    }

    .dashboard-single-chart-info {
        bottom: 0;
    }
}

.elipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/*Refuel Stuff*/
.refuel-card-grid {
    display: grid;
    display: -moz-grid;
    grid-template-columns: 1fr 1fr;
}

.refuel-card-grid-rows-border-right {
    display: grid;
    display: -moz-grid;
    grid-template-rows: 1fr 1fr;
    border-right: 1px solid gray;
}

.refuel-card-grid-rows-border-left {
    display: grid;
    display: -moz-grid;
    grid-template-rows: 1fr 1fr;
    border-left: 1px solid gray;
}

.clear-button-x {
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

    .clear-button-x:hover {
        transform: scale(1.1);
        transform-origin: center;
    }

.centered-validation-message {
    width: fit-content;
    margin: auto;
    text-align: center;
}

/* Fade-out animation */
@keyframes fade-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Fade-in animation */
@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.create-form > div {
    display: grid;
    grid-template-columns: 1.5fr 5fr;
    align-items: center;
    padding: 1em 0;
}

.create-form-div {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}

.create-form > div label {
    text-align: center;
    margin: 0;
}

.div-children {
    width: 25%;
    margin: auto;
}

    .div-children > div {
        padding: 0.5em 0;
    }

.modal-sticky-search-bar {
    padding-bottom: 4.5em;
}

    .modal-sticky-search-bar > div {
        display: flex;
        position: absolute;
        z-index: 1;
        left: 0;
        width: 98%;
        background-color: white;
        padding: 1em;
    }

.work-tracking-checkbox-holder {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.text-start {
    text-align: start !important;
}

.flex {
    display: flex;
}

.long-lat-div {
  border: 1px solid lightgray;
  border-radius: 5px;
  padding: 7px;
  width: 100%;
  text-align: center;
}

.table-responsive {
    border-radius: 5px;
}

.table td, .table th {
    padding: 0.5rem;
}

.table .thead-dark th {
    background-color: #003951 !important;
}

.w-66 {
    width: 66% !important;
}

.background-lightgray {
    background-color: #F2F5F7 !important;
}

:root {
    --md-outlined-text-field-container-shape: 0.5em;
    --md-outlined-select-text-field-container-shape: 0.5em;
    --md-sys-color-primary: @Constants.ColorPrimary;
    --md-outlined-text-field-container-shape: 0.5em;
}

.toggle-password-btn {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
