/*

Animated message (from ajax example)

*/

/* Default styling */

#message {
    top: -200px;
    transition: all .5s;
}

/* When inside current slide */

.fancybox-slide--current #message {
    top: 0;
}

/* Different effect when fanyBox is closing; optional */

.fancybox-is-closing #message {
    top: 0;
    transform: scale(1.5);
}

/*

Advanced example - Customized layout

*/

@media all and (min-width: 600px) {
    /* Change color for backdrop */
    .fancybox-custom-layout .fancybox-bg {
        background: #eee
    }

    .fancybox-custom-layout.fancybox-is-open .fancybox-bg {
        opacity: 1;
    }

    /* Move caption area to the right side */
    .fancybox-custom-layout .fancybox-caption {
        background: #f1ecec;
        bottom: 0;
        color: #6c6f73;
        left: auto;
        padding: 30px 20px;
        right: 44px;
        top: 0;
        width: 256px;
    }

    .fancybox-custom-layout .fancybox-caption h3 {
        color: #444;
        font-size: 21px;
        line-height: 1.3;
        margin-bottom: 24px;
    }

    .fancybox-custom-layout .fancybox-caption a {
        color: #444;
    }

    /* Remove gradient from caption*/
    .fancybox-custom-layout .fancybox-caption::before {
        display: none;
    }

    /* Adjust content area position */
    .fancybox-custom-layout .fancybox-stage {
        right: 300px;
    }

    /* Align buttons at the right side  */
    .fancybox-custom-layout .fancybox-toolbar {
        background: #3b3b45;
        bottom: 0;
        left: auto;
        right: 0;
        top: 0;
        width: 44px;
    }

    /* Remove background from all buttons */
    .fancybox-custom-layout .fancybox-button {
        background: transparent;
    }

    /* Navigation arrows */
    .fancybox-custom-layout .fancybox-navigation .fancybox-button div {
        padding: 2px;
    }

    .fancybox-custom-layout .fancybox-navigation .fancybox-button[disabled] {
        color: #ddd;
    }

    .fancybox-custom-layout .fancybox-navigation .fancybox-button:not([disabled]) {
        color: #333;
    }

    /* Reposition right arrow */
    .fancybox-custom-layout .fancybox-button--arrow_right {
        right: 308px;
    }
}

/*

Advanced example - Morphing modal window

https://codepen.io/fancyapps/pen/rmwyXN

*/

.morphing-btn-wrap {
    display: inline-block;
    position: relative;
    text-align: center;
}

.morphing-btn {
    box-sizing: border-box;
    -webkit-transition: background .3s, color .2s .2s, width .2s 0s;
    -moz-transition: background .3s, color .2s .2s, width .2s 0s;
    -o-transition: background .3s, color .2s .2s, width .2s 0s;
    transition: color .3s .2s, width .2s 0s;
    white-space: nowrap;
}

.morphing-btn_circle {
    color: transparent !important;
    padding-left: 0;
    padding-right: 0;

    /* Override inline style rule */
    -webkit-transition: color .2s 0s, width .3s .2s;
    -moz-transition: color .2s 0s, width .3s .2s;
    -o-transition: color .2s 0s, width .3s .2s;
    transition: color .2s 0s, width .3s .2s;
    width: 35.6px !important;
}

.morphing-btn-clone {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: #470e8c;
    border-radius: 50%;
    position: fixed;
    -webkit-transition: all .5s cubic-bezier(.65, .05, .36, 1);
    -moz-transition: all .5s cubic-bezier(.65, .05, .36, 1);
    -o-transition: all .5s cubic-bezier(.65, .05, .36, 1);
    transition: all .5s cubic-bezier(.65, .05, .36, 1);
    z-index: 3;
}

.morphing-btn-clone_visible {
    display: block;
    -webkit-transform: scale(1) !important;
    -moz-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    -o-transform: scale(1) !important;
    transform: scale(1) !important;
}

.fancybox-morphing .fancybox-bg {
    background-color: #000000;
    opacity: 1;
    background-image: url('../img/livestream.jpg');
    background-size: cover;
    background-position: 50%;
}

.fancybox-morphing .fancybox-toolbar {
    right: 40px;
    top: 20px;
}

.fancybox-morphing .fancybox-button--close {
    background: rgba(0, 0, 0, .2);
    border-radius: 50%;
    color: #fff;
}

.fancybox-morphing .fancybox-button--close:hover {
    background: rgba(0, 0, 0, .25);
}

/* Styling for element used in example */

#morphing-content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: #212121de;
    line-height: 2;
    margin: 20px;
    padding: 6em 10vw;
    position: relative;
    z-index: 3;
}

#morphing-content * {
    color: #fff;
}

/*

Advanced example - Confirm dialog

https://codepen.io/fancyapps/pen/PmpePO

*/

.fc-container .fancybox-bg {
    background: #eee;
}

.fancybox-is-open.fc-container .fancybox-bg {
    opacity: .95;
}

.fc-content {
    box-shadow: 10px 10px 60px -25px;
    max-width: 550px;
}

/* Custom animation */

.fancybox-fx-material.fancybox-slide--previous,
.fancybox-fx-material.fancybox-slide--next {
    opacity: 0;
    transform: translateY(-60px) scale(1.1);
}

.fancybox-fx-material.fancybox-slide--current {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/*

Advanced example - Product quick view

*/

.quick-view-container {
    background: rgba(10, 10, 10, .85);
}

.quick-view-content {
    bottom: 0;
    height: calc(100% - 40px);
    left: 0;
    margin: auto;
    max-height: 650px;
    max-width: 980px;
    position: absolute;
    right: 0;
    top: 0;
    width: calc(100% - 40px);
}

.quick-view-carousel {
    background: #fff;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 57%;
}

.quick-view-carousel .fancybox-stage {
    bottom: 30px;
}

.quick-view-aside {
    background: #fff;
    bottom: 30px;
    color: #777;
    left: auto;
    padding: 50px 0 30px 0;
    position: absolute;
    right: 0;
    top: 30px;
    width: 43%;
}

.quick-view-aside::before,
.quick-view-aside::after {
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    top: 0;
}

.quick-view-aside::before {
    background: #f4f4f4;
    width: 8px;
}

.quick-view-aside::after {
    background: #e9e9e9;
    width: 1px;
}

.quick-view-aside > div {
    height: 100%;
    overflow: auto;
    padding: 5vh 30px 0 30px;
    text-align: center;
}

.quick-view-aside > div > p {
    font-size: 90%;
}

.quick-view-close {
    background: #f0f0f0;
    border: 0;
    color: #222;
    cursor: pointer;
    font-family: Arial;
    font-size: 14px;
    height: 44px;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    text-indent: -99999px;
    top: 30px;
    transition: all .2s;
    width: 44px;
}

.quick-view-close:hover {
    background: #e4e4e4;
}

.quick-view-close::before,
.quick-view-close::after {
    background-color: #222;
    content: '';
    height: 18px;
    left: 22px;
    position: absolute;
    top: 12px;
    width: 1px;
}

.quick-view-close:before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.quick-view-close:after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.quick-view-bullets {
    bottom: 0;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-align: center;
    width: 100%;
    z-index: 99999;
}

.quick-view-bullets li {
    display: inline-block;
    vertical-align: top;
}

.quick-view-bullets li a {
    display: block;
    height: 30px;
    position: relative;
    width: 20px;
}

.quick-view-bullets li a span {
    background: #d4d2d2;
    border-radius: 99px;
    height: 10px;
    left: 50%;
    overflow: hidden;
    position: absolute;
    text-indent: -99999px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
}

.quick-view-bullets li.active a span {
    background: #ff4453;
}

/*
// End of examples
*/

body, html {max-width: 100%;overflow-x: hidden;background-color: #101010;}
.fancybox-progress { background: rebeccapurple; }
.fancybox-thumbs__list a:before { border-color: rebeccapurple; }
.fancybox-thumbs__list { background: #444; }
.fancybox-thumbs.fancybox-thumbs-y { background: #444; }
.gallery { margin:5px; box-shadow: 0 0 15px -5px black; border-radius: 4px; overflow: hidden; }
.fancybox-content { border-radius: 4px; overflow: hidden; }
.fancybox-slide--iframe .fancybox-content, .fancybox-slide--map .fancybox-content, .fancybox-slide--pdf .fancybox-content, .fancybox-slide--video .fancybox-content { overflow: hidden; }
.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0;
    background: #191919bf!important;
}
.loginarea {
    position: absolute;
    top: 15px;
    right: 100px;
    z-index: 900;
    width: 450px;
}
.login, .register {
    text-align: center;
    color: white;
    padding: 5px;
    background: #00000047;
    border-radius: 30px 50px;
    border: 1px solid #42424273;
    cursor: pointer;
    opacity: 0.7;
    height: 33px;
}

.login:hover, .register:hover {
    opacity: 1;
    background: rebeccapurple;
}
@media screen and (max-width: 520px){
    .loginarea {
        display: none;
    }
    .breadcumb-area {
        max-height: 108px;
        background: black!important;
    }
    .classy-navbar-volume{
        display: block!important;
    }
    div#sticky-wrapper {
        position: fixed;
        background: black;
        width: 100%;
        top: 0;
        margin: 0;
        /* overflow: hidden; */
    }
    .slider {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
    }
    .hero-area {
        height: auto;
        padding-top: 56.25%;
        top: 77px;
    }
}
@media screen and (min-width: 720px){
    @-webkit-keyframes MOVE-BG {
        0% {
            /*background-size: 100%;*/
            background-position: 50% 50%; 
        }
        25% {
            /*background-size: 110%;*/
            background-position: 50% 25%;
        }
        50% {
            /*background-size: 110%;*/
            background-position: 50% 50%;
        }
        75% {
            /*background-size: 110%;*/
            background-position: 50% 75%;
        }
        100% {
            /*background-size: 100%;*/
            background-position: 50% 50%;
        }
    }

    .breadcumb-area.bg-img {
        -webkit-animation-name: MOVE-BG;
        -webkit-animation-duration: 45s;
        -webkit-animation-timing-function: linear;
        -webkit-animation-iteration-count: infinite;
        transition: background-size 2s ease-in;
        -moz-transition: background-size 2s ease-in;
        -ms-transition: background-size 2s ease-in;
        -o-transition: background-size 2s ease-in;
        -webkit-transition: background-size 2s ease-in;
    }
}
img.playbutton {
    position: absolute;
    max-width: 100px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    /* box-shadow: 0 0 10px 10px #9c16af; */
    border-radius: 50%;
    max-height: 60%;
}
.prophetic-utterance {
    /* border-left: 2px solid gold; */
    border-bottom: 1px solid transparent;
    border-top: 1px solid transparent;
    border-radius: 10px!important;
    overflow: hidden;
    /* border-style: ridge; */
    /* border-right: 1px solid transparent; */
}

.btn-primary{
     background-image: url('../img/button.png');
     background-size: cover;
     box-shadow: inset 0 0 60px #3b003e;
}

.btn-secondary {
    /* background-image: url(../img/button-sec.jpg); */
    background-size: cover;
}

.cta {
    padding: 12px 21px;
    margin-top: 20px;
    display: block;
    max-width: 250px;
    margin: 0 auto;
    font-weight: 600;
    color: white;
    border-bottom: 1px solid #9b439b;
    border-top: 1px solid #f8f9fa61;
    overflow: hidden;
    background: #9709ab47;
    background-image: url('../img/button.png');
    background-size: cover;
    text-shadow: 0 4px 3px #5b0c5d;
    box-shadow: inset 0 0 60px #3b003e;
    border-radius: 30px 50px;
    width: 100%;
    border: 1px solid #970e97;
    cursor:pointer;
}

.cta:hover {
    /* border-bottom: 1px solid #ffd70070; */
    box-shadow: 0 0 15px #00000094;
    /*background-color: #6d386e;*/
    /*background-image: url('../img/metal2.jpg');
    background-position-x: -125px;
    background-size: cover;*/
}