﻿.appo-form .btn:hover {
    color: white !important;
}

.lbl-alert {
    color: #ffffff;
    font-size: 12px;
    font-weight: normal;
    display: none;
    margin-top: 5px;
}

table label {
    margin-bottom: 0;
    text-transform:capitalize;
}

table td {
    height: 25px;
}

.btn-save {
    background-color: #ffffff;
    color: #f05697;
    font-weight: bold;
    border: 2px solid #f05697;
    padding: 5px 10px;
}

    .btn-save:hover {
        background-color: #f05697;
        color: #ffffff;
    }

.btn-cancel {
    background-color: #ffffff;
    color: #6c6c6c;
    font-weight: bold;
    border: 2px solid #6c6c6c;
    padding: 5px 10px;
}

    .btn-cancel:hover {
        background-color: #6c6c6c;
        color: #ffffff;
    }

.alert-close {
    float: right;
    border-radius: 50px;
    border: 1px solid;
    background-color: transparent;
}

.pnl-alert {
    background-color: #ffffff;
    border: #f05697;
    border-radius: 7px;
}

@media only screen and (min-width : 1024px) {
    .modalDialog > div {
        width: 60%;
        position: relative;
        margin: 12% auto;
        padding: 20px 20px 20px 20px;
        border-radius: 10px;
        background: #fff;
        font-size: 13px;
    }


    #popup {
        width: 60%;
    }

    .btn-booked {
        background-color: #f0569766;
        color: #ffffff;
        font-weight: bold;
        border: 2px solid #ffffff;
        position: absolute !important;
        z-index: 100;
        top: 60%;
        padding: 15px 40px;
        left: 70%;
    }
        .btn-booked:hover {
            background-color: #f05697;
            color: #ffffff;
        }
}

@media only screen and (min-device-width : 480px) and (max-device-width : 1024px) {
    .modalDialog > div {
        width: 80%;
        position: relative;
        margin: 35% auto;
        padding: 20px 20px 20px 20px;
        border-radius: 10px;
        background: #fff;
        font-size: 13px;
    }

    #popup {
        width: 100%;
    }

    .btn-booked {
        background-color: #f0569766;
        color: #ffffff;
        font-weight: bold;
        border: 2px solid #ffffff;
        position: absolute !important;
        z-index: 100;
        top: 70%;
        padding: 15px 40px;
        left: 50%;
    }

        .btn-booked:hover {
            background-color: #f05697;
            color: #ffffff;
        }
}


@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
    .modalDialog > div {
        width: 100%;
        position: relative;
        margin: 5% auto;
        padding: 20px 20px 20px 20px;
        border-radius: 10px;
        background: #fff;
        font-size: 13px;
    }

    #loginModalDiv {
        margin: 45% auto !important;
    }

    #popup {
        width: 100%;
    }
    .btn-booked {
        background-color: #f0569766;
        color: #ffffff;
        font-weight: bold;
        border: 2px solid #ffffff;
        position: absolute !important;
        z-index: 100;
        top: 75%;
        padding: 15px 40px;
        left: 25%;
    }

        .btn-booked:hover {
            background-color: #f05697;
            color: #ffffff;
        }
}

.modalDialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
    padding: 20px;
}

    .modalDialog:target {
        opacity: 1;
        pointer-events: auto;
    }

.close {
    background: #0083c5;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
    font-size: 1em;
    text-shadow: 0 0px 0 #fff;
    opacity: 1;
}

    .close:hover {
        background: #ef5350;
        opacity: 1;
        color: #FFFFFF;
    }
