/* Main JaW panel */

#jawpanel {
    position: relative;
    display: block
}

#jawpanel .content .scroll-wrapper {
    position: absolute;
    height: 100%;
    overflow-y: scroll;
    margin-right: -20px;
    /* hide scroll bars */
    padding-right: 25px;
}

#jawpanel .content.kuk {
    right: 15px!important
}

#jawpanel .content.slide-in.kuk {
    right: 0!important
}

#jawpanel .content {
    position: fixed;
    background: #fff;
    border-left: 1px solid #ededed;
    z-index: 999999;
    color: #fff;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    width: 300px;
    height: 100%;
    padding: 25px;
    text-align: center;
    top: 0;
    right: 0;
    /* for left use left: 0 */
    padding-bottom: 0;
    padding-top: 0;
    transition: 1s;
}

#jawpanel .icon {
    position: absolute;
    top: 250px;
    background-color: #ededed;
    cursor: pointer;
    left: -45px;
    width: 45px;
    height: 45px;
}

#jawpanel .demo-text {
    color: #777;
    margin-top: 3px;
    font-size: 12px;
    margin-bottom: 0;
}

#jawpanel .icon i {
    position: absolute;
    color: #535353;
    top: 16px;
    margin: 0 auto;
    text-align: center;
    left: 0;
    right: 0;
}

#jawpanel .demos .hoverImg,
#jawpanel .demos li:hover .mainImg {
    display: none
}

#jawpanel .demos li:hover .hoverImg {
    display: inline-block
}

#jawpanel .demos li:hover .hugeImg {
    display: inline-block;
    position: absolute;
    left: -600px;
    top: 20%;
    width: 600px!important;
    max-width: 600px;
    height: auto;
}

#jawpanel .demos .hugeImg {
    display: none;
}

#jawpanel .demos {
    margin: 0px;
    padding: 0px;
    list-style: none
}

#jawpanel h1.buy {
    margin: 0;
}

#jawpanel .buy a {
    font-size: 18px;
    padding: 15px;
    color: #000 !important;
    line-height: 25px;
}

#jawpanel .demos li {
    width: 50%;
    float: left;
    margin-bottom: 15px;
}

#jawpanel .demos li a {
    color: #fff!important
}

#jawpanel .demos li img {
    border: 1px solid #ededed
}

#jawpanel .demos li.even {
    padding-right: 5px
}

#jawpanel .demos li.odd {
    padding-left: 5px
}

#jawpanel .demos li.odd:last-of-type img,
#jawpanel .demos li.even:last-of-type img {
    padding-bottom: 0;
    margin-bottom: 0;
}

#jawpanel .content .buynow {
    display: block;
    margin-bottom: 25px;
    /* margin-top: 25px;*/
}

#jawpanel .content .buynow:hover {
    opacity: 0.7
}

#jawpanel .content .buynow a {
    border: none;
    /*color: white;*/
    padding: 15px 32px;
    position: relative;
    display: inline-block
}

#jawpanel .content .buynow a,
#jawpanel .content .buynow a:hover {
    color: #fff;
    display: block;
}

#jawpanel .content .title {
    color: #212121;
    margin-bottom: 25px
}

#jawpanel .content .title span {
    font-weight: 600
}


/* JaW Spinnin */


/*@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}*/


/* JaW Animation */

#jawpanel .content.slide-out {
    animation: slide-out 1s forwards;
    -webkit-animation: slide-out 1s forwards
}

#jawpanel .content.slide-in {
    animation: slide-in 1s forwards;
    -webkit-animation: slide-in 1s forwards
}

@keyframes slide-in {
    100% {
        transform: translateX(0%)
    }
}

@-webkit-keyframes slide-in {
    100% {
        -webkit-transform: translateX(0%)
    }
}

@keyframes slide-out {
    0% {
        transform: translateX(0%)
    }
    100% {
        transform: translateX(100%);
        /* for left position use -100% */
    }
}

@-webkit-keyframes slide-out {
    0% {
        -webkit-transform: translateX(0%)
    }
    100% {
        -webkit-transform: translateX(100%);
        /* for left position use -100% */
    }
}


/* Hide for tablets and mobile devices */

@media only screen and (max-width: 1199px) {
    #jawpanel {
        display: none
    }
}