.om-order-modal-messenger {
    background: #fff;
    padding: 30px;
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.om-order-modal-messenger .mfp-close {
    color: #000;
}

.om-order-modal-messenger .order-messenger__messages {
    max-height: 400px;
}

.om-open-messenger-button__new-messages-count {
    display: inline-block;
    padding: 3px 5px;
    color: #5b841b;
    line-height: 10px;
    border-radius: 20px;
    margin-left: 5px;
    font-size: .8em;
    text-align: center;
    background: #c6e1c6;
}

.om-unread-messages-count {
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    margin: 1px 0 -1px 2px;
    padding: 0 5px;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
    z-index: 26;
    background-color: #0771a1;
    color: #fff;
}

li.order-messenger_options a::before {
    content: "\f125" !important;
}

.om-alert {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 20px;
    margin: 20px 0;
    background: #fff;
    box-shadow: 0 5px 10px rgba(61, 76, 83, 0.15);
    color: #3D4C53;
    border: 1px solid rgba(61, 76, 83, 0.26);
}

.om-alert__icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    fill: #3D4C53;
}

.om-alert__text {
    font-size: 15px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.om-alert__buttons {
    margin-left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1200px) {
    .om-alert__icon {
        width: 70px;
        height: 70px;
        display: block;
        margin: 0 auto;
        margin-bottom: 10px;
    }

    .om-alert__buttons {
        flex: 1 0 100%;
    }

    .om-alert__text {
        margin-bottom: 20px;
        flex: 1 0 100%;
        line-height: 1;
    }

    .om-alert {
        text-align: center;
    }
}


/** Buttons **/
.om-button {
    display: inline-block;
    margin-left: 5px;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    color: #fff;
    transition: .3s all;
}

.om-button:focus, .om-button:focus {
    outline: none;
    color: #fff;
}

.om-button--default {
    background: #3D4C53;
    color: #fff;
}

.om-button--default:hover {
    background-color: #4a5b63;
    color: #fff;
}

.om-button--secondary {
    background: #2271b1;
    color: #fff;
}

.om-button--secondary:hover {
    background-color: #2d8dde;
    color: #fff;
}

.om-button--accent {
    background: #935687;
    color: #fff;
}

.om-button--accent:hover {
    background: #b16ca1;
    color: #fff;
}

.om-button--bounce {
    animation: om-bounce-animation 2s infinite;
    -webkit-animation: om-bounce-animation 2s infinite;
    -moz-animation: om-bounce-animation 2s infinite;
}

.om-button--bounce:hover, .om-button--bounce:active, .om-button--bounce:focus {
    animation: none;
    -webkit-animation: none;
    -moz-animation: none;
}

/** Animation **/

@-webkit-keyframes om-bounce-animation {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-5px);
    }
    60% {
        -webkit-transform: translateY(-2px);
    }
}

@-moz-keyframes om-bounce-animation {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-5px);
    }
    60% {
        -moz-transform: translateY(-2px);
    }
}

@-o-keyframes om-bounce-animation {
    0%, 20%, 50%, 80%, 100% {
        -o-transform: translateY(0);
    }
    40% {
        -o-transform: translateY(-5px);
    }
    60% {
        -o-transform: translateY(-2px);
    }
}

@keyframes om-bounce-animation {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-2px);
    }
}


.om_premium_subsection_label {
    background: #e85b5b;
    padding: 5px 10px;
    color: #fff;
    font-size: .6em;
    border-radius: 5px;
    margin-left: 10px;
}

.om_premium_option_label {
    font-size: .8em;
    border-radius: 5px;
    margin-top: 5px;
    display: inline-block;
    color: red;
    font-weight: bold;
}

.om_premium_option {
    opacity: .5;
}

.om_premium_subsection {
    opacity: .5;
}