﻿.delete-btn {
    border: solid 1px grey;
}

.shadow-grey {
    -webkit-box-shadow: -1px -1px 9px 5px rgba(239,239,239,0.94);
    -moz-box-shadow: -1px -1px 9px 5px rgba(239,239,239,0.94);
    box-shadow: -1px -1px 9px 5px rgba(239,239,239,0.94);
}

button:hover {
    opacity: .9;
}

.simple-btn {
    border: inherit;
    color: inherit;
    background-color: inherit;
}

    .simple-btn:hover {
        opacity: .9;
    }

.flex-1-btn {
    flex: 1;
}

.monitoring-btn {
    width: 100%;
    height: 100%;
    padding: .5em;
}

    .monitoring-btn.active {
        background: #00AEEF 0% 0% no-repeat padding-box;
        color: #FFFFFF;
    }

.register-checkbox {
    cursor: pointer;
}

.simple-thin-border.basic-light-blue-btn,
.basic-light-blue-btn {
    background: #00AEEF 0% 0% no-repeat padding-box;
    color: #FFFFFF;
    border-color: #00AEEF;
}

.basic-light-blue-hover-btn {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    color: #00AEEF;
    border-color: #00AEEF !important;
}

    .basic-light-blue-hover-btn:hover {
        background: #00AEEF 0% 0% no-repeat padding-box;
        color: #FFFFFF;
    }

.simple-thin-border.basic-dark-blue-btn,
.basic-dark-blue-btn {
    background: #222852 0% 0% no-repeat padding-box;
    color: #fff;
}

.simple-thin-border.basic-red-btn,
.basic-red-btn {
    background: var(--bramcke-red) 0% 0% no-repeat padding-box;
    color: #fff;
    border-color: var(--bramcke-red);
}

.basic-green-btn {
    background: #a9eed1;
    border-color: #a9eed1;
}

.basic-white-btn {
    background-color: white;
    box-shadow: 1px 1px 1px 1px #efefef;
}

.plm-add-cart-btn {
    display: block;
    border-radius: 0;
    height: 100%;
    border-right: 5px solid white;
    background-color: lightskyblue;
    border-radius: 0;
    transition: all 500ms ease-in;
}

    .plm-add-cart-btn:hover {
        font-weight: 700;
        background-color: dodgerblue;
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.plm-nav-back-btn {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 50px;
    height: 50px;
    background-color: white;
    color: black;
    z-index: 1;
    border: none;
    border-radius: 20px 0 70% 0;
}

.square-edit-btn {
    width: 25px;
    height: 30px;
    border: none;
    padding: 0 !important;
    box-shadow: 2px 2px 5px 0px rgba(157,157,157,0.51);
}
/* CORE STYLES */
/* Ensure the existing classes don't interfere */
.register-checkbox {
    border-radius: 0.25em;
    background-color: #fff;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 1em;
    height: 1em;
    font: inherit;
    margin-bottom: -0.125em;
}
/* Style for unchecked checkbox */
.b2b-square-checkbox input[type=checkbox] {
    border-radius: 0.25em;
    background-color: #fff;
    position: relative;
}
/* Style for checked checkbox */
.b2b-square-checkbox input:checked {
    border-color: transparent;
    background: #efefef;
}
    /* Create the green tick using ::after pseudo-element */
    .b2b-square-checkbox input:checked::after {
        content: '';
        position: absolute;
        left: 4px;
        top: 2px;
        width: 5px;
        height: 10px;
        border: solid #009fe3;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
        top: 0%;
        left: 30%;
    }
/* Style for checkbox on hover */
.b2b-square-checkbox input:not(:checked):hover {
    background: #00aeef padding-box, transparent border-box;
}
/* Custom checkbox styling for label to make it visible */
.b2b-square-checkbox label {
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 1px solid #efefef;
    border-radius: 0.25em;
    background-color: #fff;
    position: relative;
}

.b2b-square-checkbox input:checked + label::after {
    content: '\2714'; /* Unicode character for a tick mark */
    position: absolute;
    left: 4px;
    top: 0;
    font-size: 16px; /* Adjust the font size as needed */
    color: green;
}

@media screen and (max-width: 768px) {
    .login-btn {
        width: 6em;
    }

    .basic-dark-blue-btn {
        font-size: 12px;
        max-width: 110px !important;
        min-width: 80px !important;
        min-height: 30px !important;
    }

    .simple-btn {
        font-size: 12px;
        width: fit-content;
        height: 2em;
    }

    .simple-thin-border.basic-red-btn,
    .basic-red-btn {
        height: 35px !important;
    }
}