﻿/*=============== mylan2viatris CSS SETUP =================*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');

/*Standard Meyer Reset*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: 'Open Sans', sans-serif;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

blockquote,
q {
    quotes: none;
}

    blockquote:before,
    blockquote:after,
    q:before,
    q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

ul,
ol {
    list-style: none;
}
/*Micro Clearfix*/

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}
/*================== 2. GLOBAL HTML RULES =================== */

/* (site-wide default behavior of vanilla HTML tags) */

strong {
    font-weight: bold;
}
/*================ 3. SCAFFOLDING and PAGE LAYOUT ==============*/

.grid {
    width: 100%;
}
    /*clearfix the grid too, since unfortunately not all our layout markup contains the needed .cf class*/

    .grid:before,
    .grid:after {
        content: " ";
        display: table;
    }

    .grid:after {
        clear: both;
    }

.grid {
    *zoom: 1;
}

.col {
    float: left;
    box-sizing: border-box;
}

.col-1of2 {
    width: 50%;
}

.col-1of3 {
    width: 33.3333%;
}

.col-2of3 {
    /*fyi, 2of3 does not mean the middle column. It means it spans 2 of 3 columns, aka 66%.*/
    width: 66.6666%;
}

.col-1of4 {
    width: 25%;
}

.col-3of4 {
    width: 75%;
}

.col-full {
    width: 100%;
}
/*default column padding rule*/

.col {
    padding: 0 10px;
}
/* the main page wrapper element - this is where we set the max width rule for the entire site */

.container-fluid {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
}
/*------------------------ site specific ------------------------*/

* {
    box-sizing: border-box;
}

h2 {
    font-size: 23px;
    font-weight: 400;
    line-height: 1.33;
    color: #636363;
    padding-bottom: 15px;
    margin: 0;
}

.separator-primary {
    background: #8F00FF 0% 0% no-repeat padding-box;
}

.separator {
    width: 55px;
    height: 3px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    opacity: 1;
    text-align: left;
    margin-left: 0;
    margin-top: 35px;
}

#mylan2viatris_interstitial {
    position: fixed;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    z-index: 9;
    margin: 0 20px;
}

    #mylan2viatris_interstitial .window {
        padding: 50px 65px;
        background: #fff;
    }

        #mylan2viatris_interstitial .window .inner .left {
            display: table;
            width: 100%;
            padding-bottom: 25px;
        }

            #mylan2viatris_interstitial .window .inner .left img {
                width: 250px;
            }

        #mylan2viatris_interstitial .window .inner .right {
            display: table;
            width: 100%;
        }

            #mylan2viatris_interstitial .window .inner .right .caption {
                line-height: 1.6;
                font-size: 20px;
                overflow-y: auto;
                max-height: 30vh;
                padding-right: 10px;
            }

            #mylan2viatris_interstitial .window .inner .right .continue {
                display: inline-block;
                padding-top: 50px;
            }

                #mylan2viatris_interstitial .window .inner .right .continue a {
                    color: #fff;
                    font-size: 20px;
                    display: inline-block;
                    padding: 10px 20px;
                    line-height: 1.6;
                    background-color: #703e97;
                    text-decoration: none;
                    -webkit-border-radius: 4px;
                    -moz-border-radius: 4px;
                    border-radius: 5px;
                }

                    #mylan2viatris_interstitial .window .inner .right .continue a:hover {
                        background-color: #b791c9;
                    }

#interstitial-overlay {
    background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
    display: block;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
}
/*------------------------ end site header ------------------------*/


@media only screen and (min-width: 992px) {
    #mylan2viatris_interstitial {
        margin: 0 50px;
    }
}

@media only screen and (min-width: 1200px) {
    #mylan2viatris_interstitial {
        margin: 0 100px;
    }
}

@media only screen and (max-width: 767px) {
    h2 {
        font-size: 21px;
    }

    #mylan2viatris_interstitial {
        margin: 15px 20px;
        top: 20%;
        transform: translateY(-20%);
    }

        #mylan2viatris_interstitial .window {
            padding: 30px 20px;
        }

            #mylan2viatris_interstitial .window .inner .left img {
                width: 180px;
            }

            #mylan2viatris_interstitial .window .inner .right .caption {
                font-size: 18px;
            }

            #mylan2viatris_interstitial .window .inner .right .continue a {
                font-size: 18px;
            }

            #mylan2viatris_interstitial .window .inner .right .continue {
                padding-top: 30px;
            }
}
