/*HEADER*/

.header,
.header-background {
    width: 100%;
}

.header {
    position: fixed;
    z-index: 150;
}

    .header > .grid {
        /*    grid-template-columns: 83px 406px 563px 70px;*/
        grid-template-columns: 1fr 3fr 2fr 0fr;
    }

.angle-background {
    transform: skewY(-2deg);
    left: auto;
    top: auto;
    position: absolute;
    background-color: #8ad7d5;
    z-index: 50;
}

.header-background {
    /*    margin-top: -247px;  -247 */
    margin-top: -315px;
    height: 400px;
    transition-duration: .2s;
}

.hb-shadow {
    box-shadow: 0 0 35px 1px rgba(0,0,0,.6);
}

.header .container {
    position: relative;
    z-index: 100;
    margin-top: 10px;
}

.brand-logo {
    width: 219px;
    height: 58px;
    margin-left: 20px;
    cursor: pointer;
}

.header-navigation {
    width: 406px;
    margin-left: 166px;
    margin-top: 18px;
}

.header-navigation-link {
    font-size: 16px;
    color: black;
    text-decoration: none;
    font-family: 'Tahoma', Arial;
    transition-duration: .2s;
}

    .header-navigation-link:hover {
        color: #666666;
    }

    .header-navigation-link:before {
        content: '';
        display: block;
        position: absolute;
        width: 159px;
        height: 15px;
        background-image: url(../imgs/shadow.png);
        margin-left: -36px;
        margin-top: -5px;
        opacity: 0;
        transition-duration: .2s;
    }

    .header-navigation-link:hover:before {
        opacity: 1;
    }

.header-navigation .grid {
    width: 100%;
    grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
    grid-column-gap: 17px;
    text-align: center;
}

.symbol-arrow {
    font-size: 8px;
    position: relative;
    top: -2px;
    margin-left: 8px;
}

.account-nav {
    margin-top: 18px;
    text-align: center;
}

.account {
    color: red;
    background: transparent;
    border: 0;
    font-size: 16px;
}

    .account .fa-user {
        margin-right: 9px;
    }

.lang-panel {
    margin-top: 18px;
    margin-right: 20px;
    cursor: pointer;
}



/*FOOTER*/

.footer {
    height: 135px;
    background-color: white;
}

.footer-nav {
    width: 1140px;
    margin: auto;
}

.footer .container {
    position: relative;
    z-index: 100;
    text-align: center;
}

.footer-background {
    height: 130px;
    width: 100%;
    margin-top: -31px;
}

.footer-nav-links.grid {
    grid-template-columns: repeat(auto-fill,minmax(190px,1fr));
}

.footer-nav-links li {
    text-align: center;
}

.footer-nav-links {
    position: relative;
    top: 20px;
}

    .footer-nav-links li a {
        color: black;
    }

        .footer-nav-links li a:hover {
            text-decoration: underline;
        }

.social-item {
    display: inline-block;
    width: 50px;
    height: 40px;
    background-image: url(../imgs/socials-sprite.png);
    background-repeat: no-repeat;
}

    .social-item.twitter {
        background-position: 7px 3px;
    }

    .social-item.youtube {
        background-position: -92px 2px;
    }

    .social-item.facebook {
        background-position: -192px 2px;
        width: 44px;
    }

    .social-item.instagram {
        background-position: -293px 2px;
        width: 42px;
    }

.social-links {
    width: 330px;
    margin: auto;
    margin-top: 52px;
}

    .social-links ul.grid {
        grid-template-columns: repeat(auto-fill,minmax(82px,1fr));
    }

        .social-links ul.grid li {
            text-align: center;
        }


/*VERTICAL-INDICATORS*/

.vertical-indicators {
    position: fixed;
    top: 14%;
    left: 100%;
    margin-left: -45px;
    z-index: 200;
}

.vertical-indicator-item a {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: 1px solid black;
    transition-duration: .2s;
}

.vertical-indicator-item {
    margin-bottom: 40px;
}

.vi-active {
    background-color: black;
}

/*NEXT-PAGE-DOWN*/

.next-page-down {
    width: 110px;
    height: 50px;
    display: block;
    position: fixed;
    z-index: 100;
    background-image: url(../imgs/arrow-bottom.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    left: 50%;
    margin-left: -55px;
    background-color: transparent;
    margin-top: -70px;
    top: 100%;
    transition-duration: .3s;
    opacity: .6;
}

    .next-page-down:hover {
        opacity: 1;
    }

    .next-page-down.next-page-top {
        /*    transform: rotate(180deg);*/
        display: none;
    }

    .next-page-down.np-fixed-pos {
        margin-top: -230px;
    }

/*CAROUSEL*/

.slick-carousel {
    width: 100%;
    height: 100%;
}

.carousel-item {
    width: 100%;
    background-size: cover;
    background-position: left 18%;
    background-repeat: no-repeat;
}

.carousel-btn-item {
    position: absolute;
    height: 110px;
    width: 50px;
    top: 50%;
    margin-top: -50px;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
    background-color: transparent;
    transition-duration: .3s;
    z-index: 10;
    opacity: .6;
}

    .carousel-btn-item:hover {
        opacity: 1;
    }

.prev-slide {
    background-image: url(../imgs/arrow-left.png);
    margin-left: 45px;
    left: 0;
}

.next-slide {
    background-image: url(../imgs/arrow-right.png);
    margin-left: -95px;
    left: 100%;
}

/*TRIAL-LABEL*/

.trial-label {
    display: block;
    width: 200px;
    height: auto;
    position: fixed;
    top: 17%;
    left: 100%;
    margin-left: -290px;
    z-index: 100;
    background-color: transparent;
    transform: scale(.8);
    transition-duration: .4s;
}

    .trial-label img {
        position: absolute;
        width: inherit;
        height: inherit;
    }

.tl-small {
    width: 150px;
    height: auto;
    margin-left: -250px;
}

    .tl-small:before {
        content: '';
        width: 200px;
        height: 220px;
        background-image: url(../imgs/trial-label-shadow.png);
        background-repeat: no-repeat;
        background-size: 100% auto;
        position: absolute;
        margin-left: -17px;
        margin-top: -14px;
    }


/*MORE BTN*/

.more {
    position: absolute;
    left: 50%;
    margin-top: 14px;
    margin-left: -100px;
    width: 200px;
    height: 55px;
    border-radius: 30px;
    border: 1px solid white;
    font-size: 24px;
    font-family: 'Tahoma', Arial;
    color: white;
    text-align: center;
}

/*PRODUCTS-GRID*/

.products-grid {
    grid-template-columns: repeat(auto-fill, minmax(156px, 1fr));
    /* grid-gap: 10px; */
    grid-row-gap: 0;
    margin-top: 20px;
    width: 93%;
    margin-left: 2%;
}

.products-item {
    width: 166px;
    height: 250px;
    transform: scale(.85);
    margin-top: -25px;
}

    .products-item:hover .meta-info {
        opacity: 1;
    }

.product-cover {
    width: 156px;
    height: 240px;
    border: 5px solid white;
}

.meta-info {
    position: absolute;
    margin-top: 180px;
    height: 70px;
    background-color: rgba(0,0,0,.6);
    color: white;
    width: 166px;
    opacity: 0;
    transition-duration: .3s;
}

.product-title {
    font-size: 16px;
    font-weight: bold;
    font-family: 'Tahoma', Arial;
    margin-left: 20px;
    margin-top: 10px;
    letter-spacing: 1px;
}

.product-about {
    font-size: 12px;
    font-family: 'Tahoma', Arial;
    margin-left: 20px;
    margin-top: 10px;
}

/*FORM-FIELD (for input type text)*/

.form-field {
    height: 46px;
    line-height: 46px;
    background-color: white;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 11px;
    margin-top: 11px;
    border: 1px solid #b3b3b3;
    padding-left: 28px;
    font-size: 14px;
    transition-duration: .2s;
}

    .form-field:focus {
        background-color: #e0f9ff;
        border-color: #82a2b3;
        box-shadow: 0 0 3px #82a2b3;
    }

/*BTN*/

.btn {
    width: 175px;
    height: 55px;
    border-radius: 30px;
    display: block;
    border: 2px solid #878787;
    font-weight: bold;
    font-family: 'Tahoma', Arial;
    font-size: 18px;
    text-transform: uppercase;
    color: white;
    cursor: pointer;
    transition-duration: .2s;
}

.btn-hover:hover {
    border-color: white;
    background: white !important;
}

.btn-orange {
    border-color: #a81100;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d75200+0,d75200+49,fe6700+49,fe6700+100 */
    background: #d75200; /* Old browsers */
    background: -moz-linear-gradient(top, #ee5e00 0%, #d75200 49%, #fe6700 49%, #fe6700 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ee5e00 0%,#d75200 49%,#fe6700 49%,#fe6700 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ee5e00 0%,#d75200 49%,#fe6700 49%,#fe6700 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d75200', endColorstr='#fe6700',GradientType=0 ); /* IE6-9 */
}

.btn-orange-hover:hover {
    color: #fe6700;
}

/*INPUT TYPE NUMBER*/

.channels-number-inp input {
    width: 38px;
    height: 23px;
    border: 1px solid grey;
    text-align: center;
    font-size: 18px;
    margin-top: 3px;
    line-height: 23px;
}

.channels-number-inp {
    min-width: 100px;
}

.channels-box-btn-plus,
.channels-box-btn-minus {
    background: transparent;
    font-size: 20px;
    color: white;
    width: 26px;
    text-align: center;
    height: 28px;
    line-height: 28px;
    font-weight: bold;
}

.channels-box-btn-plus {
    position: relative;
    left: -2px;
}

/*SINGLE PAGE*/

.single-page-title {
    font-size: 48px;
    font-family: 'Cambria', Arial;
    font-weight: bold;
    color: black;
    padding-top: 50px;
    padding-bottom: 50px;
}

.single-page {
    width: 90%;
    min-height: 600px;
    background-color: white;
    padding-top: 100px;
    margin: auto;
}

/*BOUND POPUP*/

.bound-popup {
    background: white;
    box-shadow: 0 0 3px black;
    position: fixed;
    right: 1%;
    display: none;
    padding-top: 1px;
    z-index: 500;
    width: 100px;
    top: 8%;
}

.bound-popup-back {
    position: fixed;
    z-index: 499;
    background-color: transparent;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
}

/*LOGIN POPUP*/

.login-popup {
    width: 260px;
    height: 280px;
    top: 10%;
    left: 70%;
}


.lp-content {
    margin-left: 24px;
    margin-top: 14px;
    width: 195px;
}

    .lp-content .form-field {
        width: 175px;
        height: 28px;
        line-height: 28px;
    }

.btn-login {
    border: 0;
    border-radius: 0 20px 20px 0;
    height: 30px;
    width: 30px;
    font-size: 20px;
    line-height: 28px;
    position: absolute;
    margin: 11px 0px 0px 175px;
}

#remmember-me {
    font-size: 16px;
}

.lp-links {
    margin-left: 20px;
    text-align: left;
    width: 130px;
}

    .lp-links a {
        font-size: 16px;
        text-decoration: underline;
        margin-top: 17px;
        display: block;
        color: black;
    }

        .lp-links a:hover {
            text-decoration: none;
        }

    .lp-links .register-user {
        color: red;
    }

.login-form {
    color: black;
    cursor: pointer;
}

    .login-form .fa {
        color: red;
    }

/*SANDWITCH*/

.sandwitch {
    width: 50px;
    height: 50px;
    background-image: url(../imgs/big-sandwitch.png);
    background-position: center center;
    background-size: 100% auto;
    background-color: transparent;
    position: absolute;
    left: 20px;
    display: none;
    opacity: .7;
    transition-duration: .2s;
    cursor: pointer;
}

    .sandwitch:hover {
        opacity: 1;
    }

/*MOBILE-MENU*/

.mobile-menu {
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0;
    z-index: 300;
    transition-duration: .2s;
    /*    display: none !important;*/
}

    .mobile-menu .header-navigation-link:before {
        display: none;
    }

.mob-menu-active {
    left: 0 !important;
    opacity: 1;
}

.sandwitch .brand-logo {
    z-index: 305;
    top: 5px;
}

.mobile-menu-close {
    width: 30px;
    height: 30px;
    opacity: .5;
    transition-duration: .2s;
    background-image: url(../imgs/close.png);
    background-size: 80% auto;
    background-position: center center;
    background-color: transparent;
    background-repeat: no-repeat;
    position: absolute;
    top: 15px;
    left: 15px;
    cursor: pointer;
}

    .mobile-menu-close:hover {
        opacity: .8;
    }

.mob-menu-nav {
    margin-top: 60px;
}

    .mob-menu-nav li {
        padding: 20px 0;
        border-bottom: 1px solid #ccc;
        width: 90%;
        margin-left: 5%;
    }

        .mob-menu-nav li:last-of-type {
            border-bottom: 0;
        }

.mob-login-form {
    width: 146px;
    position: relative;
    left: 20px;
}

    .mob-login-form .lp-content {
        margin-left: 0px;
        margin-top: 10px;
        width: 137px;
    }

    .mob-login-form .form-field {
        margin-bottom: 12px;
    }

    .mob-login-form .lp-links a {
        margin-top: 15px;
    }

    .mob-login-form label[for="remmember-me"] {
        font-size: 15px;
    }

/*POPUP*/

.popup-back {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: .3;
    z-index: 1000;
    display: none;
    transition-duration: .2s;
}

.popup-back-active {
    display: block;
}

.popup {
    position: fixed;
    width: 380px;
    height: 340px;
    background-color: #e6e6e6;
    z-index: 1001;
    left: 50%;
    margin-left: -190px;
    opacity: 0;
    top: -340px;
    margin-top: -170px;
    box-shadow: 0 0 8px black;
    transition-duration: .3s;
}

.popup-active {
    top: 50%;
    opacity: 1;
}

.popup-title {
    font-family: 'Cambria', Arial;
    font-size: 36px;
    margin-top: 30px;
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.popup-content {
    margin-top: 30px;
    width: 90%;
    padding-left: 5%;
}


/*FORGOT PASS*/

#forgot-pass small {
    font-family: 'Tahoma', Arial;
    font-size: 24px;
    font-weight: normal;
}

#forgot-pass {
    text-align: center;
}

    #forgot-pass .form-field {
        width: 300px;
        height: 40px;
    }

    #forgot-pass .btn {
        height: 50px;
        display: inline-block;
    }

.btn-grey {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c3c3c3+0,ababab+49,cbcbcb+49,cbcbcb+49,cbcbcb+51,cbcbcb+100 */
    background: #c3c3c3; /* Old browsers */
    background: -moz-linear-gradient(top, #c3c3c3 0%, #ababab 49%, #cbcbcb 49%, #cbcbcb 49%, #cbcbcb 51%, #cbcbcb 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #c3c3c3 0%,#ababab 49%,#cbcbcb 49%,#cbcbcb 49%,#cbcbcb 51%,#cbcbcb 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #c3c3c3 0%,#ababab 49%,#cbcbcb 49%,#cbcbcb 49%,#cbcbcb 51%,#cbcbcb 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c3c3c3', endColorstr='#cbcbcb',GradientType=0 ); /* IE6-9 */
}

.bottom-background {
    position: absolute;
    height: 90px;
    width: 100%;
    margin-top: -46px;
    box-shadow: 0 0 2px grey;
}

/*LANG POPUP*/

.lang-popup {
    text-align: right;
    padding-right: 8px;
    padding-left: 0px;
}

    .lang-popup li a {
        margin-bottom: 7px;
        display: block;
        font-size: 16px;
        color: black;
        text-decoration: none;
    }

        .lang-popup li a:hover {
            text-decoration: underline;
        }

        .lang-popup li a.active {
            display: none;
        }

.header-navigation-link.active {
    color: #666;
}

.label_ErrorMessage {
    font-size: 16px;
    color: #F00;
}
