/* Common styles */

input, textarea, button {
    -webkit-appearance: none;
}

html {
    height: 100%;
    min-height: 100%;
}

body {
    overflow-x: hidden;
    position: relative;

    width: 100%;
    min-width: 320px;
    min-height: 100%;

    background: #f8f8f8;
    background-size: cover;

    font-family: Arial, Helvetica, sans-serif;
    color: #010101;

    transition: left 1s;
}
/* Common styles END */


/* Framework */
.input-text {
    display: block;

    width: 100%;
    height: 45px;

    padding: 0 14px;

    border: 1px solid #cdcdcd;
    border-radius: 3px;

    background: #fff;

    font-size: 14px;
    line-height: 43px;
}
.input-submit {
    display: inline-block;

    height: 47px;

    padding: 0 35px 2px 35px;

    border: 0;
    border-radius: 3px;

    background: #e61703;

    font-size: 20px;
    line-height: 43px;
    color: #fff;

    cursor: pointer;

    transition: 0.15s ease background-color;
}
    .input-submit:hover {
        background: #c73a2c;
    }

.section-title {
    margin-bottom: 5px;

    font-size: 24px;
    line-height: 32px;
    font-weight: normal;
}
    .section-title .icon.male {
        top: -1px;
    }
    .section-title .icon.female {
        top: 2px;
    }
    .section-title .share-button {
        display: none;

        width: 36px;
        height: 36px;

        border: 1px solid #e6e6e6;
        border-radius: 3px;

        background: #f8f8f8 url(../images/icons/share.svg) no-repeat 50% 50%;
        background-size: 20px 20px;

        transition: 0.15s ease border-color;
    }

.icon {
    display: inline-block;
    position: relative;
}
    .icon.male {
        width: 16px;
        height: 15px;

        background: url(../images/icons/male.svg) no-repeat;
        background-size: contain;
    }
    .icon.female {
        width: 14px;
        height: 18px;

        background: url(../images/icons/female.svg) no-repeat;
        background-size: contain;
    }

.input-radio {
    display: none;
}
.input-radio + label {
    position: relative;

    padding-left: 17px;

    cursor: pointer;
}
.input-radio + label:before {
    content: '';

    display: block;
    position: absolute;

    top: 1px;
    left: 0;

    width: 12px;
    height: 12px;

    border: 1px solid #010101;
    border-radius: 50%;

    transition: 0.15s ease border-color;
}
    .input-radio + label:hover:before {
        border-color: #e61f25;
    }

.input-radio + label:after {
    content: '';

    opacity: 0;

    position: absolute;

    top: 5px;
    left: 4px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #e61f25;

    transition: 0.15s ease opacity;
}
.input-radio:checked + label:before {
    border-color: #e61f25;
}
.input-radio:checked + label:after {
    opacity: 1;
}

.input-checkbox {
    display: none;
}
.input-checkbox + label {
    position: relative;

    padding-left: 27px;

    cursor: pointer;
}
.input-checkbox + label:before {
    content: '';

    display: block;
    position: absolute;

    top: 1px;
    left: 0;

    width: 16px;
    height: 16px;

    border: 1px solid #010101;
    border-radius: 2px;

    transition: 0.15s ease border-color;
}
    .input-checkbox + label:hover:before {
        border-color: #ef8b8e;
    }

.input-checkbox + label:after {
    content: '';

    opacity: 0;

    display: block;
    position: absolute;

    top: 6px;
    left: 3px;

    width: 12px;
    height: 9px;

    background: url(../images/icons/tick.svg) no-repeat;
    background-size: contain;

    transition: 0.15s ease opacity;
}
.input-checkbox:checked + label:before {
    border-color: #ef8b8e;
}
.input-checkbox:checked + label:after {
    opacity: 1;
}
/* Framework END */
.width-wrap {
    min-width: 320px;
    max-width: 1020px;

    margin: 0 auto;
    padding: 0 10px;
}

.wrap {
    position: relative;
    overflow-x: hidden;

    width: 100%;
    min-height: 100%;

    padding-bottom: 260px;
}

.fadescreen {
    z-index: 300;

    content: '';

    display: none;
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.5);

    transition: 0.3s ease background;
}

.menu-opened body {
    overflow: hidden;
    position: fixed;

    height: 100%;
}

header {
    background: #ca2929;
    text-align: center;
}
    header:after {
        content: '';

        display: block;

        clear: both;
    }
    header .width-wrap {
        min-width: 675px;
    }

    header .menu-twitter .twitter-custom-follow-button {
        font-size: 12px;
        margin-right: 0px;
        padding-right: 5px;
        height: 30px;
        line-height: 30px;
    }

    header .menu-twitter .twitter-custom-follow-button:before {
        width: 35px;
        height: 30px;
        margin-right: 5px;
        background-size: 18px 18px;
    }
    header .menu-twitter .follow-button-container {
        /*width: 170px;*/
    }
    header .menu-twitter {
        display: inline-block;
        height: 45px;
        padding-top: 7px;
    }
    header .header-menu {
        display: inline-block;
        vertical-align: top;
        margin-left: 5px;
    }

        header .header-menu ul {
            text-align: center;
            letter-spacing: -5px;
        }
            header .header-menu ul li {
                display: inline-block;
                letter-spacing: 0;
            }
                header .header-menu ul li a {
                    display: block;

                    padding: 0 39px;

                    font-size: 18px;
                    line-height: 45px;
                    color: #fff;
                    text-transform: uppercase;
                    text-decoration: none;

                    transition: 0.15s ease background;
                }
                    header .header-menu ul li:hover a {
                        background: #8d1d1d;
                    }
                    header .header-menu ul li.active a {
                        background: #8d1d1d;
                    }

.wiki-button-container {
    margin-top: 15px;
    margin-left: 0;
    text-align: center;
}

.wiki-button-container a.wiki-link {
    color: #000;
    transition: 0.15s ease color;
}

.mobile-menu .twitter-custom-follow-button{
    height: 28px !important;
    margin-top: 9px;
    width: 183px;
    margin-left: 8px;
}

.mobile-menu .menu-twitter {
    width: 96px;
    height: 43px !important;
}

.mobile-menu .follow-button-container .twitter-custom-follow-button {
    line-height: 29px;
    padding-left: 0px;
    font-size: 12px;
    text-transform: none;
}

.mobile-menu .follow-button-container .twitter-custom-follow-button:before {
    content: '';
    display: block;
    float: left;
    width: 30px;
    height: 28px;
    margin-right: 0px;
    background: #535353 url(../images/icons/twitter.svg) no-repeat 50% 50%;
    background-size: 22px 15px;
}

.mobile-menu {
    z-index: 350;

    display: none;
    position: absolute;

    right: 0;

    height: 100%;

    transform: translateZ(0);

    will-change: transform;
}
    .mobile-menu .menu-toggler {
        z-index: 25;

        float: left;

        top: 0;
        right: 0;

        width: 43px;
        height: 43px;

        border-radius: 0 0 0 3px;
        background: rgba(202, 41, 41, 0.6);

        cursor: pointer;
    }
        .mobile-menu .menu-toggler:before {
            content: '';

            display: block;
            position: absolute;

            top: 10px;
            left: 10px;

            width: 23px;
            height: 23px;

            background: url(../images/icons/menu.svg) no-repeat;
            background-size: contain;

            transition: 0.3s ease transform;
        }
            .menu-opened .mobile-menu .menu-toggler:before {
                -webkit-transform: rotate(-90deg);
                        transform: rotate(-90deg);
            }

    .mobile-menu nav {
        display: block;
        position: relative;
        float: left;

        width: 0;
        height: 100%;

        background: #ca2929;
    }
        .mobile-menu nav ul {
            display: block;

            width: 205px;
        }
            .mobile-menu nav ul li {
                display: block;

                width: 205px;

                border-bottom: 1px solid #cf3f3f;
            }
                .mobile-menu nav ul li a {
                    display: block;

                    width: 205px;
                    height: 43px;

                    padding-left: 15px;

                    font-size: 12px;
                    line-height: 45px;
                    color: #fff;
                    text-transform: uppercase;
                    text-decoration: none;
                }

.top-section {
    margin-bottom: 30px;
}
    .top-section .width-wrap {
        padding: 74px 0 6px;

        background: url(../images/top-bg.jpg) no-repeat 50% 0;
    }
    .top-section .logo {
        display: block;

        width: 383px;
        height: 139px;

        margin: 0 auto 19px;

        background: url(../images/logo.png) no-repeat 50% 50%;
        background-size: contain;
    }
    .top-section .text {
        font-family: Helvetica, Arial, sans-serif;
        font-size: 24px;
        font-weight: bold;
        line-height: 32px;
        color: #fff;
        text-transform: uppercase;
        text-align: center;
    }

.subscribe-section {
    margin-bottom: 35px;
}
    .subscribe-section .subscribe-block {
        position: relative;

        max-width: 558px;

        margin: 0 auto;
    }
        .subscribe-section .subscribe-block .result {
            padding: 10px;

            font-size: 18px;
            line-height: 25px;
            font-weight: bold;
            text-align: center;
        }
        .subscribe-section .subscribe-block .error {
            display: none;
            z-index: 20;
            position: absolute;
            top: 100%;
            left: 7px;
            margin-top: 10px;
            padding: 0 12px 0 7px;
            border: 1px solid #c8c8c8;
            border-radius: 3px;
            background: #fff;
            font-size: 12px;
            line-height: 35px;
        }
            .subscribe-section .subscribe-block.has-error .error {
                display: block;
            }
            .subscribe-section .subscribe-block .error:before {
                content: '';
                display: block;
                position: absolute;
                left: 9px;
                bottom: 100%;
                width: 0;
                height: 0;
                border-style: solid;
                border-width: 0 9px 8px 9px;
                border-color: transparent transparent #c8c8c8 transparent;
            }
            .subscribe-section .subscribe-block .error:after {
                content: '';
                display: block;
                position: absolute;
                left: 10px;
                bottom: 100%;
                width: 0;
                height: 0;
                border-style: solid;
                border-width: 0 8px 7px 8px;
                border-color: transparent transparent #ffffff transparent;
            }
            .subscribe-section .subscribe-block .error .error-icon {
                display: block;
                float: left;
                width: 19px;
                height: 19px;
                margin: 7px 7px 0 0;
                background: url(../images/icons/error.svg) no-repeat;
            }

        .subscribe-section .subscribe-block .input-text {
            padding-right: 60px;

            font-size: 18px;
        }
            .subscribe-section .subscribe-block.has-error .input-text {
                border: 1px solid #f3c7c7 !important;

                background: #ffe4e4 !important;
            }

        .subscribe-section .subscribe-block .input-submit {
            position: absolute;

            top: 0;
            right: 0;

            width: 61px;
            height: 45px;

            padding: 0 18px;

            border-radius: 0 3px 3px 0;

            background: #e61703 url(../images/icons/arrowRight.svg) no-repeat 50% 50%;
            background-size: 16px 23px;

            cursor: pointer;

            font-weight: bold;
        }
            .subscribe-section .subscribe-block .input-submit:hover {
                background-color: #c73a2c;
            }

.timer-container {

}
    .timer-container .timer {
        z-index: 1;

        position: absolute;

        top: 50%;

        width: 100%;

        margin: 0;

        transform: translateY(-50%);
    }
        .timer-container .timer ul {
            width: 8.3%;
            height: 40px;

            margin: 5px 1%;

            font-size: 14px !important;
            line-height: 40px;
        }
            .timer-container .timer ul li a div div.inn {
                font-size: 32px;
            }
            .timer-container .timer .flip-clock-dot {
                left: 50%;

                width: 6px;
                height: 6px;

                transform: translateX(-50%);
            }
                .timer-container .timer .flip-clock-dot.top {
                    top: 25%;
                }
                .timer-container .timer .flip-clock-dot.bottom {
                    bottom: 50%;
                }

            .timer-container .timer .flip-clock-divider {
                width: 3.5%;
                height: 65px;
            }
                .timer-container .timer .flip-clock-divider .flip-clock-label {
                    top: auto;
                    right: -45px;
                    bottom: 0;

                    font-size: 12px;
                    color: #fff;

                    text-shadow: 0 1px 1px #000;
                }
                .timer-container .timer .flip-clock-divider.minutes .flip-clock-label {
                    right: -53px;
                }
                .timer-container .timer .flip-clock-divider.seconds .flip-clock-label {
                    right: -55px;
                }

.episode-section {
    margin-bottom: 43px;
}
    .episode-section .sc-invite {
        position: relative;
        overflow: hidden;

        width: 100%;

        margin-top: 15px;
    }
        .episode-section .sc-invite iframe {
            display: block;
            position: absolute;

            top: 0;
            left: 0;

            width: 100%;
        }
        .episode-section .sc-invite .transparent {
            display: block;

            width: 100%;
        }

    .episode-section .episode-container {

    }
        .episode-section .episode-container .video-container {
            position: relative;

            background: #000;
        }
            .episode-section .episode-container .video-container .transparent {
                display: block;

                width: 100%;
            }
            .episode-section .episode-container .video-container .video-container-inner {
                position: absolute;

                top: 0;
                left: 0;

                width: 100%;
                height: 100%;
            }
            .episode-section .episode-container .video-container .share-button {
                z-index: 20;
                display: none;
                position: absolute;
                top: 5px;
                left: 5px;
                width: 66px;
                height: 46px;
                border: 1px solid #e6e6e6;
                border-radius: 3px;
                background: #f8f8f8 url(../images/icons/share.svg) no-repeat 50% 5px;
                padding-top: 27px;
                background-size: 20px 20px;
                transition: 0.15s ease border-color;
                text-align: center;
                text-decoration: none;
                color: #000;
            }
            .episode-section .episode-container .video-container .poster {
                position: relative;
            }
                .episode-section .episode-container .video-container .poster img {
                    display: block;

                    width: 100%;
                }
                .episode-section .episode-container .video-container .poster .play {
                    display: block;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    width: 85px;
                    height: 85px;
                    border-radius: 50%;
                    background: rgba(0,0,0,0.5) url(../images/icons/play.svg) no-repeat 50% 50%;
                    background-size: 75px 75px;
                    transform: translate(-50%, -50%);
                    transition: 0.15s ease opacity;
                }

                .jw-state-idle .jw-display-icon-container.jw-background-color.jw-reset, .jw-state-paused .jw-display-icon-container.jw-background-color.jw-reset {
                    display: block;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    width: 85px;
                    height: 85px;
                    border-radius: 50%;
                    background: rgba(0,0,0,0.5) url(../images/icons/play.svg) no-repeat 50% 50%;
                    transform: translate(-50%, -50%);
                    transition: 0.15s ease opacity;
                }

                .jw-state-idle .jwplayer:hover .jw-display-icon-container.jw-background-color.jw-reset, .jw-state-paused .jwplayer:hover .jw-display-icon-container.jw-background-color.jw-reset {
                    background: rgba(0,0,0,0.5) url(../images/icons/play.svg) no-repeat 50% 50% !important;
                }

                .jw-state-idle .jw-icon.jw-icon-display.jw-button-color.jw-reset, .jw-state-paused .jw-icon.jw-icon-display.jw-button-color.jw-reset {
                    display: none !important;
                }

                .jw-skin-seven .jw-display-icon-container {
                    border: none !important;
                }

                .jw-state-idle .jw-display-icon-container {
                    margin: 0 !important;
                }

                .jw-skin-seven .jw-button-color:hover {
                    color: white !important;
                }

                    .episode-section .episode-container .video-container.active .poster {
                        display: none;
                    }
                    /*.episode-section .episode-container .video-container.active video {*/
                    .episode-section .episode-container .video-container.active .player-container {
                        /*display: block;*/

                        /*max-height: 561px;*/
                    }
                    .flowplayer.is-playing {
                        z-index: 100;
                    }

            /*.episode-section .episode-container .video-container video {*/
            .episode-section .episode-container .video-container .player-container {
                /*display: none;*/

                width: 100%;
            }

        .episode-section .episode-container .info-container {
            position: relative;

            padding: 9px 10px 13px 16px;

            border: 1px solid #e7e7e7;
        }
            .episode-section .episode-container .info-container .description {
                padding-right: 220px;

                font-size: 18px;
                line-height: 24px;
                min-height: 72px;
                height: 72px;
                vertical-align: middle;
                display: table-cell;
            }
                .episode-section .episode-container .info-container .description a {
                    color: #000;

                    transition: 0.15s ease color;
                }
                    .episode-section .episode-container .info-container .description a:hover {
                        color: #ca2929;
                    }

            .episode-section .episode-container .info-container .socials {
                position: absolute;

                top: 50%;
                right: 0;

                transform: translateY(-50%);
                width: 220px;
            }
                .episode-section .episode-container .info-container .socials .reddit-vote-container {
                    margin-top: 10px;
                }

    .episode-section .materials-container {
        margin-top: 15px;

        padding: 0 0 15px;

        background: #eceaea;
    }
        .episode-section .materials-container .materials-list {
            padding: 8px;
        }
            .episode-section .materials-container .materials-list:after {
                content: '';

                display: block;

                clear: both;
            }
            .episode-section .materials-container .materials-list .item {
                float: left;

                width: 25%;

                margin-bottom: 6px;
                padding: 4px;

                cursor: pointer;
            }
/*                .episode-section .materials-container .materials-list .item:nth-child(n+9) {
                    display: none;
                }
                    .episode-section .materials-container.full .materials-list .item:nth-child(n+9) {
                        display: block;
                    }*/

                .episode-section .materials-container .materials-list .item .img-container {
                    position: relative;

                    margin-bottom: 5px;

                    border: 3px solid transparent;

                    transition: 0.15s ease border-color;
                }
                    .episode-section .materials-container .materials-list .item:hover .img-container {
                        border-color: #707070;
                    }
                    .episode-section .materials-container .materials-list .item.active .img-container {
                        border-color: #e81605;
                    }
                    .episode-section .materials-container .materials-list .item .img-container img {
                        display: block;

                        width: 100%;
                    }
                    .episode-section .materials-container .materials-list .item .img-container .duration {
                        position: absolute;

                        right: 5px;
                        bottom: 5px;

                        height: 19px;

                        padding: 0 6px;

                        background: rgba(0,0,0,0.6);

                        font-size: 12px;
                        line-height: 21px;
                        font-weight: bold;
                        color: #fff;
                    }

                .episode-section .materials-container .materials-list .item .name {
                    overflow: hidden;

                    height: 40px;

                    padding: 0 6px;

                    font-size: 16px;
                    line-height: 20px;
                    text-overflow: ellipsis;

                    transition: 0.15s ease color;
                }
                    .episode-section .materials-container .materials-list .item:hover .name {
                        color: #e61703;
                    }

        .episode-section .materials-container .button-container {
            text-align: center;
        }
            .episode-section .materials-container .button-container .show-more {
                display: inline-block;

                height: 27px;

                padding: 0 9px;

                border-radius: 3px;

                background: #b1b1b1;

                font-size: 12px;
                line-height: 29px;
                font-weight: bold;
                color: #fff;
                text-transform: uppercase;
                text-decoration: none;

                transition: 0.15s ease background-color;
            }
                .episode-section .materials-container .button-container .show-more:hover {
                    background: #e61703;
                }

            .episode-section .section-bottom {
                font-family: Arial, Helvetica, sans-serif;
                font-size: 24px;
                font-weight: normal;
                text-align: center;
                margin-bottom: 30px;
            }
            .episode-section .section-bottom .row-section {
                margin-top: 15px;
            }

.episodes-section {
    margin-bottom: 23px;
}
    .episodes-section .width-wrap {
        position: relative;
    }
    .episodes-section .socials {
        position: absolute;

        top: -13px;
        right: -10px;

        width: 230px;
    }
    .episodes-section .share-button {
        z-index: 20;

        display: none;
        position: relative;

        top: 9px;
        left: 5px;

        width: 36px;
        height: 36px;

        border: 1px solid #e6e6e6;
        border-radius: 3px;

        background: #f8f8f8 url(../images/icons/share.svg) no-repeat 50% 50%;
        background-size: 20px 20px;

        transition: 0.15s ease border-color;
    }
    .episodes-section .section-bottom {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 24px;
        font-weight: normal;
        text-align: center;
        margin-bottom: 30px;
    }
    .episodes-section .section-bottom .row-section {
        margin-top: 15px;
    }

    .episodes-section .episodes-list {
        margin: 0 -10px;
    }
        .episodes-section .episodes-list:after {
            content: '';

            display: block;

            clear: both;
        }
        .episodes-section .episodes-list .item {
            display: block;
            position: relative;
            float: left;

            width: 33.333333%;

            margin-bottom: 20px;
            padding: 0 10px;

            text-decoration: none;
        }
            .episodes-section .episodes-list .item:after {
                content: '';

                opacity: 0;

                display: block;
                position: absolute;

                top: 50%;
                left: 50%;

                width: 60px;
                height: 60px;

                border-radius: 50%;

                background: rgba(0,0,0,0.5) url(../images/icons/play.svg) no-repeat 50% 50%;
                background-size: 50px 50px;

                transform: translate(-50%, -50%);

                transition: 0.15s ease opacity;
            }
                .episodes-section .episodes-list .item:hover:after {
                    opacity: 1;
                }
                .episodes-section .episodes-list .item.new:after {
                    display: none;
                }

            .episodes-section .episodes-list .item .thumb-container {
                position: relative;
            }
                .episodes-section .episodes-list .item .thumb-container .thumb {
                    display: block;

                    width: 100%;
                }
                .episodes-section .episodes-list .item .thumb-container .info-line {
                    position: absolute;

                    bottom: 0;
                    left: 0;

                    width: 100%;

                    padding: 8px 12px;

                    background: rgba(0,0,0,0.7);

                    font-size: 18px;
                    line-height: 21px;
                    color: #fff;
                }
                    .episodes-section .episodes-list .item .thumb-container .info-line .duration {
                        float: right;

                        font-size: 14px;
                    }
                    /*.episodes-section .episodes-list .item.new .thumb-container .info-line {
                        height: 100%;
                    }
                        .episodes-section .episodes-list .item.new .thumb-container .info-line .name {
                            position: absolute;

                            bottom: 8px;
                        }*/

.partners-section {
    margin-bottom: 15px;
}
    .partners-section .partners-block {
        margin-top: 8px;
    }
        .partners-section .partners-block:after {
            content: '';

            display: block;

            clear: both;
        }
        .partners-section .partners-block .item {
            position: relative;
            float: left;

            width: 25%;
            height: 60px;

            margin-bottom: 20px;
            padding: 0 12px;

            line-height: 60px;
            text-align: center;
        }
            .partners-section .partners-block .item a {

                display: block;

                height: 60px;

                background: #f8f8f8;
            }
                .partners-section .partners-block .item img {
                    opacity: 0.5;

                    vertical-align: middle;

                    -webkit-filter: grayscale(100%); /* Chrome, Safari, Opera */
                    filter: grayscale(100%);

                    transition: 0.15s ease opacity, 0.15s ease filter;
                }
                    .partners-section .partners-block .item a:hover img {
                        opacity: 1;

                        -webkit-filter: grayscale(0%); /* Chrome, Safari, Opera */
                        filter: grayscale(0%);
                    }

.people-section {

}
    .people-section .people-list {
        margin: 0 -10px 30px;
    }
        .people-section .people-list:after {
            content: '';

            display: block;

            clear: both;
        }
        .people-section .people-list .item {
            display: block;
            float: left;

            width: 25%;

            margin-bottom: 10px;
            padding: 0 10px;

            text-decoration: none;
        }
            .people-section .people-list .item .image-container {
                position: relative;
                overflow: hidden;

                border: 6px solid #fff;
                border-radius: 50%;
            }
                .people-section .people-list .item .image-container img {
                    display: block;

                    width: 100%;
                }
                .people-section .people-list .item .image-container .transparent {
                    opacity: 0;

                    position: absolute;
                }

            .people-section .people-list .item .name {
                min-height: 42px;

                font-size: 18px;
                line-height: 21px;
                color: #010101;
                text-align: center;

                transition: 0.15s ease color;
            }
                .people-section .people-list .item:hover .name {
                    color: #e61703;
                }
                .people-section .people-list .item .name .icon.female {
                    top: 3px;
                }

.judges-section {

}
    .judges-section .section-title {
        margin-bottom: 21px;
    }
    .judges-section .judges-list {

    }
        .judges-section .judges-list:after {
            content: '';

            display: block;

            clear: both;
        }
        .judges-section .judges-list .item {
            margin-bottom: 20px;
        }
            .judges-section .judges-list .item:after {
                content: '';

                display: block;

                clear: both;
            }
            .judges-section .judges-list .item .photo-container {
                display: block;
                position: relative;
                float: left;

                width: 235px;

                color: #010101;
                text-decoration: none;
            }
                .judges-section .judges-list .item .photo-container .image-container {
                    position: relative;
                    overflow: hidden;

                    position: relative;
                    margin-bottom: 5px;

                    border: 6px solid #fff;
                    border-radius: 50%;
                }
                    .judges-section .judges-list .item .photo-container .image-container img {
                        display: block;

                        width: 100%;
                    }
                    .judges-section .judges-list .item .photo-container .image-container img.transparent {
                        opacity: 0;

                        position: absolute;
                    }

                .judges-section .judges-list .item .photo-container .name {
                    font-size: 18px;
                    line-height: 21px;
                    text-align: center;

                    transition: 0.15s ease color;
                }
                    .judges-section .judges-list .item .photo-container:hover .name {
                        color: #e61703;
                    }

            .judges-section .judges-list .item .about {
                margin-left: 255px;
            }
                .judges-section .judges-list .item .about .text {
                    position: relative;

                    margin-bottom: 15px;
                    padding: 10px 15px;

                    border: 1px solid #e6e6e6;
                    border-radius: 15px;

                    background: #fff;

                    font-size: 18px;
                    line-height: 24px;
                }
                    .judges-section .judges-list .item .about .text:before {
                        content: '';

                        display: block;
                        position: absolute;

                        top: 25px;
                        left: -32px;

                        width: 0;
                        height: 0;

                        border-style: solid;
                        border-width: 0 0 22px 32px;
                        border-color: transparent transparent #e6e6e6 transparent;

                        -webkit-transform: rotate(-5deg);
                           -moz-transform: rotate(-5deg);
                            -ms-transform: rotate(-5deg);
                             -o-transform: rotate(-5deg);
                                transform: rotate(-5deg);
                    }
                    .judges-section .judges-list .item .about .text:after {
                        content: '';

                        display: block;
                        position: absolute;

                        top: 24px;
                        left: -29px;

                        width: 0;
                        height: 0;

                        border-style: solid;
                        border-width: 0 0 22px 32px;
                        border-color: transparent transparent #fff transparent;

                        -webkit-transform: rotate(-5deg);
                           -moz-transform: rotate(-5deg);
                            -ms-transform: rotate(-5deg);
                             -o-transform: rotate(-5deg);
                                transform: rotate(-5deg);
                    }

            .judges-section .judges-list .item .about .show-profile {
                display: inline-block;

                height: 27px;

                margin-left: 20px;
                padding: 0 9px;

                border-radius: 3px;

                background: #b1b1b1;

                font-size: 12px;
                line-height: 29px;
                font-weight: bold;
                color: #fff;
                text-transform: uppercase;
                text-decoration: none;

                transition: 0.15s ease background-color;
            }
                .judges-section .judges-list .item .about .show-profile:hover {
                    background: #e61703;
                }

.profile-section {

}
    .profile-section .section-title .follow-button-container {
        display: none;

        margin-top: 10px;

        text-align: left;
    }
    .profile-section .section-role {
        display: none;

        margin-bottom: 5px;

        font-size: 24px;
        line-height: 32px;
    }
        .profile-section .section-role .icon.male {
            top: -1px;
        }
        .profile-section .section-role .icon.female {
            top: 2px;
        }

    .profile-section .profile-container {
        position: relative;

        margin-bottom: 30px;
    }
        .profile-section .profile-container:after {
            content: '';

            display: block;

            clear: both;
        }
        .profile-section .profile-container .photo-container {
            float: left;
        }
            .profile-section .profile-container .photo-container .image-container {
                overflow: hidden;

                margin-bottom: 20px;

                border: 6px solid #fff;
                border-radius: 50%;
            }
                .profile-section .profile-container .photo-container .image-container img {
                    display: block;

                    width: 100%;
                }

        .profile-section .profile-container .info-container {
            margin-left: 350px;
        }
            .profile-section .profile-container .info-container .description {
                margin-bottom: 17px;
                padding: 10px 15px;

                border: 1px solid #e7e7e7;

                background: #f8f8f8;

                font-size: 18px;
                line-height: 24px;
            }
            .profile-section .profile-container .info-container .photos-list {
                margin: 0 -12px;
            }
                .profile-section .profile-container .info-container .photos-list .item {
                    float: left;

                    padding: 0 12px;

                    width: 33.333333%;
                }
                    .profile-section .profile-container .info-container .photos-list .item a {
                        display: block;

                        border: 4px solid #fff;

                        transition: 0.15s ease border-color;
                    }
                        .profile-section .profile-container .info-container .photos-list .item a:hover {
                            border-color: #e81605;
                        }
                        .profile-section .profile-container .info-container .photos-list .item a img {
                            display: block;

                            width: 100%;
                        }

        .profile-section .profile-container .socials {
            padding: 20px 0 0 50px;
        }
            .socials .social-labels {
                font-size: 18px;
                line-height: 26px;
            }

.audition-section {
    margin-bottom: 30px;
}
    .audition-section .title {
        margin: 43px 0 12px;

        font-size: 24px;
        line-height: 32px;
        text-align: center;
    }
    .audition-section .subtitle {
        margin-bottom: 21px;

        font-size: 18px;
        line-height: 24px;
        text-align: center;
    }
        .audition-section .subtitle br {
            display: none;
        }

    .audition-section .socials {
        display: block !important;

        width: 250px;
        margin: 0 auto 20px;

        text-align: center;
    }
        .audition-section .socials .addThis {
            display: block !important;
        }
        .audition-section .socials .social-labels {
            text-align: left;
        }
        .audition-section .socials .addthis_toolbox {
            display: inline-block;
        }

    .audition-section .follow-block-container {
        width: 220px;
        margin: 0 auto;
    }

    .audition-section .form-container {
        max-width: 736px;

        margin: 0 auto 30px;
        padding: 14px 19px 4px;

        border: 1px solid #d7d7d7;
        border-radius: 3px;
    }
        .audition-section .form-container .field-row {
            position: relative;

            margin-bottom: 17px;
        }
            .audition-section .form-container .field-row #porn_comment {
                display: block;

                width: 260px;

                margin-top: 10px;
            }
            .audition-section .form-container .field-row.date {
                position: relative;
            }
                .audition-section .form-container .field-row.date .input-text {
                    width: 170px;
                }
                    .audition-section .form-container .field-row .input-text.error {
                        background: #ffe4e4 !important;
                        border: 1px solid #f3c7c7 !important;
                    }
                    .audition-section .form-container .field-row.date label.error {
                        width: 240px;
                    }
                    .audition-section .form-container .field-row.date #calendar {
                        content: '';

                        display: block;
                        position: absolute;

                        bottom: 1px;
                        left: 126px;

                        width: 43px;
                        height: 43px;

                        border-left: 1px solid #cdcdcd;
                        border-radius: 0 3px 3px 0;

                        background: #ededed url(../images/icons/date.svg) no-repeat 50% 50%;
                        background-size: 25px 29px;

                        cursor: pointer;
                    }
                        .audition-section .form-container .field-row.date #calendar {
                            display: block;
                            float: left;
                        }

            .audition-section .form-container .field-row:after {
                content: '';

                display: block;

                clear: both;
            }
            .audition-section .form-container .field-row .small-row {
                float: left;
                position: relative;

                margin: 0 20px 0 0;
            }
                .audition-section .form-container .field-row .small-row:last-child {
                    margin-bottom: 0;
                }
                .audition-section .form-container .field-row .small-row .input-text {
                    width: 170px;
                }
                    .audition-section .form-container .field-row .small-row label.error {
                        width: 190px;
                    }

            .audition-section .form-container .field-row label {
                display: block;

                margin-bottom: 7px;

                font-size: 14px;
                font-weight: bold;
                line-height: 17px;
            }
                .audition-section .form-container .field-row label .small {
                    font-size: 12px;
                    font-weight: normal;
                    color: #676767;
                }
                .audition-section .form-container .field-row label.error {
                    z-index: 1;

                    position: absolute;

                    top: 100%;
                    left: 7px;

                    margin-top: 10px;
                    padding: 0 12px 0 7px;

                    border: 1px solid #c8c8c8;
                    border-radius: 3px;

                    background: #fff;

                    font-size: 12px;
                    line-height: 35px;
                }
                    .audition-section .form-container .field-row label.error .error-icon {
                        display: block;
                        float: left;

                        width: 19px;
                        height: 19px;

                        margin: 7px 7px 0 0;

                        background: url(../images/icons/error.svg) no-repeat;
                    }
                    .audition-section .form-container .field-row label.error:before {
                        content: '';

                        display: block;
                        position: absolute;

                        left: 9px;
                        bottom: 100%;

                        width: 0;
                        height: 0;

                        border-style: solid;
                        border-width: 0 9px 8px 9px;
                        border-color: transparent transparent #c8c8c8 transparent;
                    }
                    .audition-section .form-container .field-row label.error:after {
                        content: '';

                        display: block;
                        position: absolute;

                        left: 10px;
                        bottom: 100%;

                        width: 0;
                        height: 0;

                        border-style: solid;
                        border-width: 0 8px 7px 8px;
                        border-color: transparent transparent #ffffff transparent;
                    }

            .audition-section .form-container .field-row .radio-block {

            }
                .audition-section .form-container .field-row .radio-block:after {
                    content: '';

                    display: block;

                    clear: both;
                }
                .audition-section .form-container .field-row .radio-block label {
                    float: left;

                    margin-right: 15px;
                    margin-bottom: 1px;
                }

            .audition-section .form-container .field-row .input-checkbox + label {
                margin-top: 22px;

                line-height: 20px;
            }

        .audition-section .form-container .field-row #dropzone {
            display: block;

            width: 100%;
            height: 100px;

            padding: 39px 14px;

            border: 1px dashed #cdcdcd;
            border-radius: 3px;

            font-size: 14px;
            line-height: 20px;
            color: #7f7f7f;
            text-align: center;

            cursor: pointer;
        }
            .audition-section .form-container .field-row #dropzone.dz-drag-hover {
                border: 1px solid #cdcdcd;

                background: #fff;
            }

        .audition-section .form-container .field-row .dropresult {
            margin: 10px -5px;
        }
            .audition-section .form-container .field-row .dropresult .preview-thumb {
                float: left;
                position: relative;

                width: 25%;

                margin-bottom: 10px;
                padding: 0 5px;
            }
                .audition-section .form-container .field-row .dropresult .preview-thumb img {
                    z-index: 1;

                    display: block;
                    position: relative;

                    width: 100%;
                }
                .audition-section .form-container .field-row .dropresult .preview-thumb .delete {
                    z-index: 5;

                    position: absolute;

                    top: 5px;
                    right: 10px;

                    width: 22px;
                    height: 22px;

                    border-radius: 50%;

                    background: rgba(0,0,0,0.5) url(../images/icons/close.svg) no-repeat 50% 50%;
                    background-size: 12px 12px;

                    cursor: pointer;
                }
                .audition-section .form-container .field-row .dropresult .preview-thumb .for-video {
                    position: relative;

                    margin: 0 5px;
                }
                .audition-section .form-container .field-row .dropresult .preview-thumb .for-video-inner {
                    display: block;
                    position: absolute;

                    left: 0;
                    top: 0;

                    width: 100%;
                    height: 100%;

                    border: 1px solid #c5c5c5;

                    background: #f8f8f8;
                }
                    .audition-section .form-container .field-row .dropresult .preview-thumb .for-video-inner .pixel {
                        opacity: 0;

                        display: block !important;

                        width: 100%;
                    }
                    .audition-section .form-container .field-row .dropresult .preview-thumb .for-video .filename {
                        position: absolute;
                        overflow: hidden;

                        bottom: 0;
                        left: 0;

                        width: 100%;
                        height: 20px;

                        padding: 0 6px;

                        background: #ebebeb;

                        font-size: 12px;
                        line-height: 20px;
                        text-overflow: ellipsis;
                        white-space: nowrap;
                    }
                    .audition-section .form-container .field-row .dropresult .preview-thumb .for-video .video-icon {
                        opacity: 0.1;

                        position: absolute;

                        top: 45%;
                        left: 50%;

                        width: 37px;
                        height: 38px;

                        background: url(../images/icons/video-icon.svg) no-repeat;
                        background-size: 37px 38px;

                        transform: translate(-50%, -50%);
                    }
                    .audition-section .form-container .field-row .dropresult .preview-thumb .image {
                        position: absolute;
                        top: 0;
                        width: 100%;
                        height: 100%;
                    }

    .audition-section .submit-container {
        text-align: center;
    }

    .text-page-section {
        padding-bottom: 50px;
    }
        .text-page-section .main-title {
            font-size: 32px;
            line-height: 40px;
            text-align: center;
        }
        .text-page-section .main-subtitle {
            font-size: 24px;
            line-height: 34px;
            text-decoration: underline;
        }
        .text-page-section .text {
            font-size: 16px;
            line-height: 22px;
        }
            .text-page-section .text p {
                margin-bottom: 15px;

                line-height: 24px;
            }
            .text-page-section .text a {
                color: #ca2929;
            }
                .text-page-section .text a:hover {
                    text-decoration: none;
                }

.not-found-block {
    text-align: center;
}
    .not-found-block h1 {
        margin-bottom: 20px;

        font-size: 36px;
        line-height: 60px;
    }

.width-wrap .sent-form-response {
    margin-top: 50px;
    margin-bottom: 20px;

    font-size: 24px;
    line-height: 36px;
    text-align: center;
}

.fade-popup {
    z-index: 999;

    display: none;
    position: fixed;

    top :0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.5);
}
.share-popup {
    z-index: 1000;

    display: none;
    position: fixed;

    top : 50%;
    left: 50%;

    width: 300px;

    transform: translate(-50%, -50%);

    background: rgba(0,0,0,0.5);
}
    .share-popup .heading {
        height: 48px;

        padding: 0 10px;

        background: #be1c00;

        font-size: 18px;
        line-height: 47px;
        color: #fff;
    }
        .share-popup .heading .close {
            display: block;
            position: absolute;

            top: 10px;
            right: 5px;

            width: 30px;
            height: 30px;

            background: url(../images/icons/close.svg) no-repeat 50% 50%;
            background-size: 16px 16px;
        }

    .share-popup .content {
        padding: 10px;

        background: #d41f00;
    }
        .share-popup .content .share-link {
            display: block;
            height: 34px;
            margin-bottom: 10px;
            border-radius: 3px;
            background: #b51b00;
            font-size: 12px;
            line-height: 34px;
            color: #fff;
            text-decoration: none;
            transition: 0.15s ease background;
            padding-left: 90px;
            text-align: left;
        }
            .share-popup .content .share-link img {
                max-width: 20px;
                max-height: 20px;
                width: 100%;
                height: 100%;
                display: block;
                float: left;
                margin: 7px 7px 0;
            }
            .share-popup .content .share-link:last-child {
                margin-bottom: 0;
            }
            .share-popup .content .share-link:hover {
                background: #c73a2c;
            }
            .share-popup .content .share-link i {
                display: inline-block;
                position: relative;

                margin-right: 3px;
            }
                .share-popup .content .share-link i.twitter {
                    bottom: -8px;

                    width: 33px;
                    height: 26px;

                    background: url(../images/icons/twitter.svg) no-repeat;
                    background-size: contain;
                }
                .share-popup .content .share-link i.tumblr {
                    bottom: -8px;

                    width: 21px;
                    height: 32px;

                    background: url(../images/icons/tumblr.svg) no-repeat;
                    background-size: contain;
                }
                .share-popup .content .share-link i.reddit {
                    bottom: -9px;

                    width: 33px;
                    height: 29px;

                    background: url(../images/icons/reddit.svg) no-repeat;
                    background-size: contain;
                }
                .share-popup .content .share-link i.facebook {
                    bottom: -9px;

                    width: 14px;
                    height: 30px;

                    background: url(../images/icons/facebook.svg) no-repeat;
                    background-size: contain;
                }


footer {
    margin-top: 50px;
    padding-bottom: 44px;

    background: #242424;

    position: absolute;
    width: 100%;
    bottom: 0;
}
    footer .width-wrap:after {
        content: '';

        display: block;

        clear: both;
    }
    footer .column {
        float: left;

        width: 22%;

        padding-top: 37px;
        padding-left: 24px;
    }
        footer .column:first-child {
            padding-left: 13px;
        }
        footer .column:last-child {
            float: right;

            width: 250px;

            padding-top: 41px;
            padding-left: 22px;
            padding-right: 0;
        }
        footer .column .logo {
            opacity: 0.3;

            display: block;

            width: 127px;
            height: 34px;

            margin-top: 1px;
            margin-bottom: 13px;

            background: url(../images/footer-logo.png) no-repeat;

            transition: 0.15s ease opacity;
        }
            footer .column .logo:hover {
                opacity: 1;
            }

        footer .column .copyright {
            margin-bottom: 52px;
            padding-left: 2px;

            font-size: 12px;
            line-height: 14px;
            color: #6a6a6a;
        }
        footer .column .rta {

        }
            footer .column .rta img {
                display: block;

                margin-left: 2px;
            }

        footer .column .heading {
            margin-bottom: 11px;

            font-size: 18px;
            line-height: 23px;
            color: #e3e3e3;
        }
        footer .column ul {

        }
            footer .column ul li {

            }
                footer .column ul li a {
                    font-size: 12px;
                    line-height: 24px;
                    color: #a2a2a2;

                    transition: 0.15s ease color;
                }
                    footer .column ul li a:hover {
                        color: #e1e1e1;
                    }

    footer .column .twitter-follow {
        display: block;
        overflow: hidden;

        height: 40px;

        padding-right: 10px;

        border-radius: 3px;

        background: #1d8fbf;

        font-size: 16px;
        line-height: 40px;
        color: #e6e6e6;
        text-decoration: none;

        transition: 0.15s ease opacity;
    }
        footer .column .twitter-follow:before {
            content: '';

            display: block;
            float: left;

            width: 44px;
            height: 40px;

            margin-right: 11px;

            background: #535353 url(../images/icons/twitter.svg) no-repeat 50% 50%;
            background-size: 27px 21px;
        }
        footer .column .twitter-follow:hover {
            opacity: 0.75;
        }

        .follow-block-container {

        }
            .follow-block-container .follow-labels {
                font-size: 18px;
                line-height: 26px;
            }

        .follow-block {

        }
            .follow-block a {
                display: block;
                position: relative;
                float: left;
                width: 35px;
                height: 35px;
                margin-right: 10px;
                padding: 0;
                border-radius: 3px;
                background: none;
                text-decoration: none;
                transition: 0.15s ease opacity;
            }
                .follow-block a:last-child {
                    margin-right: 0;
                }
                .follow-block a:hover {
                    opacity: 0.5;
                }
                .follow-block a:before {
                    content: '';

                    display: block;
                    position: absolute;
                }
                .follow-block a.twitter {
                    background: #4b96d7;
                }
                    .follow-block a.twitter:before {
                        top: 8px;
                        left: 6px;
                        width: 24px;
                        height: 19px;
                        background: url(../images/socials/twitter.svg) no-repeat;
                    }

                .follow-block a.instagram {
                    background: #406a95;
                }
                    .follow-block a.instagram:before {
                        top: 6px;
                        left: 6px;
                        width: 23px;
                        height: 23px;
                        background: url(../images/socials/instagram.svg) no-repeat;
                    }

                .follow-block a.facebook {
                    background: #4c66a4;
                }
                    .follow-block a.facebook:before {
                        top: 6px;
                        left: 12px;
                        width: 11px;
                        height: 22px;
                        background: url(../images/socials/facebook.svg) no-repeat;
                    }

                .follow-block a.reddit {
                    background: #d74f08;
                }
                    .follow-block a.reddit:before {
                        top: 7px;
                        left: 6px;
                        width: 24px;
                        height: 20px;
                        background: url(../images/socials/reddit.svg) no-repeat;
                    }

                .follow-block a.xhamster {
                    background: #f8f8f8;
                }
                    .follow-block a.xhamster:before {
                        top: 5px;
                        left: 4px;
                        width: 29px;
                        height: 26px;
                        background: url(../images/socials/xlogo.svg) no-repeat;
                    }


.addthis_toolbox {
    margin-right: 10px;

    white-space: nowrap;
}
    .addthis_toolbox a {
        margin-bottom: 0 !important;

        transition: 0.15s ease opacity;
    }
        .addthis_toolbox .addthis_button_expanded {
            display: none;
        }
        .addthis_toolbox a:hover {
            opacity: 0.75;
        }
            .addthis_toolbox .addthis_counter {
                margin-left: 2px !important;
            }
            .addthis_toolbox .addthis_counter:hover {
                opacity: 1;
            }

        .addthis_toolbox a * {
            display: block;
        }
        .addthis_counter.addthis_bubble_style {
            float: left !important;
        }

.follow-button-container {
    text-align: center;
}
    .follow-button-container .twitter-custom-follow-button {
        display: inline-block;
        overflow: hidden;
        height: 40px;
        margin-right: 10px;
        padding-right: 10px;
        border-radius: 3px;
        background: #1d8fbf;
        font-size: 16px;
        line-height: 40px;
        color: #e6e6e6;
        text-decoration: none;
        transition: 0.15s ease opacity;
    }
        .follow-button-container .twitter-custom-follow-button:before {
            content: '';
            display: block;
            float: left;
            width: 44px;
            height: 40px;
            margin-right: 11px;
            background: #535353 url(../images/icons/twitter.svg) no-repeat 50% 50%;
            background-size: 27px 21px;
        }
        .follow-button-container .twitter-custom-follow-button:hover {
            opacity: 0.75;
        }

    .follow-button-container .instagram-custom-follow-button {
        display: inline-block;
        overflow: hidden;
        height: 40px;
        margin-right: 10px;
        padding-right: 10px;
        border-radius: 3px;
        background: #476b94;
        font-size: 16px;
        line-height: 40px;
        color: #e6e6e6;
        text-decoration: none;
        transition: 0.15s ease opacity;
        margin-bottom: 5px;
    }
        .follow-button-container .instagram-custom-follow-button:before {
            content: '';
            display: block;
            float: left;
            width: 44px;
            height: 40px;
            margin-right: 11px;
            background: #535353 url(../images/socials/instagram.svg) no-repeat 50% 50%;
            background-size: 27px 21px;
        }
        .follow-button-container .instagram-custom-follow-button:hover {
            opacity: 0.75;
        }
        .IGF {
            display: none !important;
        }

.follow-block-container {

}
    .follow-block-container {

    }

@media screen and (max-width: 1023px) {
    header .header-menu ul {
        text-align: center;
    }
        header .header-menu ul li {
            display: inline-block;
            float: none;
        }
            header .header-menu ul li a {
                padding: 0 15px;

                font-size: 16px;
            }

    .partners-section .partners-block .item img {
        max-width: 90%;
    }


}
@media screen and (max-width: 760px) {
    .wrap {
        padding-bottom: 260px;
    }
    header .header-menu ul li a {
        padding: 0 10px;

        font-size: 16px;
    }

    footer .column:last-child {
        width: 195px;
    }
        footer .column .twitter-follow {
            font-size: 13px;
        }
        .follow-block a {
            margin-bottom: 10px;
        }

    .episode-section .episode-container .info-container .description {
        padding-right: 0;
        height: auto;
        min-height: 0;
    }

    .episode-section .episode-container .info-container .socials {
        position: relative;
        transform: translateY(0);
        width: 250px;
        top: 5px;
        margin: 10px 0;
    }

    .episodes-section .episodes-list .item {
        width: 50%;
    }

    .episode-section .materials-container .materials-list .item {
        width: 50%;
    }

    .people-section .people-list .item {
        width: 33.333333%;
    }

    .judges-section .judges-list .item .about .text {
        font-size: 14px;
        line-height: 20px;
    }

    .profile-section .profile-container .photo-container {
        width: 220px;
    }

    .profile-section .profile-container .info-container {
        margin-left: 240px;
    }

    .profile-section .profile-container .socials {
        padding: 10px 0 0 0;
    }
}
@media screen and (max-width: 640px) {
    .wrap {
        padding-bottom: 345px;
    }
    header {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .profile-section .profile-container .photo-container .image-container {
        margin-bottom: 10px;
    }
    .profile-section .section-title .follow-button-container {
        display: block;
    }
    .profile-section .profile-container .photo-container .follow-button-container {
        display: none;
    }

    .partners-section .partners-block .item {
        height: 60px;
        line-height: 60px;
    }
    .top-section .width-wrap {
        padding-top: 50px;
    }
    .top-section .logo {
        width: 320px;
        height: 117px;
    }
    .top-section .text {
        font-size: 12px;
        line-height: 24px;
    }

    .profile-section .profile-container .info-container .description {
        font-size: 16px;
        line-height: 22px;
    }

    .subscribe-section .subscribe-block .input-submit {
        width: 44px;

        background: #e61703 url(../images/icons/arrowRight.svg) no-repeat 50% 50%;
        background-size: 20px 31px;

        text-indent: -10000px;
    }
    .subscribe-block .input-text {
        padding-right: 45px !important;
    }

    .episode-section.index-only {
        margin-top: -20px;
    }

    .episode-section .episode-container .info-container .description {
        padding-right: 0;
    }

    .people-section .people-list .item {
        width: 50%;
    }

    .judges-section .judges-list {
        margin: 0 -10px;
    }

    .judges-section .judges-list .item {
        float: left;

        width: 50%;

        padding: 0 10px;
    }

    .judges-section .judges-list .item .photo-container {
        float: none;

        margin: 0 auto;

        width: auto;
    }

    .judges-section .judges-list .item .about {
        display: none;
    }

    .profile-section .section-title {
        z-index: 1;

        position: absolute;

        left: 240px;

        font-size: 21px;
        line-height: 22px;
    }

    .profile-section .section-role {
        display: block;
    }

    .section-title .share-button {
        display: block;

        margin-top: 10px;
    }

        .section-title .share-button:hover {
            border-color: #ca2928;
        }


    .episode-section .episode-container .video-container .share-button {
        display: block;
    }
        .episode-section .episode-container .video-container .share-button:hover {
            border-color: #ca2928;
        }

    .profile-section .profile-container .photo-container {
        float: none;
    }

    .profile-section .profile-container .info-container {
        margin-top: 10px;
        margin-left: 0;
    }

    .profile-section .profile-container .info-container .photos-list {
        margin: 0 -5px;
    }

    .profile-section .profile-container .info-container .photos-list .item {
        padding: 0 5px;
    }

    .partners-section .partners-block .item {
        width: 50%;
    }

    .episode-section .episode-container .info-container .socials .addThis {
        display: none;
    }

    .subscribe-section .subscribe-block .input-text {
        height: 38px;

        font-size: 16px;
        line-height: 38px;
    }
    .subscribe-section .subscribe-block .input-submit {
        width: 42px;
        height: 38px;

        background: #e61703 url(../images/icons/arrowRight.svg) no-repeat 50% 50%;
        background-size: 12px 18px;
    }

    .socials .addThis {
        display: none;
    }
    .episodes-section .share-button {
        display: inline-block;
    }
    .episodes-section .section-title {
        display: inline-block;

        margin-bottom: 15px;
    }


footer {
    padding-bottom: 30px;
}
    .menu-opened footer {
        display: none;
    }
    footer .width-wrap {
        position: relative;
        padding-bottom: 100px;
    }
    footer .column {
        width: 28%;

        padding-left: 10px;
    }
    footer .column:first-child {
        position: absolute;

        bottom: 0;
        left: 0;

        width: 100%;

        margin: 0;
        padding: 0 20px;
    }
    footer .column:last-child {
        position: absolute;
        right: 10px;

        margin-right: 10px;
    }
    footer .column .logo {
        float: left;
    }
    footer .column .copyright {
        position: absolute;

        bottom: -10px;

        margin: 0;
    }
    footer .column .rta {
        position: absolute;
        float: right;

        right: 20px;
        bottom: -10px;
    }
    .episode-section .is-splash.flowplayer .fp-ui, .episode-section .is-paused.flowplayer .fp-ui {
        background: rgba(0,0,0,0.5) url(../images/icons/play.svg) no-repeat 50% 50% !important;
        background-size: 70px 70px !important;
    }
}
@media screen and (max-width: 480px) {
    .wrap {
        padding-bottom: 375px;
    }

    .profile-section .profile-container .photo-container {
        width: 150px;
    }

    .profile-section .section-title {
        left: 170px;

        font-size: 18px;
    }

    .section-title .icon.male {
        top: 1px;
    }

    footer .column:last-child {
        position: relative;
        float: left;

        padding-top: 20px;
        padding-left: 20px;
    }

    footer .column {
        width: 36%;
    }

    .audition-section .subtitle br {
        display: block;
    }

    .timer-section .timer {
        width: 320px;

        margin: 0 auto;
    }
        .timer-section .timer ul {
            width: 27px;
            height: 43px;

            line-height: 43px;
        }
            .timer-section .timer ul li a div div.inn {
                font-size: 33px;
            }
                .timer-section .timer .flip-clock-dot.top {
                    top: 17px;
                }
                .timer-section .timer .flip-clock-dot.bottom {
                    bottom: 17px;
                }

            .timer-section .timer .flip-clock-divider {
                height: 55px;
            }
                .timer-section .timer .flip-clock-divider .flip-clock-label {
                    top: auto;
                    right: -48px;
                    bottom: -13px;

                    font-size: 12px;
                }
                .timer-section .timer .flip-clock-divider.minutes .flip-clock-label {
                    right: -55px;
                }
                .timer-section .timer .flip-clock-divider.seconds .flip-clock-label {
                    right: -57px;
                }


    .profile-section .profile-container .info-container .description {
        font-size: 14px;
        line-height: 20px;
    }

    .episodes-section .episodes-list .item {
        width: 100%;
    }

    .episode-section .materials-container .materials-list .item {
        width: 100%;
    }

    .audition-section .form-container .field-row .small-row:first-child {
        margin-bottom: 20px;
    }

    footer .width-wrap {
        position: relative;
        padding-bottom: 70px;
    }

    footer .column:last-child {
        width: 245px;
    }
    .follow-button-container .twitter-custom-follow-button {
        font-size: 12px;
    }
}

@media screen and (max-width: 460px) {
    .audition-section .form-container .field-row #dropzone {
        padding-top: 29px;
    }
}

/*Player overrides*/
.flowplayer {
    display: block !important;
}
.flowplayer .fp-waiting {
    position: relative !important;

    top: 50% !important;

    margin: 0 !important;

    transform: translateY(-50%) !important;
}
.flowplayer .fp-time em {
    height: 11px !important;
}
.flowplayer .fp-brand {
    height: 14px !important;
}
.is-splash.flowplayer .fp-ui,
.is-paused.flowplayer .fp-ui {
    background: rgba(0,0,0,0.5) url(../images/icons/play.svg) no-repeat 50% 50% !important;
    background-size: 100px 100px !important;
}
/*.fp-qsel,*/
.fp-embed {
    display: none !important;
}

/*Datepicker style*/
.ll-skin-santiago {
	font-size: 90%;
}

.ll-skin-santiago .ui-widget {
	font-family: Helvetica Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
}

.ll-skin-santiago .ui-datepicker {
	padding: 0;
}

.ll-skin-santiago .ui-widget-content {
	border: none;
	background: #fff;
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,.19);
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,.19);
	box-shadow: 0 1px 3px rgba(0,0,0,.19);
}

.ll-skin-santiago .ui-datepicker-header {
	font-family: "Myriad Pro", sans-serif;
	color: #fff;
	padding: 0;
	border-top: 1px solid #b42b0c;
	border-bottom: none;
	overflow: hidden;
	text-transform: uppercase;
	text-shadow: 0 -1px 0 rgba(0,0,0,.35);
	border-radius: 4px 4px 0 0;
	-webkit-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iaGF0MCIgZ3JhZGllbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giIHgxPSI1MCUiIHkxPSIxMDAlIiB4Mj0iNTAlIiB5Mj0iLTEuNDIxMDg1NDcxNTIwMmUtMTQlIj4KPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2IzMmIwYiIgc3RvcC1vcGFjaXR5PSIxIi8+CjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2NkMzAwYyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgIDwvbGluZWFyR3JhZGllbnQ+Cgo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgZmlsbD0idXJsKCNoYXQwKSIgLz4KPC9zdmc+);
	background-image: -moz-linear-gradient(bottom, #b32b0b 0%, #cd300c 100%);
	background-image: -o-linear-gradient(bottom, #b32b0b 0%, #cd300c 100%);
	background-image: -webkit-linear-gradient(bottom, #b32b0b 0%, #cd300c 100%);
	background-image: linear-gradient(bottom, #b32b0b 0%, #cd300c 100%);
}

.ll-skin-santiago .ui-datepicker-header .ui-state-hover {
	background: transparent;
	border-color: transparent;
	cursor: pointer;
}

.ll-skin-santiago .ui-datepicker .ui-datepicker-title {
	line-height: 2.2em;
	font-weight: normal;
}

.ll-skin-santiago .ui-datepicker .ui-datepicker-prev,
.ll-skin-santiago .ui-datepicker .ui-datepicker-next {
	top: -1px;
	background: #d33e13;
	border-radius: 0;
	font-weight: normal;
	border: none;
	height: 2.2em;
	width: 1.4em;
}

.ll-skin-santiago .ui-datepicker .ui-datepicker-prev.ui-state-hover,
.ll-skin-santiago .ui-datepicker .ui-datepicker-next.ui-state-hover {
	background: #ba2c0c;
}

.ll-skin-santiago .ui-datepicker .ui-datepicker-prev {
	left: 0;
	border-right: 1px solid #a6280b;
}

.ll-skin-santiago .ui-datepicker .ui-datepicker-next {
	right: 0;
	border-left: 1px solid #a6280b;
}

.ll-skin-santiago .ui-datepicker .ui-datepicker-prev span,
.ll-skin-santiago .ui-datepicker .ui-datepicker-next span {
	margin-top: -4px;
	top: 40%;
}

.ll-skin-santiago .ui-icon-circle-triangle-e {
	background-image: url(../images/ui-icons_ffffff_256x240.png);
	background-position: -32px 0;
}

.ll-skin-santiago .ui-icon-circle-triangle-w {
	background-image: url(../images/ui-icons_ffffff_256x240.png);
	background-position: -96px 0;
}

.ll-skin-santiago .ui-datepicker table {
	margin: 0;
}

.ll-skin-santiago .ui-datepicker th {
	padding: .6em 0 .4em;
	text-transform: uppercase;
	color: #bbb;
	font-weight: normal;
	font-size: .8em;
	border-top: 1px solid #e6e6e6;
}

.ll-skin-santiago .ui-datepicker td {
	border: none;
	border-top: 1px solid #e6e6e6;
	border-right: 1px solid #e6e6e6;
	padding: 0;
}

.ll-skin-santiago td:last-child {
	border-right: 0;
}

.ll-skin-santiago td .ui-state-default {
	background: transparent;
	border: none;
	color: #2b2b2b;
	margin: 0;
	font-family: "Myriad Pro", sans-serif;
	font-weight: normal;
	text-align: center;
}

.ll-skin-santiago .ui-datepicker-calendar .ui-state-hover {
	background: #ededed;
	color: #b2b2b2;
}

.ll-skin-santiago td a.ui-state-active,
.ll-skin-santiago td a.ui-state-active.ui-state-hover {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0,0,0,.45);
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iaGF0MCIgZ3JhZGllbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giIHgxPSI1MCUiIHkxPSIxMDAlIiB4Mj0iNTAlIiB5Mj0iLTEuNDIxMDg1NDcxNTIwMmUtMTQlIj4KPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2IzMmIwYiIgc3RvcC1vcGFjaXR5PSIxIi8+CjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2NkMzAwYyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgIDwvbGluZWFyR3JhZGllbnQ+Cgo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgZmlsbD0idXJsKCNoYXQwKSIgLz4KPC9zdmc+);
	background-image: -moz-linear-gradient(bottom, #b32b0b 0%, #cd300c 100%);
	background-image: -o-linear-gradient(bottom, #b32b0b 0%, #cd300c 100%);
	background-image: -webkit-linear-gradient(bottom, #b32b0b 0%, #cd300c 100%);
	background-image: linear-gradient(bottom, #b32b0b 0%, #cd300c 100%);
}


/* MOBILE EPISODE TIME COUNTER */
.counter-mobile {
    position: absolute;
    top: 50%;
    width: 100%;
    margin: 0;
    transform: translateY(-75%);
    text-align: center;
}

.counter-mobile div.day,.counter-mobile div.hour,.counter-mobile div.minute,.counter-mobile div.second {
    margin:3px 5px 0 5px;
}

.counter-mobile .row-one {
}

.counter-mobile .title {
    font-size: 12px;
    color: #fff;
    text-shadow: 0 1px 1px #000;
    position: absolute;
    font-weight: 200;
    text-align: center;
    width: 68px;
    margin-left: -68px;
    margin-top: 50px;
    z-index: -1;
}

.counter-mobile div {
    display: inline-block;
    /*padding: 10px;*/
    font-size: 25px;
    text-align: center;
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-style: normal;
    font-variant: normal;
    font-weight:500;
}

.counter-mobile div.one,.counter-mobile div.two {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
    border-radius: 6px;
    color:#ccc;
    text-shadow: 0 2px 4px #000;

    background-color: #333333;
    padding: 3px 6px 3px 6px;
    margin:0 2px 0 2px;
}

.counter-mobile .space {
    color:#333333;
    display: block;
    background: #323434;
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    width: 6px;
    height: 6px;
    transform: translateX(-50%);
}

.counter-mobile .space.top {
    top: 25%;
}
.counter-mobile .space.bottom {
    bottom: 35%;
}

.section-title h1 {
    font-weight: normal;
    display: inline-block;
}

.alert {
    text-align: center;
    color: red;
    font-weight: bold;
}

.alert .close {
    display: none;
}