﻿.PAGE-CONTAINER {
    display: flex;
    /*    width: 100vw;
    height: 100vh;*/
    align-items: flex-start;
    justify-content: space-around;
    margin-top: 35px;
    margin-bottom: 25px;
}

/*@media screen and (max-width: 780px){
    .PAGE-CONTAINER{
        flex-direction:column;
    }
}*/

.page-task {
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #FFF
}

.card {
    width: 100%;
    background-color: #cdcdcd;
    -webkit-box-shadow: 0px 5px 10px 2px rgba(0,0,0,0.1);
    box-shadow: 0px 5px 10px 2px rgba(0,0,0,0.1);
}

.card-body {
    background-color: #fff;
}

.branch-name {
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
    color: #212529;
}

    .branch-name a {
        color: #212529;
    }

.branch-contact {
    text-align: left;
    color: #212529;
    font-size: 0.85rem;
}

.btn-main {
    text-align: center;
    padding: 10px 30px;
    font-size: 14px;
    word-break: keep-all;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    /*    'Playfair Display', serif;*/
    background-color: #0cabe2;
    color: #fff;
    text-transform: ercase;
    transition: 0.2s;
    -webkit-box-shadow: 0px 5px 10px 2px rgba(0,0,0,0.3);
    box-shadow: 0px 5px 10px 2px rgba(0,0,0,0.3);
}

    .btn-main:hover {
        background-color: #097094;
        color: #FFF;
        text-decoration: none;
    }

    .btn-main.disabled {
        background-color: #8b8b8b;
        pointer-events: none;
    }

    .btn-main.always-active.disabled {
        background-color: #FFF;
        pointer-events: unset !important;
    }


.checkboxes {
    flex: 1;
    margin-right: 10px;
    margin-left: 10px;
    top: 242px;
    left: 13px;
}

    .checkboxes td {
        padding: 5px 0;
    }

    .checkboxes label {
        margin: 0;
        font-size: 14px;
        color: gray;
    }

.service-name {
    font-weight: bold;
    font-size: 18px;
    color: #212529;
}

.service-fee {
    font-size: 14px;
    color: #212529;
}

.service-duration {
    font-size: 14px;
    color: #212529;
    text-align: left;
}

.checkbox {
    -webkit-appearance: none;
    background-color: #fafafa;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    padding: 9px;
    border-radius: 3px;
    display: inline-block;
    position: relative;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

    .checkbox:active, .checkbox:checked:active {
    }

    .checkbox:checked {
        background-color: #000;
        border: 1px solid #000;
        color: white;
    }

        .checkbox:checked:after {
            content: '\2713';
            font-weight: bold;
            font-size: 14px;
            position: absolute;
            top: 0px;
            left: 3px;
            color: white !important;
        }


.page-task {
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #FFF
}



.remove-button {
    color: #ffff;
    height: 30px;
    width: 30px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 100%;
    vertical-align: middle;
    background-color: #dc3545;
    border-color: #dc3545;
}

    .remove-button:focus {
        outline: none;
    }

#cartTable {
    width: 100%
}

tr .service-name {
    text-align: left;
    font-size: 16px;
}

#cartTable .service-fee {
    text-align: right;
    font-size: 14px;
}

#cartTable tr {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}


.summary-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.total-fee {
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    color: #212529;
    margin: 0;
}

    .total-fee span {
        text-align: right;
    }

.total-duration {
    text-align: left;
    font-size: 14px;
    /*    font-weight: bold;*/
    color: #212529;
    margin: 0;
}

.total-quantity {
    font-size: 12px;
    color: #212529;
}

.cart-summary-footer {
    position: sticky;
    margin-top: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 25px 15px 20px;
    background-color: #cdcdcd;
    -webkit-box-shadow: 0px 5px 10px 2px rgba(0,0,0,0.1);
    box-shadow: 0px 5px 10px 2px rgba(0,0,0,0.1);
}

@media screen and (min-width: 780px) {
    .cart-card {
    }

/*    .cart-summary-footer {
        display: none;
    }*/

    .shop-info-block {
        display: none;
    }
}

@media screen and (max-width: 780px) {
    .cart-card {
        position: absolute;
        display: none;
    }
/*
    .cart-summary-footer {
        position: absolute;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 15px 25px 15px 20px;
        background-color: #181818;
        -webkit-box-shadow: 0px 5px 10px 2px rgba(0,0,0,0.4);
        box-shadow: 0px 5px 10px 2px rgba(0,0,0,0.4);
    }*/

    .shop-info-block {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
}

#btnShowCart {
    position: relative;
    background: url(../assets/shopping-cart-dark.svg) no-repeat center center;
    max-width: 40px;
    height: 40px;
    border: none;
    flex: 1;
    opacity: 0.8;
    margin: 5px 0;
}

    #btnShowCart:hover {
        opacity: 1;
    }

    #btnShowCart:focus {
        outline: none;
        opacity: 1;
    }

    #btnShowCart .floating-notification {
        opacity: 0;
        position: absolute;
        top: -2px;
        right: -5px;
        width: 15px;
        height: 15px;
        line-height: 14px;
        background-color: red;
        border-radius: 100%;
        color: white;
        font-size: 12px;
        font-weight: bold;
    }




.appointment-header {
    flex-direction: row;
    background-color: #cdcdcd;
    padding: 10px;
}

    .appointment-header .header-text {
        color: #46494b;
        font-weight: bold;
    }

.appointment-body {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    -webkit-box-shadow: 0px 5px 10px 2px rgb(0 0 0 / 10%);
    box-shadow: 0px 5px 10px 2px rgb(0 0 0 / 10%);
    /*    align-content: center;*/
    /*    padding: 10px*/
}

.category-button-container {
    padding: 15px 15px 10px;
    background-color: #cdcdcd;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    -webkit-box-shadow: 0px 5px 10px 2px rgb(0 0 0 / 10%);
    box-shadow: 0px 5px 10px 2px rgb(0 0 0 / 10%);
}

.category-button {
    background-color: #000;
    color: #FFF;
    padding: 5px 20px;
    margin-right: 10px;
    transition: 0.2s;
    border-radius: 30px;
    border: none;
}

    .category-button:focus {
        outline: none;
        -webkit-box-shadow: 0px 5px 10px 2px rgba(0,0,0, 0.1);
        box-shadow: 0px 5px 10px 2px rgba(0,0,0, 0.1);
    }

    .category-button:hover {
        -webkit-box-shadow: 0px 5px 10px 2px rgba(0,0,0, 0.1);
        box-shadow: 0px 5px 10px 2px rgba(0,0,0, 0.1);
    }

    .category-button.active {
        background-color: #FFF;
        color: #000;
    }


/*Scrollbar*/
/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #ababab;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #6b6b6b;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
