﻿:root {
    --main-color: #3d3d3d;
}

.form-label {
    margin-top: 0.5em;
    margin-bottom: 0em;
}

.invalidOverride {
    border-color: #fa7676;
    background-color: #ff000014;
}


/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1031; /* Sit on top */
    left: 0;
    top: 0;
    padding: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: white;
    margin: 2% auto; /* 5% from the top and centered */
    padding: 20px;
    border: 0;
    width: 40%; /* Could be more or less, depending on screen size */
    -webkit-box-shadow: 5px 5px 20px 0px rgba(138,138,138,0.51);
    -moz-box-shadow: 5px 5px 20px 0px rgba(138,138,138,0.51);
    box-shadow: 5px 5px 20px 0px rgba(138,138,138,0.51);
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    width: 100%;
    text-align: right;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

.closeHelp {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    width: 100%;
    text-align: right;
}

    .closeHelp:hover
    .closeHelp:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

.closeManagers {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    width: 100%;
    text-align: right;
}

    .closeManagers:hover,
    .closeManagers:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

/* 80% Modal Width on Smaller Screens */
@media only screen and (max-width: 1600px) {
    .modal-content {
        width: 45%;
    }
}

/* 95% Modal Width on Smaller Screens */
@media only screen and (max-width: 1000px) {
    .modal-content {
        width: 90%;
    }
}


input.apple-switch {
    cursor: pointer;
    position: relative;
    appearance: none;
    outline: none;
    width: 40px;
    height: 20px;
    background-color: #ffffff;
    border: 1px solid #D9DADC;
    border-radius: 50px;
    box-shadow: inset -20px 0 0 0 #ffffff;
    transition-duration: 200ms;
}

    input.apple-switch:after {
        content: "";
        position: absolute;
        top: 1px;
        left: 1px;
        width: 16px;
        height: 16px;
        background-color: transparent;
        border-radius: 50%;
        box-shadow: 2px 4px 6px rgba(0,0,0,0.2);
    }

    input.apple-switch:checked {
        border-color: #2bf12c;
        box-shadow: inset 20px 0 0 0 #62f328;
    }

        input.apple-switch:checked:after {
            left: 20px;
            box-shadow: -2px 4px 3px rgba(0,0,0,0.05);
        }





.wrapper {
    width: 100%
}


/*

    #sidebar {
    min-width: 300px;
    max-width: 300px;
    color: #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    position: relative;
    z-index: 0
}

    #sidebar:after {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        background: #2f89fc;
        background: -moz-linear-gradient(-45deg, #2f89fc 0%, #5effc9 100%);
        background: -webkit-gradient(left top, right bottom, color-stop(0%, #2f89fc), color-stop(100%, #5effc9));
        background: -webkit-linear-gradient(-45deg, #2f89fc 0%, #5effc9 100%);
        background: -o-linear-gradient(-45deg, #2f89fc 0%, #5effc9 100%);
        background: -ms-linear-gradient(-45deg, #2f89fc 0%, #5effc9 100%);
        background: -webkit-linear-gradient(315deg, #2f89fc 0%, #5effc9 100%);
        background: -o-linear-gradient(315deg, #2f89fc 0%, #5effc9 100%);
        background: linear-gradient(135deg, #2f89fc 0%, #5effc9 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2f89fc', endColorstr='#5effc9', GradientType=1);
        opacity: .7;
        z-index: -1
    }

    #sidebar.active {
        margin-left: -300px
    }

        #sidebar.active .custom-menu {
            margin-right: -40px
        }

        #sidebar.active .btn.btn-primary:before {
            content: "\f054";
            font-family: fontawesome;
            right: 2px !important
        }

        #sidebar.active .btn.btn-primary:after {
            display: none
        }

    #sidebar .h6 {
        color: #fff
    }

    #sidebar h1 {
        margin-bottom: 20px;
        font-weight: 700;
        font-size: 30px
    }

        #sidebar h1 .logo {
            color: #fff;
            padding: 10px 30px;
            display: block
        }

            #sidebar h1 .logo span {
                font-size: 13px;
                color: #fff;
                display: block
            }

    #sidebar ul.components {
        padding: 0
    }

    #sidebar ul li {
        font-size: 16px
    }

        #sidebar ul li > ul {
            margin-left: 10px
        }

            #sidebar ul li > ul li {
                font-size: 14px
            }

        #sidebar ul li a {
            padding: 15px 30px;
            display: block;
            color: rgba(255, 255, 255, .9);
            border-bottom: 1px solid rgba(255, 255, 255, .1)
        }

            #sidebar ul li a:hover {
                color: #fff;
                background: #2f89fc;
                border-bottom: 1px solid #2f89fc
            }

        #sidebar ul li.active > a {
            background: 0 0;
            color: #fff
        }

            #sidebar ul li.active > a:hover {
                background: #2f89fc;
                border-bottom: 1px solid #2f89fc
            }

@media(max-width:991.98px) {
    #sidebar {
        margin-right: -300px
    }

        #sidebar.active {
            margin-left: 0
        }

        #sidebar .custom-menu {
            margin-left: -60px !important;
            top: 10px !important
        }
}

#sidebar .custom-menu {
    display: inline-block;
    position: absolute;
    top: 20px;
    left: 320px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

@media(prefers-reduced-motion:reduce) {
    #sidebar .custom-menu {
        -webkit-transition: none;
        -o-transition: none;
        transition: none
    }
}

#sidebar .custom-menu .btn.btn-primary {
    background: linear-gradient(144deg, #74affd, #86e3c3);
    border-color: transparent;
    position: relative;
    color: #000;
    width: 30px;
    height: 30px
}

    #sidebar .custom-menu .btn.btn-primary:after,
    #sidebar .custom-menu .btn.btn-primary:before {
        position: absolute;
        top: 2px;
        left: 0;
        right: 0;
        bottom: 0;
        font-family: fontawesome;
        color: #fff
    }

    #sidebar .custom-menu .btn.btn-primary:after {
        content: "\f053";
        left: 2px
    }




*/

.text-dark_important {
    color: #5e5252;
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: #f4f4f4;
    color: #777;
    transition: all 0.3s;
}

    #sidebar.active {
        margin-left: -250px;
    }

    #sidebar .sidebar-header {
        padding: 20px;
        background: #159AD9;
        color: white;
    }

    #sidebar ul.components {
        padding: 20px 0;
        border-bottom: 1px solid #dbdbdb;
    }

    #sidebar ul p {
        color: #fff;
        padding: 10px;
    }

    #sidebar ul li a {
        padding: 10px;
        font-size: 1.1em;
        display: block;
    }

        #sidebar ul li a:hover {
            color: #159AD9;
            background: #ffffff4f;
        }

    #sidebar ul li.active > a,
    a[aria-expanded="true"] {
        color: #fff;
        
    }


@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }

        #sidebar.active {
            margin-left: 0;
        }

    #sidebarCollapse span {
        display: none;
    }
}




#content {
    width: 100%;
    padding: 0;
    min-height: 100vh;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.small_title {
    font-size: 1.3em;
    font-weight: 300;
    margin-bottom: 0;
    color: #1cb0f6;
}

.customButton2 {
    background: linear-gradient(144deg, #74affd, #86e3c3);
    border-color: transparent;
    color: white;
    border-radius: 10px;
    padding: 10px;
    border: none;
}

    .customButton2:focus {
        box-shadow: 0 0 0 0.25rem rgb(49 132 253 / 50%);
    }

.customButton {
    appearance: button;
    background-color: #1899D6;
    border: solid transparent;
    border-radius: 16px;
    border-width: 0 0 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: din-round,sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .8px;
    line-height: 20px;
    margin: 3px;
    outline: none;
    overflow: visible;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    transform: translateZ(0);
    transition: filter .2s;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: middle;
    white-space: nowrap;
}

    .customButton:after {
        background-clip: padding-box;
        background-color: #1CB0F6;
        border: solid transparent;
        border-radius: 16px;
        border-width: 0 0 4px;
        bottom: -4px;
        content: "";
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
    }

    .customButton:main,
    .customButton:focus {
        user-select: auto;
    }

    .customButton:hover:not(:disabled) {
        filter: brightness(1.1);
        -webkit-filter: brightness(1.1);
    }

    .customButton:disabled {
        cursor: auto;
    }



.customButtonGreen {
    appearance: button;
    background-color: #494949;
    border: solid transparent;
    border-radius: 16px;
    border-width: 0 0 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: din-round,sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .8px;
    line-height: 20px;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 13px 16px;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    transform: translateZ(0);
    transition: filter .2s;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: middle;
    white-space: nowrap;
}

    .customButtonGreen:after {
        background-clip: padding-box;
        background-color: #7d7d7d;
        border: solid transparent;
        border-radius: 16px;
        border-width: 0 0 4px;
        bottom: -4px;
        content: "";
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
    }

    .customButtonGreen:main,
    .customButtonGreen:focus {
        user-select: auto;
    }

    .customButtonGreen:hover:not(:disabled) {
        filter: brightness(1.1);
        -webkit-filter: brightness(1.1);
    }

    .customButtonGreen:disabled {
        cursor: auto;
    }


.customButtonHighlight {
    appearance: button;
    background-color: #00c672;
    border: solid transparent;
    border-radius: 16px;
    border-width: 0 0 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: din-round,sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .8px;
    line-height: 20px;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 13px 16px;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    transform: translateZ(0);
    transition: filter .2s;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: middle;
    white-space: nowrap;
}

    .customButtonHighlight:after {
        background-clip: padding-box;
        background-color: #07e894;
        border: solid transparent;
        border-radius: 16px;
        border-width: 0 0 4px;
        bottom: -4px;
        content: "";
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
    }

    .customButtonHighlight:main,
    .customButtonHighlight:focus {
        user-select: auto;
    }

    .customButtonHighlight:hover:not(:disabled) {
        filter: brightness(1.1);
        -webkit-filter: brightness(1.1);
    }

    .customButtonHighlight:disabled {
        cursor: auto;
    }


.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #1cb0f6; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.chevrons {
    border-radius: .25rem;
    padding: .375rem .5rem;
    vertical-align: middle;
    text-align: center;
    border: 1px solid #ced4da;
    cursor: pointer;
}

    .chevrons i {
        vertical-align: middle;
    }


.roundSelect {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 50px;
    font-size: 0.8em;
}

.roundImage {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.roundBorder {
    border: 1px solid grey;
    border-radius: 50px;
    display: inline-flex;
    margin-left: 20px;
}

.calendarTable {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

    .calendarTable thead {
    }

        .calendarTable thead th {
            color: grey;
            vertical-align: middle;
            text-align: center;
            font-weight: 300;
            border-left: 2px solid grey;
            border-right: 2px solid grey;
        }

    .calendarTable tbody {
    }

        .calendarTable tbody td {
            border-left: 2px solid grey;
            border-right: 2px solid grey;
            border-bottom: 1px solid #d6d6d6;
            background-color: #b8b8b812;
            min-height: 40px;
            height: 40px;
            vertical-align: middle;
            text-align: center;
        }

        .calendarTable tbody tr {
            min-height: 40px;
            height: 40px;
        }

.d-6 {
    background-color: #9595953b !important;
}

.d-0 {
    background-color: #9595953b !important;
}

.d-phantom {
    border-right: none !important;
    border-left: none !important;
    background-color: #353535 !important;
    color: white;
}


.MD_shadow {
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

    .MD_shadow:hover {
        box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    }

.MD_shadow_green {
    box-shadow: 0 3px 3px rgba(7, 232, 148, 0.32), 0 3px 3px rgba(7, 232, 148, 0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

    .MD_shadow_green:hover {
        box-shadow: 0 1px 5px rgba(7, 232, 148, 0.7), 0 6px 4px rgba(7, 232, 148, 0.7);
    }

.WelcomeMessage {
    font-size: 1.5em;
    margin-left: 20px;
    margin-bottom: 0;
}



.timeButtonsMain {
    padding: 10px;
    margin: 20px;
    border: 1px solid;
    border-radius: 20px;
    border-color: #9f9f9f;
    width: 100%;
}

.timeButtonsMainGreen {
    border-color: #00e18d;
    cursor: pointer;
}

.timeButtonsAddress {
    font-size: 0.9em;
    padding: 5px;
    color: gray;
    line-height: 0.9rem;
    text-align: center;
}

.timeButtonsTime {
    text-align: center;
    font-size: 4rem;
    font-weight: 300;
}

.timeButtonsLine {
    height: 2px;
    background-color: #c6c6c6;
    width: 95%;
    margin-left: 2.5%;
}

.timeButtonsTitle {
    margin: 0;
    text-align: center;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 200;
    color: #1cb0f6;
}

.timeButtonsTitleBox {
    margin: 0;
    text-align: center;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 200;
    color: #5c5c5c;
}

.timeButtonsTitleGrey {
    color: #646464;
}

.timeButtonsTitleGreen {
    color: #07e894;
}
