﻿.btn {
    padding: 3px 5px;
    font-size: 12px;
}

.btn-info {
    background-color: #a94442;
    border-color: #8e3d3b;
}

.btn-info:focus,
.btn-info.focus {
    background-color: #bd2421;
    border-color: #8e3d3b;
}

.btn-info:hover {
    background-color: #bd2421;
    border-color: #8e3d3b;                  
}

.open-hours-table input {
    width : 75px;
}

.cart-link:hover {
    background-color: unset !important;
}

.clickable-row:hover {
    background-color: antiquewhite;
}

.menu-company-heading {
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0px;
    padding-bottom: 5px;
    vertical-align: middle;
}

.icon-btn {
    width: 12px;
    height: 12px;
}

.image-btn {
    border: none;
    background: none;
}

.img-info {
    width:150px;
    height:150px;
    margin:15px;
}
.img-info:hover{
    cursor:pointer;
}

.div-info-imgleft {
    margin: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.div-info-imgright {
    margin: 10px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

@media screen and (max-width: 600px) {
    .div-info-imgleft {
        flex-direction: column-reverse;
    }

    .div-info-imgright {
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 767px) {
    .table-responsive {
        border: none;
        font-size:small;
    }
}

.validation {
    color:red;
    font-weight:bold;
}

.pricingComparison {
    display:flex;
}
.pricingComparison div {
    display:flex;
    flex-direction:column;
    width:175px;
    background-color:antiquewhite;
    border-radius:10px;
    padding:10px;
    margin:10px;
}
.pricingComparison .title {
    font-weight:bold;
    text-align:center;
}

.pricingComparison span {
    text-align: center;
}

input:read-only {
    background-color:lightgray;
    color: dimgray;
}

input:disabled {
    background-color: lightgray;
    color: dimgray;
}

textarea:disabled {
    background-color: lightgray;
    color: dimgray;
}

button:disabled {
    background-color: lightgray;
    color: dimgray;
    border-color: black;
}

#cover-spin {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.7);
    z-index: 9999;
    display: none;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#cover-spin::after {
    content: '';
    display: block;
    position: absolute;
    left: 48%;
    top: 40%;
    width: 40px;
    height: 40px;
    border-style: solid;
    border-color: black;
    border-top-color: transparent;
    border-width: 4px;
    border-radius: 50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}

.tooltipicon{
    width:15px;
    height:15px;
    position:relative;
    top:-5px;
    margin:2px;
}