﻿
/*This CSS file defines styles for the pop-up confirmation box that will be shown on client's web sites*/
.hideElementDesktop{
    display: none !important
}

/*Responsiveness*/
@media screen and (min-device-width: 320px) and (max-device-width: 480px), screen and (min-width: 320px) and (max-width: 568px), screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) {
    .mnr_popup {
        width: 85% !important;
    }

    div.Newsletter_SignUpForm {
        width: 90% !important;
    }

    div.MNR_ActivationLinkPopup_Content {
        width: 85% !important;
        padding: 10px;
    }

    td.H1_Headline, div.H1_Headline {
        font-size: 35px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        padding-top: 25px !important;
        padding-bottom: 25px !important;
        height: auto !important;
    }

    td.H2_Headline, div.H2_Headline {
        font-size: 27px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
        height: auto !important;
    }

    td.H3_Headline, div.H3_Headline {
        font-size: 22px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        height: auto !important;
    }

    td.Text, div.Text {
        font-size: 22px !important;
        line-height: 180% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    p, span, li, strong, a, ul, ol, em {
        font-size: inherit !important;
        line-height: 180% !important;
    }

    th.Left_Column, td.Left_Column {
        display: block !important;
        width: 100% !important;
    }

    th.Center_Column, td.Center_Column {
        display: block !important;
        width: 100% !important;
    }

    th.Right_Column, td.Right_Column {
        display: block !important;
        width: 100% !important;
    }
    
    table.Button {
        width: 250px !important;
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    td.Button, td.SignUpButton {
        font-size: 20px !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
        width: 90% !important;
    }

    a.Button_Link {
        font-size: 20px !important;
    }
    
    td.mnrStackCell, td.mnrStackColumns, th.mnrStackCell, th.mnrStackColumns {
        display: block !important; 
        width: 100% !important; 
        padding: 0 !important; 
        box-sizing: border-box !important;
    }

    .hideElementDesktop{
        display: block !important
    }
    
    .hideElementMobile{
        display: none !important;
    }
}

/* Popup notification box */
.mnr_popup {
    position: fixed;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background-color: white;
    box-shadow: 3px 3px 10px #888888;
    z-index: 1003;
    width: 450px;
    border-radius: 7px;
    padding-top: 25px;
    /*        padding-left: 25px;*/
    padding-bottom: 5px;
    -webkit-animation: fadeIn 0.5s;
    animation: fadeIn 0.5s;
}

/*Modal background of notification box*/
.mnr_popup_background {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0,0.8);
    z-index: 1002;
}


.mnr_confirm_heading {
    font-size: 16pt;
    text-align: center;
    margin: 0;
}

.mnr_confirm_text {
    font-size: 11pt;
    text-align: left;
    padding-bottom: 10px;
}

.mnr_confirm_image {
    margin-top: 40px;
    margin-right: 40px;
}

.mnr_signup_close_button {
    z-index: 101;
    position: absolute;
    top: -24px;
    left: 650px;
}


div.MNR_ActivationLinkPopup_Content {
    width: 85% !important;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
}

table.SignUpButton {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}

/* Toggle this class - hide and show the popup */
.mnr_popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 0.5s;
    animation: fadeIn 0.5s;
}

/*Pop-up Dialog Classes*/
div.MNR_PopupSignUpBox {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1000;
}

/*Animate Shake*/
div.MNR_PopupBox_Animate_Shake {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1000;
    animation: MNR_Animation_shake 0.5s;
    animation-iteration-count: 2;
}


/*Animate fade in*/
div.MNR_PopupBox_Animate_FadeIn {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1000;
    -webkit-animation: MNR_Animation_fadeIn 1.0s;
    animation: MNR_Animation_fadeIn 1.0s;
}


div.MNR_PopupBox_Animate_SlideInFromLeft {
    position: fixed;
    top: 50%;
    z-index: 1000;
    left: 0;
    transform: translateX(-100%);
    animation: MNR_Animation_slide-in 1.5s forwards;
    -webkit-animation: MNR_Animation_slide-in 1.5s forwards;
}

div.MNR_PopupBox_Animate_SlideInFromRight {
    position: fixed;
    top: 50%;
    left: 100%;
    z-index: 1000;
    right: 100%;
    transform: translateX(-100%);
    animation: MNR_Animation_slide-out 1.5s forwards;
    -webkit-animation: MNR_Animation_slide-out 1.5s forwards;
}

div.MNR_PopupBox_Animate_SlideInFromTop {
    position: fixed;
    top: 0px;
    z-index: 1000;
    left: 50%;
    transform: translateY(-100%);
    animation: MNR_Animation_slide-in 1.5s forwards;
    -webkit-animation: MNR_Animation_slide-in 1.5s forwards;
}

div.MNR_PopupBox_Animate_SlideInFromBottom {
    position: fixed;
    bottom: 0;
    top: auto;
    z-index: 1000;
    left: 50%;
    transform: translateY(100%);
    animation: MNR_Animation_slide-in-from-button 1.5s forwards;
    -webkit-animation: MNR_Animation_slide-in-from-button 1.5s forwards;
}


div.MNR_PopupBox_ModalBackground {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: rgba(0,0,0, .7);
    position: fixed;
    overflow: hidden;
}

div.MNR_PopupBox_Hidden {
    display: none;
}


/* Add animation (fade in the popup) */
@-webkit-keyframes MNR_Animation_fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes MNR_Animation_fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes MNR_Animation_slide-in-from-button {
    from {
        transform: translateY(100%); 
    }
    to {
        transform: translateY(0); 
    }
}

@-webkit-keyframes MNR_Animation_slide-in-from-button {
    from {
        transform: translateY(100%); 
    }
    to {
        transform: translateY(0); 
    }
}

input.MNR_TextEdit, select.MNR_DropDownList, textarea.MNR_TextArea {
    padding: 8px;
    display: block;
    border: 1px solid #ccc;
    width: 100%;
    font: inherit;
}



select.MNR_DropDownList {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-repeat: no-repeat;
    background-image: url(../images/Arrowhead-Top_24.png);
    background-size: 10px;
    border-radius: 0;
    background-origin: content-box;
    background-position: center right;
}

.MNR_Select-Container {
    position: relative;
    display: inline;
}

    .MNR_Select-Container:after {
        content: "";
        width: 0;
        height: 0;
        position: absolute;
        pointer-events: none;
    }

    .MNR_Select-Container:after {
        top: .3em;
        right: .75em;
        border: 1px solid #ccc;
        opacity: 0.5;
    }

select.MNR_DropDownList::-ms-expand {
    display: none;
}


@keyframes MNR_Animation_slide-in {
    100% {
        transform: translateX(0%);
    }
}

@keyframes MNR_Animation_slide-out {
    0% {
        transform: translateX(0%);
    }
}


@-webkit-keyframes MNR_Animation_slide-in {
    100% {
        transform: translateX(0%);
    }
}

@keyframes MNR_Animation_shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.MNR_CloseButton {
    cursor: pointer;
}
