﻿@charset "utf-8";
/* CSS Document */


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul, li {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    background-color: #e8e8e5 !important;
}

.outer-frame {
    display: block;
    background: linear-gradient(to right, rgb(107, 107, 107) 0%, rgb(199, 199, 199) 11%, rgb(158, 158, 158) 20%, rgb(115, 115, 115) 50%, rgb(117, 115, 115) 81%, rgb(140, 140, 140) 100%);
    background: -ms-linear-gradient(to right, rgb(107, 107, 107) 0%, rgb(199, 199, 199) 11%, rgb(158, 158, 158) 20%, rgb(115, 115, 115) 50%, rgb(117, 115, 115) 81%, rgb(140, 140, 140) 100%);
    background: -o-linear-gradient(to right, rgb(107, 107, 107) 0%, rgb(199, 199, 199) 11%, rgb(158, 158, 158) 20%, rgb(115, 115, 115) 50%, rgb(117, 115, 115) 81%, rgb(140, 140, 140) 100%);
    background: -webkit-linear-gradient(to right, rgb(107, 107, 107) 0%, rgb(199, 199, 199) 11%, rgb(158, 158, 158) 20%, rgb(115, 115, 115) 50%, rgb(117, 115, 115) 81%, rgb(140, 140, 140) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2e2e2', endColorstr='#d1d1d1', GradientType=1 );
    MARGIN-TOP: 5%;
    padding: 6px;
    border: 1px solid #000000;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.for-border {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 45px;
    border-bottom-right-radius: 45px;
    border: 1px solid #A9A9A9;
}

.radio-mobile-screen {
    border-top: 83px solid #000;
    border-bottom: 100px solid #000;
    border-left: 7px solid #000;
    border-right: 7px solid #000;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 46px;
    border-bottom-right-radius: 46px;
    width: 100%;
    background-image: url(../images/bg-mob.png);
    position: relative;
}

@media (max-width: 1200px) {
    .radio-mobile-screen {
        border-top: 70px solid #000;
        border-bottom: 85px solid #000;
        border-left: 6px solid #000;
        border-right: 6px solid #000;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }
}

@media (max-width: 768px) {
    .radio-mobile-screen {
        border-top: 50px solid #000;
        border-bottom: 60px solid #000;
        border-left: 5px solid #000;
        border-right: 5px solid #000;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }
}

@media (max-width: 480px) {
    .radio-mobile-screen {
        border-top: 40px solid #000;
        border-bottom: 50px solid #000;
        border-left: 4px solid #000;
        border-right: 4px solid #000;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
}

.inner-radio-frame {
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
}


.speaker {
    display: block;
    position: absolute;
    width: 100px;
    height: 20px;
    border: 1px solid #676767;
    border-radius: 20px;
    top: -31px;
    left: 135px;
    background-color: #ECECEC;
}

.player-contianer {
    margin-right: auto;
    margin-left: auto;
}

.player {
    display: block;
    border-top: 1px solid #757575;
    position: relative;
    background-color: rgba(163, 165, 163, 0.25);
    /* border-radius: 6px; */
    -webkit-animation-name: example4;
    -webkit-animation-duration: 3s;
    animation-name: example1;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    /* margin: 0 auto; */
    height: 179px;
    width: 100%;
    border-bottom: 1px solid #777777;
}

.playerout {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes example4 {
    0% {
        background-color: red;
    }

    25% {
        background-color: yellow;
    }

    50% {
        background-color: blue;
    }

    75% {
        background-color: green;
    }

    100% {
        background-color: red;
    }
}

/* Standard syntax */
@keyframes example4 {
    0% {
        background-color: red;
    }

    25% {
        background-color: yellow;
    }

    50% {
        background-color: blue;
    }

    75% {
        background-color: green;
    }

    100% {
        background-color: red;
    }
}

.jesus-img {
    width: 117px;
    height: 148px;
    /* float: left; */
    position: relative;
    z-index: 50000;
}

.playerdiv {
    display: block;
    height: 100%;
    margin-bottom: 3px;
    margin-top: 40px;
}

.circmenudiv {
    text-align: center;
    list-style-type: none;
    margin-bottom: initial;
}

.gloosymen {
    position: relative;
    display: inline-block;
    margin: 2px;
}

.menu-btn {
    width: 105px;
    height: 105px;
    border-radius: 5px;
}

.change-width {
    width: 180px;
}

.edit-width-new {
    width: 95px;
    height: 95px;
}

.edit-width-new-l {
    width: 198px;
}

.follow-us-wmail {
    display: block;
    direction: rtl;
    background: -webkit-linear-gradient(45deg,rgba(247, 159, 0, 0.88) 25%,rgb(246, 155, 0) 25%,#FF8D05 75%,#FF8B00 75%,#FD9922);
    margin: 2px 2px;
    padding: 4px;
}

.follow-word {
    display: block;
    text-align: right;
    font-weight: bold;
    font-size: 20px;
    margin: 5px 10px;
    color: #fff;
}

.subsc {
    font-size: 19px;
    color: #fff;
    display: block;
    text-align: right;
    margin-top: 21px;
    margin-right: 9px;
}

.btn-send {
    display: block;
    height: 100%;
    float: left;
    width: 45px;
    height: 45px;
    background: rgba(158, 24, 24, 0.54);
    border-radius: 50%;
    border: 3px solid #fff;
    margin: 5px 0;
}

.sendbtn-img {
    width: 28px;
    margin: 7px 5px 0 0;
}

.follow-mail {
    display: block;
    width: 100%;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #868686;
}

.album-link {
    display: block;
    height: 100%;
}

    .album-link:hover {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.07);
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        position: relative;
        z-index: 5000000;
    }

.player-detials {
    /* margin-top: 10px; */
    /* margin-right: 15px; */
    /* float: right; */
    /* width: 211px; */
    direction: rtl;
}

.now-here {
    display: inline-block;
    vertical-align: top;
    direction: rtl;
    font-size: 20px;
    color: #fff;
    margin: 10px;
}

.album-now-play {
    color: #fff;
    text-align: center;
    display: block;
    margin-top: 6px;
    font-size: 23px;
    z-index: 50;
}





.clear {
    clear: both;
}

audio {
    width: 100%;
    display: block;
    border-radius: 5px;
    position: absolute;
    top: 0;
}


.sensorlamp {
    width: 8px;
    height: 8px;
    background-color: red;
    -webkit-animation-name: example;
    -webkit-animation-duration: 3s;
    animation-name: example;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    position: absolute;
    top: -45px;
    left: 35px;
    border-radius: 50%;
    box-shadow: 1px 1px 3px 0px #fff;
}



/* Chrome, Safari, Opera */
@-webkit-keyframes example {
    0% {
        background-color: red;
    }

    25% {
        background-color: yellow;
    }

    50% {
        background-color: blue;
    }

    75% {
        background-color: green;
    }

    100% {
        background-color: red;
    }
}

/* Standard syntax */
@keyframes example {
    0% {
        background-color: red;
    }

    25% {
        background-color: yellow;
    }

    50% {
        background-color: blue;
    }

    75% {
        background-color: green;
    }

    100% {
        background-color: red;
    }
}



.logo-link {
    display: block;
    /* position: relative; */
    /* top: -35px; */
    /* left: 9px; */
    width: 352px;
}

.mobile-bottom {
    display: inline-block;
    vertical-align: middle;
}

    .mobile-bottom img {
        width: 82px;
        margin: 3px 20px 0 20px;
    }

.jesustodaylink {
    text-decoration: none;
    font-size: 17px;
    color: #fff;
    /* margin-left: 17px; */
    /* font-weight: bold; */
    display: block;
    height: 100%;
    -webkit-animation-name: example1;
    -webkit-animation-duration: 3s;
    animation-name: example1;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    position: relative;
    top: -45px;
    left: 172px;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes example1 {
    0% {
        color: #1afe00;
    }

    25% {
        color: #f3f3f3;
    }

    50% {
        color: #00e0ff;
    }

    75% {
        color: #ff00ac;
    }

    100% {
        color: #fef100;
    }
}

/* Standard syntax */
@keyframes example1 {
    0% {
        color: #1afe00;
    }

    25% {
        color: #f3f3f3;
    }

    50% {
        color: #00e0ff;
    }

    75% {
        color: #ff00ac;
    }

    100% {
        color: #fef100;
    }
}

.jesustodaylink:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


#pageloaddiv {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 176px;
}


.load {
      display: block;
    width: 40px;
    position: absolute;
       top: 26%;
    left: 36%;
}


.down-arrow-info {
    display: block;
    position: fixed;
    top: 27px;
    left: -319px;
    -webkit-transition: left 1s;
    -moz-transition: left 1s;
    -o-transition: left 1s;
    transition: left 1s;
}

    .down-arrow-info:hover {
        left: -15px;
    }



.link-drop {
    padding: 2px 39px;
    background: linear-gradient(white, #DAD9D9, #AFACAC);
    background: -moz-linear-gradient(white, #DAD9D9, #AFACAC);
    background: -o-linear-gradient(white, #DAD9D9, #AFACAC);
    background: -webkit-linear-gradient(white, #DAD9D9, #AFACAC);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    -webkit-bottom-left-radius: 30px;
    -o-bottom-left-radius: 30px;
    -moz-bottom-left-radius: 30px;
    -webkit-bottom-right-radius: 30px;
    -o-bottom-right-radius: 30px;
    -moz-bottom-right-radius: 30px;
    margin: 1px auto;
    border-top: 2px solid #FF0606;
    display: block;
    position: absolute;
    top: 126px;
    right: -106px;
    transform: rotate(-90deg);
    font-weight: bold;
    font-size: 21px;
}


.down-arrow-info:hover .dit-droped {
    visibility: visible;
}

.dit-droped {
    background-color: #fff;
    width: 100%;
    /* height: 78%; */
    border: 1px solid #CCC8C8;
    border-top: 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    -webkit-bottom-left-radius: 12px;
    -o-bottom-left-radius: 12px;
    -moz-bottom-left-radius: 12px;
    -webkit-bottom-right-radius: 12px;
    -o-bottom-right-radius: 12px;
    -moz-bottom-right-radius: 12px;
    box-shadow: 2px 2px 2px;
    padding: 10px;
    visibility: hidden;
    overflow: hidden;
}

.label-drop-vid {
    width: 85px;
}

    .label-drop-vid:after {
        content: ' : ';
        float: left;
    }


marquee {
    width: 100%;
    position: absolute;
    z-index: 21;
    bottom: 30px;
    left: 0;
    color: #fff;
}




.fasal-icon {
    width: 24px;
    margin: 0 12px;
}

.new-fasal {
    font-size: 13px;
}


.count-no {
    display: block;
    position: absolute;
    z-index: 90000;
    color: #000;
    background: #fff;
    top: 4px;
    right: 2px;
    border-radius: 50%;
    width: 17px;
    height: 17px;
}


.top-bar {
    display: block;
    padding: 4px 0;
    background: rgba(62, 62, 62, 0.86);
    margin: 0px 0px 0px 1px;
    width: 100%;
    /* border-bottom: 1px solid; */
    border-top: 1px solid;
}

.awe-edit {
    color: #fff;
    font-size: 15px;
}

.bar-tabs {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
    float: left;
}

.right-tabs {
    float: right;
}

.bar-tabs li {
    display: inline-block;
    margin: 0 5px;
    vertical-align: middle;
}

.no-of-vistor {
    display: inline-block;
    margin: 0 5px;
    color: #fff;
}



.today {
    display: inline-block;
    color: #fff;
    margin-left: 8px;
    text-align: right;
    font-weight: bold;
    font-size: 18px;
}


.pray-today {
    display: inline-block;
    color: #fff;
    margin-right: 8px;
}


.for-pray {
    display: block;
    padding: 5px;
    border-bottom: 1px solid #fff;
    background: rgba(0, 0, 0, 0.38);
    width: 100%;
    margin-bottom: 10px;
}


.sliding-btn {
    display: block;
    padding: 4px 0;
    background-color: #fff;
    height: 20px;
}

#box {
    height: auto;
    /* background: rgba(0, 0, 0, 0.81); */
    color: #fff;
    /* cursor: pointer; */
    position: absolute;
    z-index: 999999999999999;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 1s ease-in-out;
}

.hiddeen {
    min-height: 48px;
    display: none;
    width: 100%;
    background: rgba(148, 148, 148, 0.72);
    margin-top: 5px;
    position: relative;
    /* padding: 5px 5px; */
}

    .hiddeen.open {
        display: block;
    }


.awe-edit-click {
    cursor: pointer;
}

.center-block {
    position: absolute;
    bottom: -73px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .center-block {
        bottom: -50px;
    }
    
}
#prev {
    display: inline-block;
    margin-left: 50px;
    float: left;
    cursor: pointer;
}

#next {
    display: inline-block;
    margin-right: 50px;
    float: right;
    cursor: pointer;
}

.arrow-slide {
    width: 40px;
    
}

.center-block .jc-logo {
    display: inline-block;
    
}
@media (max-width: 768px) {
    .center-block .jc-logo {
        margin-left: 0;
    }
    
}

    .center-block .jc-logo a {
        display: block;
        height: 100%;
    }

        .center-block .jc-logo a img {
            display: block;
            width: 50px;
        }

#outside {
    display: table;
    margin: 0 auto;
    position: relative;
}

.wrapper-clockdate {
    font-size: 14px;
}

#clock-large {
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0px 0px 1px #fff;
    color: #fff;
}

    #clock-large span {
        color: #888;
        text-shadow: 0px 0px 1px #333;
        font-size: 13px;
    }

#date-large {
    color: #fff;
}

.credit {
    position: fixed;
    bottom: 10px;
    right: 10px;
    color: #aaa;
    font-size: 13px;
    font-family: arial,sans-serif;
}

    .credit a {
        text-decoration: none;
        color: #f8f8f8;
        font-weight: bold;
    }

        .credit a:hover {
            border-bottom: 1px dotted #f8f8f8;
        }







.social-page {
    display: block;
    width: 100%;
    padding: 0;
}

    .social-page ul {
        display: block;
        margin-bottom: 0;
        border-bottom: 2px solid #fff;
        padding: -22px;
        background-color: rgba(68, 68, 68, 0.85);
    }

        .social-page ul li {
            display: inline-block;
            margin: 3px;
            /* border-right: 1px solid #fff; */
            /* padding: 3px 3px 5px 3px; */
            /* margin-left: -3px; */
        }


            .social-page ul li a {
                display: block;
                height: 100%;
            }

                .social-page ul li a img {
                    width: 71px;
                    display: block;
                }



.div-shape {
    width: 100%;
    height: 325px;
    background: #fff;
    position: absolute;
    top: 1px;
    overflow-y: auto;
    z-index: 99999999999999999999;
    direction: rtl;
    /* max-width: 407px; */
}


.title-div {
    display: block;
    text-align: center;
    margin: 5px 0;
    border-bottom: 1px solid #000;
    font-size: 20px;
    color: #FF0C0C;
    font-weight: bold;
    padding-bottom: 5px;
}

.input-name {
    display: block;
    font-size: 18px;
    margin: 5px 14px 4px 0;
}


.input-add {
    display: table;
    width: 65%;
    margin: 0 12px 0 0;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ABABAB;
    outline: 0;
}


.dropdown-input {
}

.big-input {
    height: 84px;
    width: 337px;
}


.start-now {
        display: block;
    margin: 14px;
    text-align: justify;
    line-height: 1.5;
}



.css_slider{
    width: 415px;
    height: 335px;
    overflow: hidden;
    position: relative;
    margin-top:15px;
}
.css_slider .controls{
    position: absolute;
    z-index: 10;
    /**/
    bottom: 0;
}
.css_slider .controls label{
    display: inline-block;
    margin: 5px;
    width: 10px;
    height: 10px;
    line-height: 10px;
    text-align: center;
    border-radius: 10px;
    background: #999;
    border: 3px solid #333;
    color: #333;
    font-size: 10px;
    font-family: sans-serif;
    font-weight: bold;
    cursor: pointer;
}
.css_slider .slides{
    width: 100%;
    height: 100%;
    position: absolute;
}
.css_slider .slides .slide{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 100%;
    transition: left 1s;

}
.css_slider .slides .active_slide{
    display: none;
}
.css_slider .slides .active_slide:checked + .slide{
    left: 0%;
    z-index: 1;
}
.css_slider .slides .active_slide#s1:checked ~ .c1,
.css_slider .slides .active_slide#s2:checked ~ .c2
{
    background: red;
}


/*responsive code */
