
@font-face {
    font-family: 'Avenir Next';
    src: url('/modules/Teva.PIM/Client/Styles/fonts/avenir-next-bold.ttf') format('truetype'), url('/modules/Teva.PIM/Client/Styles/fonts/avenir-next-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir Next';
    src: url('/modules/Teva.PIM/Client/Styles/fonts/avenir-next-demi-bold.ttf') format('truetype'), url('/modules/Teva.PIM/Client/Styles/fonts/avenir-next-demi-bold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir Next';
    src: url('/modules/Teva.PIM/Client/Styles/fonts/avenir-next-regular.ttf') format('truetype'), url('/modules/Teva.PIM/Client/Styles/fonts/avenir-next-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

html {
    color: #222;
    font-size: 16px;
    line-height: 1.2;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em auto 2em;
    padding: 0;
    max-width: 940px;
}

.line-hr {
    max-width: 940px;
    margin: 0 auto;
    padding: 5px 0;
}

    .line-hr img {
        width: 100%;
        height: auto;
        display: block;
    }

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

address {
    font-style: normal;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

html,
body {
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

body {
    font-family: 'Avenir Next', sans-serif;
    font-size: 16px;
    position: relative;
}

    body.block-scroll {
        overflow: hidden;
        height: 100%;
    }

input::-ms-clear {
    display: none;
}

.wrapper {
    width: auto;
    max-width: 940px;
    margin: 0 auto;
    width: 100%;
}

.wrapper-lg {
    max-width: 1350px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    overflow: hidden;
}

.wrapper-m {
    max-width: 1240px;
    width: auto;
    margin: 0 auto;
    width: 100%;
}

.site {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .site > * {
        padding: constant(safe-area-inset-top) constant(safe-area-inset-right) constant(safe-area-inset-bottom) constant(safe-area-inset-left);
        /* iphone x */
    }

.main-header {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.main-content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.main-footer {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.scrollable-content {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* custom check radio */

.check-radio {
    display: inline-block;
    position: relative;
    height: 34px;
    overflow: hidden;
    vertical-align: middle;
}

.check-radio__element {
    display: inline-block;
    position: relative;
    color: #8c8c8c;
    font-size: 19px;
    font-weight: 400;
    line-height: 34px;
    height: 34px;
    width: 34px;
    padding: 0;
    cursor: pointer;
}


    .check-radio__element:after {
        content: '';
        width: 34px;
        height: 34px;
        background-color: transparent;
        border: 2px solid #269e75;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transition: all 0.35s ease;
        -o-transition: all 0.35s ease;
        transition: all 0.35s ease;
    }

    .check-radio__element:before {
        content: '';
        width: 34px;
        height: 34px;
        background-color: transparent;
        border: 2px solid #269e75;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transition: all 0.35s ease;
        -o-transition: all 0.35s ease;
        transition: all 0.35s ease;
    }

    .check-radio__element:hover::after {
        background: #269e75;
    }

.check-radio__input:checked ~ .check-radio__element:before {
    /* background: red; */
}

.check-radio__element:after {
    width: 34px;
    height: 34px;
    border: 0;
    border: 2px solid #269e75;
    -webkit-transition: background ease 0.2s;
    -o-transition: background ease 0.2s;
    transition: background ease 0.2s;
    cursor: pointer;
    /* top: 0.25rem;
    left: 0.25rem; */
}

.check-radio__input {
    display: none;
}

.lt-ie9 .check-radio__input {
    display: inline-block;
    vertical-align: middle;
}

.lt-ie9 .check-radio__element:before,
.lt-ie9 .check-radio__element:after {
    display: none;
}

.check-radio__input:checked ~ .check-radio__element:after {
    background-color: #269e75;
    /* background-image: url('../images/icons/form-check.svg'); */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 20px;
}

.checkbox-tick {
    position: absolute;
    height: 18px;
    top: 50%;
    left: 50%;
    z-index: 100;
    width: 12px;
    margin-top: -9px;
    margin-left: -6px;
}

.check-radio__element span::after {
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #269e75;
    z-index: 200;
}

.check-radio:not(:checked) svg {
    opacity: 0;
}

.check-radio:not(:checked) ~ .check-radio__element span::after {
    -webkit-animation: uncheck .4s linear forwards;
    animation: uncheck .4s linear forwards;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

@-webkit-keyframes uncheck {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes uncheck {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.check-radio__input:checked ~ .check-radio__element svg {
    opacity: 1;
}

.check-radio__input:checked ~ .check-radio__element span::after {
    position: absolute;
    -webkit-animation: check 0.4s linear forwards;
    animation: check 0.4s linear forwards;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}


@-webkit-keyframes check {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}


@keyframes check {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

.check-radio__input:disabled ~ .check-radio__element:after {
    background: #ddd;
}

.check-radio__input[type="radio"] ~ .check-radio__element:before,
.check-radio__input[type="radio"] ~ .check-radio__element:after {
    /* border-radius: 50%; */
}

/* end of custom check radio */

/* upgrade browser */

#upgrade-browser {
    padding: 10px 60px;
    position: relative;
    z-index: 10000;
    text-align: center;
    background: #ffe490;
}

    #upgrade-browser a {
        height: 50px;
        width: 50px;
        display: inline-block;
        margin: 0 5px 0 0;
        font-size: 0;
        vertical-align: middle;
        background: url('../images/browser-sprite.jpg') no-repeat -1000px 0;
    }

        #upgrade-browser a.chrome {
            background-position: 0px 0px;
        }

        #upgrade-browser a.ie {
            background-position: -50px 0px;
        }

        #upgrade-browser a.firefox {
            background-position: -100px 0;
        }

        #upgrade-browser a.opera {
            background-position: -150px 0;
        }

        #upgrade-browser a.safari {
            background-position: -200px 0;
        }

    #upgrade-browser span {
        font-size: 16px;
        line-height: 18px;
        display: inline-block;
        margin: 10px;
    }

    #upgrade-browser .close-warning {
        height: 50px;
        width: 50px;
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
        background: url('../images/browser-sprite.jpg') no-repeat -250px 0;
    }

/* end of upgrade browser */

a {
    color: #269e75;
    text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

.text h1 {
    font-size: 68px;
}

.text h2 {
    font-size: 51px;
}

.text h3 {
    font-size: 42px;
}

.text h4 {
    font-size: 31px;
}

.text h5 {
    font-size: 26px;
}

.text h6 {
    font-size: 19px;
}

.text img[style*='float: left'] {
    margin-right: 30px;
    margin-bottom: 20px;
    max-width: 100%;
    width: auto;
}

.text img[style*='float: right'] {
    margin-left: 30px;
    margin-bottom: 20px;
    max-width: 100%;
    width: auto;
}

.text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #424242;
    margin: 0 0 10px;
}

.text h5 {
    color: #424242;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.text li {
    position: relative;
    padding-left: 35px;
    color: #424242;
    font-size: 16px;
    font-weight: 400;
}

    .text li::before {
        content: '';
        width: 17px;
        height: 1px;
        background-color: #aa198d;
        position: absolute;
        left: 0;
        top: 9px;
    }

select::-ms-expand {
    display: none;
}

.text table {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
}

    .text table thead tr {
        padding: 0 15px 0;
        border-bottom: 1px solid #d0d0d0;
    }

    .text table th {
        color: #424242;
        font-family: "Avenir Next";
        font-size: 12px;
        font-weight: 600;
        line-height: 16px;
        text-transform: uppercase;
        padding: 0 5px 14px;
        text-align: left;
    }

    .text table th,
    .text table td {
        width: 113px;
        max-width: 113px;
        word-wrap: break-word;
        vertical-align: text-top;
    }

        .text table th:first-of-type,
        .text table td:first-of-type {
            padding-left: 15px;
        }

    .text table tbody {
        border-bottom: 1px solid #d0d0d0;
    }

        .text table tbody tr {
            padding: 0 15px 0;
        }

            .text table tbody tr td {
                padding: 24px 8px;
                font-size: 14px;
                position: relative;
                color: #424242;
                line-height: 24px;
                font-weight: 400;
                -webkit-transition: background ease 0.4s;
                -o-transition: background ease 0.4s;
                transition: background ease 0.4s;
            }

            .text table tbody tr:nth-child(odd) td {
                background-color: #f1f1f4;
            }

blockquote {
    margin: 0;
}

    blockquote p {
        color: #204e77;
        font-size: 31px;
        line-height: 42px;
        margin-bottom: 9px;
        position: relative;
        padding-left: 22px;
    }

        blockquote p::before {
            content: '“';
            color: #aa198d;
            font-size: 31px;
            font-weight: 500;
            position: absolute;
            left: 0;
            top: 5px;
            line-height: 1;
        }

        blockquote p::after {
            content: '”';
            color: #aa198d;
            font-size: 31px;
            font-weight: 500;
            position: absolute;
            bottom: -5px;
            line-height: 1;
        }

cite {
    color: #aa198d;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

    cite::before {
        content: '';
        width: 27px;
        height: 1px;
        background: #aa198d;
        display: inline-block;
        vertical-align: middle;
        margin-right: 15px;
    }

.banner {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* title styles */

.title-68 {
    color: #fff;
    font-size: 56px;
    font-weight: 400;
    line-height: 85px;
    margin-bottom: 19px;
}

.title-section {
    color: #424242;
    font-size: 42px;
    font-weight: 400;
    line-height: 55px;
}

    .title-section .green {
        color: #269e75;
        text-decoration: underline;
    }

.title-2,
.text .title-2 {
    color: #424242;
    font-size: 31px;
    font-weight: 400;
    line-height: 42px;
}

.banner__subtitle {
    color: #ffffff;
    font-size: 26px;
    font-weight: 400;
    line-height: 36px;
    margin-bottom: 34px;
}

/* End title styles */

/* teaser sizes and colors */

.teaser--large {
    width: 300px;
}

.teaser--green {
    background-color: #269e75;
}

.teaser--light-green {
    background-color: #69b93d;
}

.teaser--pink {
    background: #fb3449;
}

.teaser--blue {
    background: #204e77;
}

.teaser--purple {
    background-color: #aa198d;
}

/* end teaser sizes and colors */

/* section header */

.section-header {
    margin-bottom: 57px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .section-header.section-header--filters .title-section {
        max-width: 800px;
    }

.section-header--filters select,
.select-val {
    display: inline;
    border: 0px;
    border-bottom: 3px solid #269e75;
    background-color: #fff;
    color: #269e75;
    font-size: 42px;
    font-weight: 400;
    line-height: 55px;
    padding-right: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('/modules/Teva.PIM/Client/images/icons/select-arrow.svg');
    background-position: right center;
    background-repeat: no-repeat;
    outline: none;
}

.select-simulate {
    position: relative;
    display: inline-block;
}

.section-header--filters select option {
    font-size: 16px;
}

.section-header .title-section {
    max-width: 395px;
}

.header-label {
    color: #69b93d;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    text-transform: uppercase;
    text-decoration: underline;
    margin-bottom: 5px;
}

/* end section header */

/* icon styles */

.icon {
    display: block;
}

.icon--clock {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    background-image: url('/modules/Teva.PIM/Client/images/icons/clock-16x16.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.icon--pdf {
    width: 52px;
    height: 65px;
    background-image: url('/modules/Teva.PIM/Client/images/icons/pdf-green.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.icon--lgreen {
    background-color: #9fd142;
}

.icon-filter {
    height: 40px;
    width: 40px;
    border-radius: 38px;
    cursor: pointer;
}

.icon--download {
    display: inline-block;
    background-image: url('/modules/Teva.PIM/Client/images/icons/download.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 18px;
}

/* end icon styles */

/* grid */

.row {
    margin: 0 -10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.col {
    padding: 0 10px;
}

.col-1 {
    width: 8.333333%;
}

.col-2 {
    position: relative;
    width: 100%;
    min-height: 1px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.6666666%;
    flex: 0 0 16.6666666%;
    max-width: 16.6666666%;
}

.col-3 {
    position: relative;
    width: 100%;
    min-height: 1px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    position: relative;
    width: 100%;
    min-height: 1px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-5 {
    width: 41.666667%;
}

.col-6 {
    position: relative;
    width: 100%;
    min-height: 1px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-8 {
    position: relative;
    width: 100%;
    min-height: 1px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

/* slider */

.slider-cont {
    overflow: hidden;
}

    .slider-cont .slider-buttons-cont {
        max-width: 940px;
        width: auto;
        margin: 43px auto 0;
        position: relative;
    }

        .slider-cont .slider-buttons-cont::after {
            content: '';
            height: 1px;
            background-color: #d0d0d0;
            position: absolute;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            left: 0;
            right: 0;
        }

    .slider-cont .slider-buttons {
        width: 100px;
        height: 44px;
        border-radius: 100px;
        border: 2px solid #424242;
        background-color: #ffffff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 0 18px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0 auto;
        position: relative;
        z-index: 3;
    }

    .slider-cont .slider-arrow {
        border: 0;
        outline: 0;
        border-top: 2px solid #424242;
        border-right: 2px solid #424242;
        height: 14px;
        width: 14px;
        background: transparent;
        cursor: pointer;
        padding: 0;
    }

    .slider-cont .slider-left-arrow {
        -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

    .slider-cont .slider-right-arrow {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

/* end slider */

/* text boxes variations */

.text--large p {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.38;
    color: #424242;
}

.three-columns p {
    -webkit-columns: 3;
    columns: 3;
}

.two-columns p {
    -webkit-columns: 2;
    columns: 2;
}

/* spacings */

.pt-186 {
    padding-top: 186px;
}

.pb-186 {
    padding-bottom: 186px;
}

.pt-71 {
    padding-top: 71px;
}

.pb-71 {
    padding-bottom: 71px;
}

.mb-115 {
    margin-bottom: 115px;
}

.mb-44 {
    margin-bottom: 44px;
}

.mb-27 {
    margin-bottom: 27px;
}

.mb-16 {
    margin-bottom: 16px;
}

/*  Btns */

.btn {
    color: #ffffff;
    font-size: 19px;
    font-weight: 400;
    line-height: 26px;
    padding: 0 20px;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    text-decoration: none;
    border: 0;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.07);
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.btn-filter {
    width: 180px;
    font-size: 16px;
    padding: 0 10px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    -ms-flex-item-align: start;
    align-self: flex-start;
    border: 0;
    outline: 0;
    float: right;
    margin-bottom: 20px;
    cursor: pointer;
    margin-left: 15px;
}

.btn--220 {
    min-width: 220px;
}

.btn--primary {
    background-color: #269e75;
}

.btn--green {
    background-color: #69b93d;
}

.btn--light {
    background-color: #ffffff;
    color: #424242;
}

.btn--dark {
    background-color: #424242;
}

.btn--pink {
    background: #fb3449;
}

.btn--blue {
    background: #204e77;
}

.btn--purple {
    background-color: #aa198d;
}

.btn--secondary {
    border: 2px solid #204e77;
    background: #fff;
    color: #204e77;
}

.btn:hover {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.15)), to(rgba(0, 0, 0, 0.15)));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
}

.btn--secondary:hover {
    background: #fff;
    background-image: none;
}

.btn--inactive {
    background-color: #d0d0d0;
}

.btn--register.btn {
    min-width: 220px;
    height: 16px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 44px;
    height: 44px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07), 0 10px 20px rgba(0, 0, 0, 0.07);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07), 0 10px 20px rgba(0, 0, 0, 0.07);
}

.btn--event {
    position: relative;
}

.svg-image-blur {
    /* height: 460px;
    width: 280px; */
    /* filter: url(#blur-effect-1); */
}

.btn--icon::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-left: 16px;
    background-color: rgba(255, 255, 255, 0.1);
}

.btn--icon-globe::after {
    background-image: url('/modules/Teva.PIM/Client/images/icons/globe.svg');
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center center;
}

.btn--icon-send::after {
    background-image: url('/modules/Teva.PIM/Client/images/icons/send-icon.svg');
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center center;
}

.btn--icon-reg::after {
    background-image: url('/modules/Teva.PIM/Client/images/icons/register-btn-icon.svg');
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.btn--icon-continue::after {
    background-image: url('/modules/Teva.PIM/Client/images/icons/arrow-white-btn.svg');
    background-repeat: no-repeat;
    background-size: 17px;
    background-position: center center;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.btn--icon-locked::after {
    background-image: url('/modules/Teva.PIM/Client/images/icons/ock.svg');
    background-repeat: no-repeat;
    /* background-size: 17px; */
    margin-left: 30px;
    background-position: center center;
}

.btn--icon-unsub::after {
    content: '';
    background-image: url('../../images/bookmarks/white-x.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px;
}

.tiles .btn.btn--load-more {
    width: 180px;
    padding: 0 10px;
    text-align: center;
    border-radius: 0;
    display: block;
    margin: 44px auto 0;
    -webkit-transition: width ease 0.4s, border-radius ease 0.2s;
    -o-transition: width ease 0.4s, border-radius ease 0.2s;
    transition: width ease 0.4s, border-radius ease 0.2s;
}

    .tiles .btn.btn--load-more.is-loading {
        width: 60px;
        font-size: 0;
        border-radius: 60px;
        display: block;
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 0;
    }

        .tiles .btn.btn--load-more.is-loading:hover {
            background-image: none;
        }

        .tiles .btn.btn--load-more.is-loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            margin-top: -22px;
            margin-left: -22px;
            bottom: 0;
            height: 44px;
            width: 44px;
            background-image: url('/modules/Teva.PIM/Client/images/icons/loading.svg');
            background-repeat: no-repeat;
            background-size: 44px;
            background-position: center;
            /* transform-origin: center center; */
            -webkit-animation: spin 0.6s 0.4s linear infinite forwards;
            animation: spin 0.6s 0.4s linear infinite forwards;
        }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.btn--load-more {
    width: 180px;
    padding: 0 10px;
    text-align: center;
    border-radius: 0;
    display: block;
    margin: 44px auto 0;
    -webkit-transition: width ease 0.4s, border-radius ease 0.2s;
    -o-transition: width ease 0.4s, border-radius ease 0.2s;
    transition: width ease 0.4s, border-radius ease 0.2s;
}

    .btn--load-more.is-loading {
        width: 60px;
        font-size: 0;
        border-radius: 60px;
        display: block;
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 0;
    }

        .btn--load-more.is-loading:hover {
            background-image: none;
        }

        .btn--load-more.is-loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            margin-top: -22px;
            margin-left: -22px;
            bottom: 0;
            height: 44px;
            width: 44px;
            background-image: url('/modules/Teva.PIM/Client/images/icons/oading.svg');
            background-repeat: no-repeat;
            background-size: 44px;
            background-position: center;
            /* transform-origin: center center; */
            -webkit-animation: spin 0.6s 0.4s linear infinite forwards;
            animation: spin 0.6s 0.4s linear infinite forwards;
        }

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

section.tiles {
    overflow: hidden;
}

/* tiles colors */
/* 
.tile--fullscr-img .tile__wrapper {
    background-color: #000;
} */

.tile--dark-green .tile__wrapper {
    background-color: #269e75;
    color: #269e75;
}

.tile--med-green .tile__wrapper {
    background-color: #69b93d;
    color: #69b93d;
}

.tile--light-green .tile__wrapper {
    background-color: #9fd142;
    color: #9fd142;
}

.tile--green .tile__wrapper {
    background-color: #357875;
    color: #357875;
}

.tile--purple .tile__wrapper {
    background-color: #aa198d;
    color: #aa198d;
}

.tile--blue .tile__wrapper {
    background-color: #204e77;
    color: #204e77;
}

.tile--orange .tile__wrapper {
    background-color: #fb6b0a;
    color: #fb6b0a;
}

.tile--past-event .tile__wrapper {
    background-color: #357875 !important;
}

.tile--past-event .tile__time-big .day,
.tile--past-event .tile__header,
.tile--past-event .tile__info {
    opacity: 0.5;
}

/* tile__content-colors */

.tile--headlinebox.tile--blue .tile__content {
    background-color: #204e77;
}

.tile--headlinebox.tile--purple .tile__content {
    background-color: #aa198d;
}

.tile--headlinebox.tile--orange .tile__content {
    background-color: #fb6b0a;
}

.tile--headlinebox.tile--green .tile__content {
    background-color: #357875;
}

.tile--headlinebox.tile--light-green .tile__content {
    background-color: #9fd142
}

.tile--headlinebox.tile--med-green .tile__content {
    background-color: #69b93d;
}

.tile--headlinebox.tile--dark-green .tile__content {
    background-color: #269e75;
}
/* tile img before */
/* .tile--blured.tile--fullscr-img .tile__img::after {
    background-color: #000;
} */

.tile--blured.tile--dark-green .tile__img::after {
    background-color: #269e75;
}

.tile--blured.tile--med-green .tile__img::after {
    background-color: #69b93d;
}

.tile--blured.tile--light-green .tile__img::after {
    background-color: #9fd142;
}

.tile--blured.tile--green .tile__img::after {
    background-color: #357875;
}

.tile--blured.tile--purple .tile__img::after {
    background-color: #aa198d;
}

.tile--blured.tile--blue .tile__img::after {
    background-color: #204e77;
}

.tile--blured.tile--orange .tile__img::after {
    background-color: #fb6b0a;
}

.tile--blured.tile--past-event .tile__img::after {
    background-color: #357875 !important;
}
/* end tile img before */
/* end tile colors */

.non-touch .tile-slider-2 .tile__wrapper::before,
.non-touch .tile-event .tile__wrapper::before,
.non-touch .tile .tile__wrapper::before,
.non-touch .tile--sqr-img .tile__content::before,
.non-touch .tile--headlinebox .tile__content::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    -webkit-transition: background ease 0.4s;
    -o-transition: background ease 0.4s;
    transition: background ease 0.4s;
}

.non-touch .tile.tile--blured .tile__wrapper::before {
    z-index: 1000;
}

.non-touch .tile-event:hover .tile__wrapper::before,
.non-touch .tile-slider-2 .tile-slider:hover .tile__wrapper::before,
.non-touch .tile:hover .tile__wrapper::before,
.non-touch .tile--sqr-img:hover .tile__content::before,
.non-touch .tile--headlinebox:hover .tile__content::before {
    background: rgba(0, 0, 0, 0.2);
    z-index: 1000;
}


.non-touch .tile--fullscr-img:hover .tile__wrapper::before,
.non-touch .tile--sqr-img:hover .tile__wrapper::before {
    background: rgba(0, 0, 0, 0);
}

.non-touch .tile--sqr-img:hover img,
.non-touch .tile--circle-img:hover img,
.non-touch .tile--triangle-img:hover .tile__img img,
.non-touch .tile--fullscr-img:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    z-index: 1000;
}
/* .non-touch .tiles__col .tile--large.tile--blured.tile:hover .tile__img::after {
    opacity: 0;
    z-index: -1;
} */
/* event hover */

.non-touch .tile-event:hover .tile__label {
    z-index: 1001;
}

.non-touch .tile-event:hover .tile__anchor,
.non-touch .tile-event:hover .tile__info,
.non-touch .tile-event:hover .tile__subtext,
.non-touch .tile-event:hover .tile__title {
    position: relative;
    z-index: 1001;
}

/* slider hover */

.non-touch .tile-slider-2 .tile-slider:hover .tile__header,
.non-touch .tile-slider-2 .tile-slider:hover .tile__label,
.non-touch .tile-slider-2 .tile-slider:hover .tile__content {
    z-index: 1001;
}

/* normal tiles hover */

.non-touch .tile:hover .tile__content {
    z-index: 1000;
}

.non-touch .tile:hover .tile__label {
    z-index: 1001;
}

.non-touch .tile:hover .tile__header,
.non-touch .tile:hover .tile__anchor,
.non-touch .tile:hover .tile__info,
.non-touch .tile:hover .tile__subtext,
.non-touch .tile:hover .tile__title {
    position: relative;
    z-index: 1001;
}

/* Sitemap */

.sitemap ul {
    list-style: disc;
    list-style-position: inside;
    color: #269e75;
}

    .sitemap ul ul {
        padding-left: 20px;
    }

.sitemap > ul > li > a {
    font-size: 19px;
}

.sitemap ul li a {
    display: inline-block;
    margin-bottom: 10px;
    text-decoration: none;
}

    .sitemap ul li a:hover,
    .sitemap ul li a:focus {
        text-decoration: underline;
    }

/* end Sitemap */
/* breadcrumb */
.breadcrumb {
    margin-bottom: 20px;
}
.endBreadcrumb::after {
    border-bottom: none !important;
    border-right: none !important;
}
.breadcrumb__item {
    opacity: 0.5;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    text-transform: uppercase;
    display: inline-block;
}

    .breadcrumb__item::after {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 3.5px 0 3.5px 4px;
        border-color: transparent transparent transparent #92ceba;
        display: inline-block;
        vertical-align: middle;
        margin: -3px 2px 0 7px;
    }

    .breadcrumb__item:last-of-type::after {
        display: none;
    }


.breadcrumb__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.breadcrumb__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

    .breadcrumb__list li {
        position: relative;
        padding-right: 20px;
    }

        .breadcrumb__list li::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 0;
            height: 6px;
            width: 6px;
            margin-top: -3px;
            margin-right: 8px;
            border-bottom: 1px solid #000;
            border-right: 1px solid #000;
            -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }

    .breadcrumb__list a, .breadcrumb__list span {
        font-size: 13px;
        text-decoration: underline;
    }

    .breadcrumb__list li:last-of-type span {
        text-decoration: none;
    }

.breadcrumb__container .btn-back {
    font-size: 13px;
    color: #25272a;
    position: relative;
    padding-left: 10px;
    line-height: 1;
    text-decoration: none;
}

.btn-back::after {
    content: '';
    position: absolute;
    left: 0;
    height: 6px;
    width: 6px;
    top: 4px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}
/* end breadcrumb */
.btns-cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 30px;
}
/* Modal list */
.icon-filter {
    margin: 0 5px;
    margin-right: 10px;
    cursor: pointer;
}

    .icon-filter.with-menu {
        position: relative;
    }

.modal__list {
    position: absolute;
    left: 50%;
    margin-left: -45px;
    right: 0;
    color: #fff;
    width: 90px;
    list-style: none;
    z-index: 100;
    top: 40px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
    -o-transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
    transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
    -webkit-box-shadow: 0px 0px 10px 0px #e2e2e2;
    box-shadow: 0px 0px 10px 0px #e2e2e2;
    background: #fff;
}

    .modal__list li {
        cursor: pointer;
        /* width: 50%; */
        margin: 0;
        text-align: center;
        display: block;
        background: #fff;
        -webkit-transition: background ease 0.4s;
        -o-transition: background ease 0.4s;
        transition: background ease 0.4s;
        position: relative;
        z-index: 201;
    }

        .modal__list li a {
            text-decoration: none;
            display: block;
            padding: 15px 0 15px;
            position: relative;
        }

            .modal__list li a::after {
                content: '';
                position: absolute;
                right: 50%;
                margin-right: -10px;
                width: 20px;
                height: 1px;
                bottom: 0;
                background: #d0d0d0;
            }

        .modal__list li:hover {
            background: #f1f1f4;
        }

        .modal__list li:last-of-type a::after {
            display: none;
        }

    .modal__list:after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        height: 10px;
        width: 10px;
        top: -5px;
        -webkit-box-shadow: -1px -1px 2px 0px #e2e2e2;
        box-shadow: -1px -1px 2px 0px #e2e2e2;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        z-index: 200;
        background: #fff;
    }

    .modal__list.visible {
        opacity: 1;
        visibility: visible;
    }

/* end Modal list */
/* ==========================================================================
   Media Queries
   ========================================================================== */

@media only screen and (max-width: 1350px) {
    .wrapper-lg {
        padding: 0 41px;
    }
}

@media only screen and (max-width: 1023px) {
    .title-2,
    .text .title-2 {
        font-size: 19px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    blockquote p {
        font-size: 26px;
        font-weight: 400;
        line-height: 1.38;
    }

    .text--large {
        font-size: 16px;
        line-height: 1.5;
        color: #424242;
    }

    .teaser--large {
        width: 222px;
    }

    .icon--pdf {
        width: 32px;
        height: 39px;
    }
}

@media only screen and (max-width: 940px) {
    .wrapper {
        padding: 0 41px;
    }

    .profile__menu {
        padding: 20px 20px 27px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-line-pack: end;
        align-content: flex-end;
    }

    .profile {
        position: static;
        padding-top: 44px;
        margin-left: auto;
    }

    .profile-icon {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .section-header {
        margin-bottom: 20px;
    }

    .title-section,
    .section-header--filters select,
    .select-val {
        font-size: 26px;
        font-weight: 400;
        line-height: 1.38;
    }

    .section-header--filters select {
        font-size: 1em;
        line-height: inherit;
    }
}

@media screen and (max-width: 767px) {
    .text--large p {
        font-size: 19px;
    }

    .teaser--large {
        width: 100%;
    }

    .icon--pdf {
        width: 24px;
        height: 24px;
    }

    .pt-186 {
        padding-top: 44px;
    }

    .pb-186 {
        padding-bottom: 44px;
    }

    .pt-71 {
        padding-top: 44px;
    }

    .pb-71 {
        padding-bottom: 44px;
    }

    .mb-115 {
        margin-bottom: 44px;
    }
}

@media screen and (max-width: 640px) {
    .checkbox-tick {
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        margin-top: 0;
    }

    .header-label {
        margin-top: 20px;
    }

    .section-header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .col-12-sm {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    blockquote p {
        font-size: 19px;
        line-height: 1.37;
        color: #204e77;
    }

    .three-columns p {
        -webkit-columns: 2;
        columns: 2;
    }

    .wrapper {
        width: 100%;
        padding: 0 20px;
    }

    .three-columns p,
    .two-columns p {
        -webkit-columns: 1;
        columns: 1;
    }

    .section-header--filters select {
        font-size: 19px;
    }

    .mb-115 {
        margin-bottom: 44px;
    }

    .check-radio__element {
        line-height: 28px;
        cursor: pointer;
        width: 28px;
        height: 28px;
    }

        .check-radio__element:before,
        .check-radio__element:after {
            width: 28px;
            height: 28px;
        }

        .check-radio__element:after {
            height: 28px;
            width: 28px;
        }
}

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    .wrapper-lg, .wrapper {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

    .main-header,
    .header-wrapper,
    .hb,
    .aside,
    .main-footer,
    .article-footer,
    .article header .btns-cont {
        display: none;
    }

    .article {
        width: 100%;
        margin: 0 !important;
    }
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.fl {
    float: left !important;
}

.fr {
    float: right !important;
}

.center {
    text-align: center !important;
}

.va-top {
    vertical-align: top !important;
}

.va-bottom {
    vertical-align: bottom !important;
}

.va-middle {
    vertical-align: middle !important;
}

.align-left {
    text-align: left !important;
}

.align-right {
    text-align: right !important;
}

.justify-content {
    text-align: justify !important;
    font-size: 0.1px !important;
    /*fix for IE*/
}

    .justify-content:after {
        content: '' !important;
        display: inline-block !important;
        width: 100% !important;
    }

.nowrap {
    white-space: nowrap !important;
}

.no-margin {
    margin: 0 !important;
}

.hidden {
    display: none !important;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
}

    .visuallyhidden.focusable:active,
    .visuallyhidden.focusable:focus {
        clip: auto;
        -webkit-clip-path: none;
        clip-path: none;
        height: auto;
        margin: 0;
        overflow: visible;
        position: static;
        width: auto;
        white-space: inherit;
    }

.invisible {
    visibility: hidden;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

/* Spinner */
.sk-circle {
    width: 40px;
    height: 40px;
    position: relative;
    margin-right: 10px;
    margin-left: 5px;
}

    .sk-circle .sk-child {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }

        .sk-circle .sk-child:before {
            content: '';
            display: block;
            margin: 0 auto;
            width: 15%;
            height: 15%;
            background-color: #333;
            border-radius: 100%;
            -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
            animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
        }

    .sk-circle .sk-circle2 {
        -webkit-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    .sk-circle .sk-circle3 {
        -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg);
    }

    .sk-circle .sk-circle4 {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .sk-circle .sk-circle5 {
        -webkit-transform: rotate(120deg);
        -ms-transform: rotate(120deg);
        transform: rotate(120deg);
    }

    .sk-circle .sk-circle6 {
        -webkit-transform: rotate(150deg);
        -ms-transform: rotate(150deg);
        transform: rotate(150deg);
    }

    .sk-circle .sk-circle7 {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .sk-circle .sk-circle8 {
        -webkit-transform: rotate(210deg);
        -ms-transform: rotate(210deg);
        transform: rotate(210deg);
    }

    .sk-circle .sk-circle9 {
        -webkit-transform: rotate(240deg);
        -ms-transform: rotate(240deg);
        transform: rotate(240deg);
    }

    .sk-circle .sk-circle10 {
        -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        transform: rotate(270deg);
    }

    .sk-circle .sk-circle11 {
        -webkit-transform: rotate(300deg);
        -ms-transform: rotate(300deg);
        transform: rotate(300deg);
    }

    .sk-circle .sk-circle12 {
        -webkit-transform: rotate(330deg);
        -ms-transform: rotate(330deg);
        transform: rotate(330deg);
    }

    .sk-circle .sk-circle2:before {
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s;
    }

    .sk-circle .sk-circle3:before {
        -webkit-animation-delay: -1s;
        animation-delay: -1s;
    }

    .sk-circle .sk-circle4:before {
        -webkit-animation-delay: -0.9s;
        animation-delay: -0.9s;
    }

    .sk-circle .sk-circle5:before {
        -webkit-animation-delay: -0.8s;
        animation-delay: -0.8s;
    }

    .sk-circle .sk-circle6:before {
        -webkit-animation-delay: -0.7s;
        animation-delay: -0.7s;
    }

    .sk-circle .sk-circle7:before {
        -webkit-animation-delay: -0.6s;
        animation-delay: -0.6s;
    }

    .sk-circle .sk-circle8:before {
        -webkit-animation-delay: -0.5s;
        animation-delay: -0.5s;
    }

    .sk-circle .sk-circle9:before {
        -webkit-animation-delay: -0.4s;
        animation-delay: -0.4s;
    }

    .sk-circle .sk-circle10:before {
        -webkit-animation-delay: -0.3s;
        animation-delay: -0.3s;
    }

    .sk-circle .sk-circle11:before {
        -webkit-animation-delay: -0.2s;
        animation-delay: -0.2s;
    }

    .sk-circle .sk-circle12:before {
        -webkit-animation-delay: -0.1s;
        animation-delay: -0.1s;
    }

@-webkit-keyframes sk-circleBounceDelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-circleBounceDelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
/* Spinner */

.copyright__text {
    font-size: 12px;
}