.tingle-modal * {
    box-sizing: border-box;
}

.tingle-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999999;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    background: rgba(0,0,0,.85);
    opacity: 0;
    user-select: none;
    cursor: pointer;
}

.tingle-modal--confirm .tingle-modal-box {
    text-align: center;
}

.tingle-modal--noOverlayClose {
    cursor: default;
}

.tingle-modal--noClose .tingle-modal__close {
    display: none;
}

.tingle-modal__close {
    position: fixed;
    top: 53px;
    right: 17px;
    z-index: 1000;
    padding: 0;
    width: 2rem;
    height: 2rem;
    border: none;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    padding: 4px;
    border-radius: 5px;
    background-color: #ec5ca4;
}

    .tingle-modal__close svg * {
        fill: currentColor;
    }

.tingle-modal__closeLabel {
    display: none;
}

.tingle-modal__close:hover {
    color: #fff;
}

.tingle-modal-box {
    position: relative;
    flex-shrink: 0;
    margin-top: auto;
    margin-bottom: auto;
    max-width: 1024px;
    width: 90%;
    border-radius: 15px;
    background: #fff;
    opacity: 1;
    cursor: auto;
    will-change: transform,opacity;
}

.tingle-modal-box__content {
    padding: 0;
}

.tingle-modal-box__footer {
    padding: 1.5rem 2rem;
    width: auto;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: #f5f5f5;
    cursor: auto;
}

    .tingle-modal-box__footer::after {
        display: table;
        clear: both;
        content: "";
    }

.tingle-modal-box__footer--sticky {
    position: fixed;
    bottom: -200px;
    z-index: 10001;
    opacity: 1;
    transition: bottom .3s ease-in-out .3s;
}

.tingle-enabled {
    position: fixed;
    right: 0;
    left: 0;
    overflow: hidden;
}

.tingle-modal--visible .tingle-modal-box__footer {
    bottom: 0;
}

.tingle-enabled .tingle-content-wrapper {
    filter: blur(8px);
}

.tingle-modal--visible {
    visibility: visible;
    opacity: 1;
}

    .tingle-modal--visible .tingle-modal-box {
        animation: scale .2s cubic-bezier(.68,-.55,.265,1.55) forwards;
    }

.tingle-modal--overflow {
    overflow-y: scroll;
    padding-top: 4vh;
    padding-bottom: 4vh;
}

.tingle-btn {
    display: inline-block;
    margin: 0 .5rem;
    padding: 1rem 2rem;
    border: none;
    background-color: grey;
    box-shadow: none;
    color: #fff;
    vertical-align: middle;
    text-decoration: none;
    font-size: inherit;
    font-family: inherit;
    line-height: normal;
    cursor: pointer;
    transition: background-color .4s ease;
}

.tingle-btn--primary {
    background-color: #3498db;
}

.tingle-btn--danger {
    background-color: #e74c3c;
}

.tingle-btn--default {
    background-color: #34495e;
}

.tingle-btn--pull-left {
    float: left;
}

.tingle-btn--pull-right {
    float: right;
}

@media (max-width: 574px), screen and (max-device-width: 932px) and (orientation: landscape) {
    .tingle-modal {
        top: 0;
        display: block;
        padding-top: 0;
        width: 100%;
    }

    .tingle-modal-box {
        width: auto;
        border-radius: 0 0 10px 10px;
    }

    .tingle-modal-box__content {
        overflow-y: scroll;
    }

    .tingle-modal--noClose {
        top: 0;
    }

    .tingle-modal--noOverlayClose {
        padding-top: 0;
    }

    .tingle-modal-box__footer .tingle-btn {
        display: block;
        float: none;
        margin-bottom: 1rem;
        width: 100%;
    }

    .tingle-modal__close {
        top: 0;
        right: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 40px;
        border: none;
        background-color: #ec5ca4;
        box-shadow: none;
        color: #fff;
        position: sticky;
        border-radius: 0;
    }

    .tingle-modal__closeLabel {
        display: block;
        vertical-align: middle;
        font-size: 18px;
        font-family: 'Roboto Condensed',sans-serif;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        line-height: 14px;
        position: absolute;
        top: 14px;
        width: 85%;
        text-align: left;
        height: 18px;
    }

    .tingle-modal__closeIcon {
        display: block;
        width: 20px;
        vertical-align: middle;
        position: absolute;
        top: 8px;
        right: 9px;
    }

    @supports (backdrop-filter:blur(12px)) {
        .tingle-modal {
            backdrop-filter: blur(20px);
        }

        @media (max-width :574px) {
            .tingle-modal {
                backdrop-filter: blur(8px);
            }
        }

        .tingle-enabled .tingle-content-wrapper {
            filter: none;
        }
    }

    @keyframes scale {
        0% {
            opacity: 0;
            transform: scale(.9);
        }

        100% {
            opacity: 1;
            transform: scale(1);
        }
    }
}

@media screen and (max-device-width: 932px) and (orientation: landscape) {
    .custom-hotel-name  {
        display: none !important;
    }
    
    .tingle-modal .clsTingleClose{
        display: none !important;
    }

    .tingle-modal .tingle-modal__close:not(.clsTingleClose){
        display: block !important;
        position: initial !important;
            border-radius: 0 !important;
    }
}
