@import 'mixin.less';

/* Variable Starts */

// colors
@primary-color: #2567a5;
@dark-gray: #9a9a9a;
@red: red;

@white: #FFF;
@black: #000000;
@gray: lighten(@black, 40%);
@light-gray: lighten(@black, 70%);

//fonts
@logo-font: 'Raleway', sans-serif;
@primary-font: 'PT Sans', sans-serif;

/* Variable Ends */

// =============================================================================

:focus {
    outline: -webkit-focus-ring-color auto 0;
}

body {
    font-family: @primary-font;
}

.custom-navbar {
    z-index: 5; // position: fixed;
    width: 100%;
    background: @primary-color;
    top: 0;
    &.bg-menu {
        background-color: @white;
        box-shadow: 0px 0px 21px -6px #929292;
    }
    .top-nav {
        &.socials {
            a.icon {
                text-decoration: none !important;
                img {
                    width: 20px;
                }
                span {
                    
                    font-size: 14px;
                    color: @dark-gray;
                }
                &:hover span {
                    color: darken(@dark-gray, 20%);
                }
            }
        }
    }
    .brand-logo {
        // position: absolute;
        // top: 5px;
        img {
            height: 85px;
            margin-top: -15px;
            background-color: #fff;
            margin-bottom: 20px;
        }
    }
    .navbar-brand {
        color: @primary-color;
        font-size: 18px;
        margin-left: 20px;
        font-weight: 700;
        font-family: @logo-font;
        &:hover, &:focus {
            color: @primary-color;
        }
    }
    .menu {
        background-color: @primary-color;
        box-shadow: 0px 4px 17px -1px lighten(@primary-color, 20%);
        .nav-item {
            a {
                color: @white;
                font-size: 18px;
                font-weight: 500;
                transition-duration: 500ms;
                padding: 0.3rem 1rem;
                position: relative;
                &:before {
                    content: ' ';
                    background: #fff;
                    width: 0;
                    height: 3px;
                    position: absolute;
                    bottom: 0;
                    left: 1px;
                    transition-duration: 500ms;
                }
                &:hover::before {
                    width: 100%;
                }
                &:hover {
                    box-shadow: 0px 14px 15px -9px #ffffff;
                    background-color: #ffffff40;
                }
                &.nav-link.active {
                    &:before {
                        content: ' ';
                        background: #fff;
                        width: 100%;
                        height: 3px;
                        position: absolute;
                        bottom: 0;
                        left: 1px;
                        transition-duration: 500ms;
                    }
                    box-shadow: 0px 14px 15px -9px #ffffff;
                }
            }
        }
    }
}

.dropdown {
    transition: linear 400ms;
    .dropdown-toggle::after {
        vertical-align: 0.155em;
    }
    .dropdown-menu {
        border: none;
        border-radius: 2px;
        transition: linear 400ms;
        background: @white;
        // top: 95%;
        box-shadow: 0px 7px 21px -4px lighten(@primary-color, 30%);
        &.dropdown-menu-right {
            right: 0;
            left: initial;
        }
        a.dropdown-item {
            color: @primary-color;
            transition-duration: 400ms;
            &:hover {
                color: @white !important;
                border-color: transparent;
                background: @primary-color;
                box-shadow: 0px 4px 12px -4px @primary-color;
            }
        }
    }
}


// Mobile Main Nav Starts
.navbar-toggler{
    &.collapsed .navbar-toggler-icon {
        background-image: url('https://noah-live.s3.amazonaws.com/assets/menu.svg');
    }
    .navbar-toggler-icon {
        background-image: url('https://noah-live.s3.amazonaws.com/assets/left-arrow.svg');
    }
}
// Mobile Main Nav Ends


// Home Page Slider Starts
.main-slider-section {
    display: none;
    .home-slider {
        // overflow: hidden;
        // img {
        //     max-width: 100vw;
        // }
        
        .vhome-slider .slick-slide {
          width: 475px;
        }
        
        .slider-image {
            width: 100%; 
            max-width: 900px; 
            height: auto; 
            padding-left: 5px; 
            padding-right: 5px;
        }
        
        .slick-prev, .slick-next {
            z-index: 1;
            width: 50px;
            height: 50px;
            &:before {
                font-size: 50px;
            }
        }
        
        .slick-prev {
            left: 20px;
        }
        
        .slick-next {
            right: 20px;
        }
    }
}
// Home Page Slider Ends

.post-module.news {
    .thumbnail {
        height: 380px;
    }
    .post-content {
        height: 200px;
    }
}

// Daily-Manna on Home Page Starts
.daily {
    min-height: 550px;
}
.post-module {
  position: relative;
  z-index: 1;
  display: block;
  background: @white;
//   min-width: 270px;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  .transitions;
  &:hover {
    .box-shadow(@blur: 35px; @color: fade(@black, 30%););
    .thumbnail {
      img, .image {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        transform: scale(1.1);
        // opacity: .6;
      }
    }
  }
  .date {
        position: absolute;
        top: 0px;
        right: 0px;
        z-index: 1;
        background: #e74c3c;
        width: 55px;
        height: 55px;
        padding: 5px 0;
        color: @white;
        font-weight: 700;
        text-align: center;
        -webkti-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        border-bottom-left-radius: 5px;
        .day {
            font-size: 18px;
        }
        .month {
            font-size: 12px;
            text-transform: uppercase;
        }
    }
  .thumbnail {
    background: @white;
    height: 400px;
    overflow: hidden;
    .image {
        filter: saturate(0.5);
        -webkit-filter: saturate(0.5);
        background-position: center;
        min-height: 200px;
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        .transitions;
    }
    img {
        display: block;
        width: 120%;
        .transitions;
    }
  }
  .post-content {
    position: absolute;
    bottom: 0;
    background: @white;
    width: 100%;
    height: 220px;
    padding: 20px;
    .box-size;
    .transitions(@timing: cubic-bezier(.37,.75,.61,1.05));
    .category {
      position: absolute;
      top: -41px;
      left: 0;
      background: @primary-color;
      padding: 10px 15px;
      color: @white;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      border-top-right-radius: 5px;
    }
    .title {
      margin: 0;
      padding: 0 0 10px;
      color: @dark-gray;
      font-size: 24px;
      font-weight: 700;
      .transitions(@timing: cubic-bezier(.37,.75,.61,1.05));
    }
    .sub_title {
      margin: 0;
      padding: 0 0 20px;
      color: @primary-color;
      font-size: 20px;
      font-weight: 400;
    }
    .description {
        color: @gray;
        font-size: 14px;
        line-height: 1.8em;
        max-height: 80px;
        overflow: hidden;
    }
    .crown {
        position: absolute;
        top: -35px;
        right: -7px;
    }
    .post-meta {
        color: @light-gray;
        position: absolute;
        bottom: 0px;
        left: 0;
        z-index: 2;
        background: @white;
        width: 100%;
        // height: 51px;
        .post-by {
            margin: 0 16px 0 0;
            padding: 8px 0 0 30px;
            display: none; //block
            img {
                margin-top: -4px;
                width: 24px;
                border-radius: 50%;
            }
        }
        a {
            color: @light-gray;
            text-decoration: none;
        }
    }
  }
  
  &.list {
        width: 100%;
        display: inline-flex;
        .thumbnail {
            height: 220px;
            position: relative;
            width: 50%;
            .image {
                min-height: 100%;
            }
        }
        .post-content {
            position: relative;
            height: 220px;
            width: 100%;
            padding: 20px;
            .category {
                top: initial;
                bottom: 10px;
                left: initial;
                right: 10px;
                z-index: 5;
                border-radius: 4px;
                background-color: #3465aa;
                box-shadow: 2px 4px 10px -3px lighten(@dark-gray, 20%);
                transition-duration: 400ms;
            }
            .crown {
                position: absolute;
                top: -3px;
                right: -10px;
                opacity: 0.8;
                img {
                    width: 20px;
                }
            }
        }
        &:hover .category {
            box-shadow: 0px 0px 0px 0px #000;
        }
  }
}
// Daily-Manna on Home Page Ends


// Comments Section Starts 
.comments-section {
    textarea {
        border: none;
        box-shadow: 0 0 4px 0px #969696;
        &:focus {
            border-color: transparent;
            outline: 0;
            box-shadow: 0px 0px 10px 0px #ccc;
        }
    }
}

#comments-component {
    .comment-count {
        font-family: @primary-font;
        font-size: 0.9em;
        text-align: center;
        margin: 0;
    }

    .comment {
        padding: 0px;
        position: relative;
        margin: 15px auto;
        // background-color: #fcfcfc;
        // box-shadow: 0 0 11px 0px #e6e6e6;
        // border-radius: 3px;
    }
    .comment.reply {
        padding-left: 11% !important;
        .photo {
            background-position: 52% 0;
            background-size: 270%;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin: 0 auto
        }
    }
    .cm-pic {
        width: 14%;
        padding: 5px;
        text-align: center;
    }
    .photo {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        // box-shadow: 0 0 10px 0px #ccc;
        // float: left;
        // margin-right: 20px;
    }

    .comment-text {
        width: 86%;
        float: left;
        box-shadow: 0 0 11px 0px #e6e6e6;
        background: #fcfcfc;
        padding: 15px;
        border-radius: 5px;
    }
    
    .action {
        position: absolute;
        right: 0;
        top: 0;
        color: #ccc;
        cursor: pointer;
        opacity: 0;
        transition-duration: 500ms;
    }

    .name {
        margin: 0;
        font-size: 0.8em;
        color: @dark-gray;
        font-weight: 500;
    }

    .time {
        margin: 0;
        color: #a0a0a0;
        font-weight: 400;
        // font-size: 0.8em;
        // padding-left: 20px;
    }

    p {
        margin: 0;
        font-size: 0.9em;
        color: #626a73;
        white-space: pre-line;
    }

    .likes {
        // position: absolute;
        // left: 18px;
        // bottom: 0;
        float: right;
        display: block;
        color: darkgray;
        font-size: 14px;
        cursor: pointer;
        img {
            margin-right: 2px;
            margin-top: -5px;
        }
    }

    /* To clear the div Clearfix, I am using the nth child from 2nd div onwards. */
    .comment:nth-child(n + 2):after {
        display: block;
        content: " ";
        clear: both;
    }

    .comment:hover .action {
        // display: block;
        opacity: 1;
    }
}
// Comments Section Ends


// List Grid Toggle Starts 
.list-grid-toggle {
    // display: none;
    width: 30px;
    height: 25px;
    border-radius: 3px;
    color: @primary-color;
    cursor: pointer;
    font-size: 12px;
    font-weight: 200;
    letter-spacing: 3px;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.15s ease;
    -webkit-user-select: none;
        -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
    .viewLabel {
        position: absolute;
        top: 5px;
        right: 40px;
        width: 100px;
        .label {
            margin-left: 4px;
        }
    }
}
.glicon {
  width: 30px;
  margin-bottom: 6px;
}
.icon-bar {
  position: relative;
  width: 30px;
  height: 5px;
  margin: 0 auto 5px auto;
  background: @primary-color;
  box-shadow: 2px 2px 4px -2px #636363;
  transition: all 0.15s ease;
}
.icon-bar:last-child {
  margin-bottom: 0;
}
.icon-bar:before, .icon-bar:after {
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  background: @primary-color;
  box-shadow: 2px 2px 4px -2px #636363;
  content: '';
  opacity: 0;
  transition: all 0.15s ease;
}
.icon-bar:before {
  left: -15px;
}
.icon-bar:after {
  right: -15px;
}
.icon-grid .icon-bar {
  width: 5px;
}
.icon-grid .icon-bar:before, .icon-grid .icon-bar:after {
  opacity: 1;
}
.icon-grid .icon-bar:before {
  left: 0;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}
.icon-grid .icon-bar:after {
  right: 0;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
// List Grid Toggle Ends


//  Events list on home page Starts
.u-float-right {
    float: right;
}
.u-flex-center {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}
.subtle {
    color: @dark-gray;
    font-size: 14px;
}
.card-media {
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
    height: 110px;
    margin-bottom: 25px;
    transition: all 300ms ease-out;
    width: 100%;
    cursor: pointer;
    a {
        text-decoration: none;
    }

    &:hover {
        box-shadow: 0 5px 14px rgba(0, 0, 0, .2);
    }
}
.card-media-object-container {
    background: none;
    float: left;
    height: 100%;
    width: 35%;
    position: relative;
    .event-date {
        position: absolute;
        background-color: #b1b1b1;
        color: #fff;
        font-weight: 600;
        padding: 6px;
        text-align: center;
        line-height: 1.2;
        top: 7px;
        left: 6px;
        box-shadow: 0px 0px 0px 3px #f3f3f3;
        height: 97px;
        width: 79px;
        .day {
            font-size: 2rem;
            padding-left: 10px;
            padding-top: 7px;
            sup {
                font-size: 1rem;
                top: -1.3em;
            }
        }
        .mon-year {
            font-size: 1.5rem;
        }
    }
    .crown {
        position: absolute;
        z-index: 1;
        bottom: 5px;
        left: 10px;
    }
}

.card-media-object {
    background-position: center center;
    background-size: cover;
    height: 100%;
    transition: all 300ms ease-out;
}
.card-media-object:after {
    content: " ";
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 300ms ease-out;
    z-index: 10;
}
.card-media:hover .card-media-object:after {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0.4) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0.4) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0.4) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    opacity: 1;
}

.card-media-object-tag {
    background-color: @white;
    border-radius: 2px;
    padding: 2px 7px;
    position: absolute;
    right: 2px;
    top: 2px;
    font-size: 10px;
}
.card-media-object-social-list {
    bottom: 4px;
    left: 10px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 20;
}
.card-media-object-social-list li {
    border-radius: 50%;
    display: inline-block;
    height: 30px;
    margin-right: 6px;
    opacity: 0;
    overflow: hidden;
    transform: translateY(5px);
    transition: all 300ms ease-out;
    width: 30px;
}
.card-media:hover .card-media-object-social-list li {
    opacity: 1;
    transform: translateY(0);
}

.card-media-object-social-list li:nth-child(1) {
    transition-delay: 0;
}
.card-media-object-social-list li:nth-child(2) {
    transition-delay: 75ms;
}
.card-media-object-social-list li:nth-child(3) {
    transition-delay: 150ms;
}
.card-media-object-social-list-item-additional {
    border: 1px solid @white;
    color: @white;
    font-size: 12px;
    padding-top: 7px;
    text-align: center;
}

.card-media-body {
    background-color: @white;
    float: left;
    height: 100%;
    padding: 7px 15px;
    position: relative;
    width: 65%;
}
.card-media-body-top {
    display: block;
}
.card-media-body-top-icons {
    margin-top: -2px;
    opacity: 0;
    transition: all 300ms ease-out;
    transform: translateY(-5px);
}
.card-media:hover .card-media-body-top-icons {
    opacity: 1;
    transform: translateY(0);
}

.card-media-body-top-icons>svg {
    cursor: pointer;
    margin-left: 10px;
    transition: all 300ms ease-out;
}
.card-media-body-top-icons>svg:hover {
    fill: #444;
}

.card-media-body-heading {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: @dark-gray;
    line-height: 1.2;
}
.card-media-body-supporting-bottom {
    position: absolute;
    bottom: 10px;
    left: 0;
    opacity: 1;
    padding: 0 15px;
    transition: all 300ms ease-out;
    width: 100%;
}
.card-media:hover .card-media-body-supporting-bottom {
    opacity: 0;
    transform: translateY(-8px);
}

.card-media-body-supporting-bottom-text {
    display: inline-block;
}
.card-media-body-supporting-bottom-reveal {
    opacity: 0;
    transform: translateY(8px);
    transition: all 300ms ease-out;
}
.card-media:hover .card-media-body-supporting-bottom-reveal {
    opacity: 1;
    transform: translateY(0);
}

.card-media-link {
    color: @primary-color;
    text-decoration: none;
    &:hover {
        color: @primary-color;
        text-decoration: underline;
    }
    &.disabled {
        color: #989898;
        pointer-events: none;
    }
}
//  Events list on home page Ends


// Videos Page - Videos page Starts
.videos-section {
    .video-p {
        padding:56% 0 0 0;
    }
    .video-frame {
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:100%;
    }
    
    .video-post {
        padding: 15px;
        .inner{
            height: 300px;
            box-shadow: 0 1px 10px 0 rgba(0,0,0,0.09);
            background: #fff;
            border-bottom: 0;
            transition: all 0.6s cubic-bezier(0.165,0.84,0.44,1);
            overflow: hidden;
            &:hover, &:focus {
                -webkit-transform: translate(0, -8px);
                -moz-transform: translate(0, -8px);
                -ms-transform: translate(0, -8px);
                -o-transform: translate(0, -8px);
                transform: translate(0, -8px);
                box-shadow: 0 15px 40px rgba(0, 0, 0, .16);
            }
            .screencast{
                position: relative;
                height: 125px;
                .play-btn{
                    position: absolute;
                    width: 48px;
                    height: 48px;
                    background: url('/public/ministry/images/svg/play-button.svg') no-repeat scroll 0 0;
                    top: calc(50% - 24px);
                    left: calc(50% - 24px);
                    opacity: 0.5;
                }
                .media-length{
                    position: absolute;
                    background: @primary-color;
                    line-height: 20px;
                    font-size: 12px;
                    padding: 0 5px;
                    left: 0;
                    bottom: 0;
                    color: #fff;
                }
                .cast {
                    // height: 145px;
                }
            }
            .post-data{
                padding: 12px;
                padding-bottom: 25px;
                min-height: calc(300px - 125px);
                .post-title{
                    font-weight: 600;
                    line-height: 22px;
                    color: darken(@dark-gray, 20%);
                }
                .author,.date{
                    font-size: 12px;
                    color: darken(@dark-gray, 20%);
                    font-size: 12px;
                    font-weight: 600;
                }
                .author{
                    margin-right: 30px;
                } 
                .category{
                    display: block;
                    .name { 
                        color: darken(@dark-gray, 20%);
                        font-size: 12px;
                        font-weight: 600;
                        display: block;
                        img {
                            margin-right: 5px;
                            margin-bottom: 4px;
                        }
                    }
                }
                .post-title{
                    font-size: 14px;
                    display: block;
                    padding-bottom: 15px;
                }
                .isSocial {
                    height: 60px;
                    .soc {
                        padding: 3px 0 0 20px;
                    }
                }
            }
            &:hover{            
                .screencast{
                    .play-btn{
                        opacity: 1;
                    }
                }
            }
            
            
        }
    }
    
    // .live-sidebar .side-video .y-thumb img {
    //     height: 80px;
    //     width: auto;
    // }

}
// Videos Page - Videos page Ends


// Live Videos Page Starts
.liveVideo-section {
    .video-p {
        padding:56% 0 0 0;
    }
    .video-frame {
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:100%;
    }
    
    .countdown-timer {
        color: #0073c5;
        td {
            text-align: center;
            padding: 10px 5px;
        }
        .tr-text {
            font-size: 14px;
            td {
                padding: 0;
            }
        }
        table {
            table-layout: fixed;
            margin-bottom: 0;
            tr {
                border: none;
            }
        }
        .fix-width {
            position: relative;
            font-weight: 500;
            font-size: 2em;
        }
        .circle {
            width: 100px;
            height: 0;
            padding-bottom: 71%;
            border-radius: 50%;
            margin: 0 auto;
        }
        .numbers {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 85%;
        }
        svg {
            width: 85%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            &.filter-shadow {
                filter: drop-shadow(0px 0px 1.5px rgba(0, 115, 197, 0.9));
            }
        }
    }
}
.live-sidebar {
    .previous {
        font-weight: 600;
        color: darken(@dark-gray, 10%);
        border-bottom: 1px solid lighten(@dark-gray, 10%);
        padding-bottom: 3px;
    }
    .side-video {
        position: relative;
        display: block;
        .y-thumb {
            align-self: center;
            padding: 8px 0;
            position: relative;
            img {
                width: 120px;
                max-height: 100px;
                opacity: 0;
            }
            .bg-blur {
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                height: 100%;
                width: 100%;
                position: absolute;
                top: 0;
                z-index: -2;
            }
        }
        .y-content {
            padding-left: 10px;
            .title {
                font-weight: 600;
                font-size: 14px;
                color: darken(@dark-gray, 20%);
                text-transform: capitalize;
            }
            .date, .views {
                color: darken(@dark-gray, 5%);
                font-size: 12px;
            }
        }
        .paid-icon {
            position: absolute;
            width: 20px;
            left: 4px;
            bottom: 0;
        }
    }
    .v-container {
        transition-duration: 300ms;
    }
    a {
        color: @dark-gray;
        text-decoration: none !important;
        &:hover .v-container {
            box-shadow: 0px 0px 10px -2px darken(@dark-gray, 5%);
        }
    }
}
// LiveVideos Page Ends


// Contact Page Start
.contact-section {
    .logo img {
        height: 120px;
        max-width: 400px;
        box-shadow: 0px 0px 6px -2px #adadad;
    }
    .content {
        font-size: 20px;
        color: #585858;
        padding-bottom: 7px; 
        a {
            color: #2567a5;
        }
    }
    .gmap_canvas {
        overflow:hidden;
        background:none !important;
    }
    #gmap_canvas {
        height: 100vh;
    }
}
// Contact Page Ends


// Donations Page Starts
.donations-section {
    .donate-today {
        width: fit-content;
        width: -moz-fit-content;
        padding: 3rem 1rem;
        input.mobile {
            width: 80vw;
            height: 20vh;
            font-size: 16vh;
            border: none;
            border-bottom: 5px solid coral;
            padding: 2vmin 1vmin;
            caret-color: auto;
            color: @red;
            &:focus, &:active {
                outline: 0;
                box-shadow: 0 0 0 0 transparent;
            }
            &::-webkit-input-placeholder{
                color: @red;
            }
            &::-moz-placeholder{
                color: @red;
            }
            &:-ms-input-placeholder{
                color: @red;
            }
            &::-ms-input-placeholder{
                color: @red;
            } 
            &::placeholder {
                color: @red;
            }
        }
    }
}
// Donations Page Ends


// TVlist Page Starts
.tvlist-section {
    .tv-list .tv-card{
        padding: 10px 10px 0 10px;
        box-shadow: 0px 0px 8px 0px #ccc;
        transition-duration: 300ms;
        .title {
            font-size: 30px;
            font-weight: 600;
            color: darken(@dark-gray, 20%);
            transition-duration: 400ms;
            border-bottom: 1px solid @dark-gray;
        }
        .tv-thumb {
            height: 320px;
            .img-fluid {
                max-width: 230px;
            }
        }
    }
    .reach-city {
        color: darken(@dark-gray, 3%);
    }
    .tv-label {
        font-weight: 600;
        color: darken(@dark-gray, 5%);
    }
    hr {
        border-top: 1px solid rgba(0, 0, 0, 0.04);
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
}
// TVlist Page Ends


// Manna Show Page Starts
.dailyShow-section {
    .daily-type {
        font-size: 20px;
        color: @dark-gray; 
        padding-left: 2px;
        font-weight: 600
    }
    .head {
        font-size: 45px;
        font-weight: 600;
        border-bottom: none;
        margin-top: 5px;
    }
    .daily-photo .image {
        max-height: 600px
    }
    .person {
        .person-info {
            padding: 0px 5px;
            .name {
              color: darken(@dark-gray, 10%);
              font-size: 18px;
            }
        }
    }
    .card-show {
        margin: 0 auto 60px auto;
        padding: 50px 20px 20px 20px;
        background-color: @white;
        border-radius: 2px;
        box-shadow: 1px 2px 7px 0px #bbbbbb;
    }
    .published-date {
        position: absolute;
        color: #b1b1b1;
        font-weight: 600;
        padding: 5px;
        text-align: center;
        line-height: 1.2;
        min-width: 90px;
        top: 20px;
        left: 10px;
        box-shadow: 0px 0px 0px 3px #f3f3f3;
        .day {
            font-size: 4rem;
            padding-left: 10px;
            sup {
                font-size: 1.5rem;
                top: -1.3em;
            }
        }
        .mon-year {
            font-size: 2rem;
        }
    }
    .daily-show {
        min-height: 200px;
        .image {
            max-height: 300px;
        }
        .ttl {
            color: lighten(@dark-gray, 25%);
            font-weight: 600;
            
            border-bottom: 1px dashed lighten(@dark-gray, 25%);
            padding-left: 10px;
        }
        .content {
            color: darken(@dark-gray, 30%); 
            letter-spacing: 0.3px;
            font-size: 20px;
            text-align: justify;
            blockquote {
                border-left: 4px solid #3465aa;
                padding-left: 15px;
                margin: 7px 0 7px 8px;
                font-weight: 600;
                font-size: 18px;
                font-style: italic;
            }
            img {
               max-width:100%;
               border-radius:10px;
               width: 100%;
            }
            iframe {
            //   width: 100%;
            //   min-height:400px;
            }
        }
    }
}
// Manna Show Page Ends


.user-section {
    .user-photo {
        box-shadow: 3px 3px 16px -4px #525252;
        border: 0px solid #fff;
        border-radius: 5px;
    }
}

// Flat Picker overrides Starts 
.flatpickr-day {
    border-radius: 0;
}

.flatpickr-current-month input.cur-year {
    font-family: @primary-font;
}

// Flat Picker overrides Ends

// --------------
// --------------
a {
    &:hover {
        color: darken(@dark-gray, 20%);
        text-decoration: none;
    }
}

section {
    h1.head {
        margin-top: 15px;
        border-bottom: 1px solid @primary-color;
        padding-bottom: 15px;
        color: darken(@primary-color, 5%);
    }
    .container {
        max-width: 85%;
    }
}

.title-cat {
    color: @dark-gray;
    font-size: 20px;
}
    

.isSocial {
    height: 45px;
    bottom: 0px;
    .soc {
        margin: 0 16px 0 0;
        padding: 8px 0 0 20px;
        line-height: 2;
        display: -webkit-box!important;
        display: -ms-flexbox!important;
        display: flex!important;
        -ms-flex-wrap: wrap!important;
        flex-wrap: wrap!important;
        .likes, .comments {
            img {
                width: 20px;
                margin-top: -7px;
            }
        }
        .views img {
            width: 20px;
            margin-top: -5px;
        }
        span {
            color: #b3b3b3;
        }
    }
}

.view-like-comment {
    .likes, .comments {
        cursor: pointer;
        img {
            width: 20px;
            margin-top: -7px;
        }
    }
    .views img {
        width: 20px;
        margin-top: -5px;
    }
}

.cat-list {
    list-style: none;
    padding: 0;
    .list-item {
        a {
            color: #757575;
            padding: 4px 20px 4px 10px;
            display: block;
            position: relative;
            text-transform: capitalize;
            font-size: 18px;
            box-shadow: 0px 2px 6px -3px #c3c3c3;
            margin: 10px;
            background: #ffffff;
            border-radius: 5px;
            transition-duration: 300ms;
            &:hover {
                padding-left: 13px;
            }
            .count {
                position: absolute;
                top: 7px;
                right: 7px;
                color: #fff;
                background-color: #bbb;
                border-radius: 5px;
                min-width: 20px;
                height: 20px;
                font-size: 14px;
                text-align: center;
                z-index: 5;
                padding: 0 2px;
                box-shadow: 1px 2px 5px 0 #9c9c9c8c;
            }
        }
        &.active {
            border-left:3px solid @primary-color;
            border-right: 2px solid lighten(@dark-gray, 20%);
        }
        .arrow {
            position: absolute;
            bottom: 10px;
            right: 33px;
        }
        &.sub a {
            border-left: 2px solid lighten(@dark-gray, 20%);
        }
    }
}

.bible-commentary-section {
    .book-card {
        
        .name {
            color: #ffffff;
            background-color: #d4d4d4;
            border-radius: 3px;
            transition-duration: 400ms;
        }
        .count {
            position: absolute;
            right: 0;
            top: 0;
            background-color: #333;
            color: #fff;
            padding: 0 5px;
            font-size: 18px;
        }
        &:hover .name {
            color: @primary-color;
            background-color: #fff;
        }
    }
}

.ebooks-section {
    .book-card {
        .bookType {
            position: absolute;
            right: 0;
            bottom: 0;
            z-index: 5;
            padding: 5px;
        }
        
        .bookType img {
            width: 20px;
        }
        .shadow-b {
            box-shadow: 3px 3px 5px 1px rgba(0, 0, 0, 0.35);
            transition-duration: 400ms;
        }
        .book-img {
            // height: 130px;
            max-height: 300px;
            object-fit: cover;
        }
        .name {
            color: #fff;
            line-height: 1.2;
            transition-duration: 400ms;
        }
        .author {
            color: #989898;
            line-height: 1.2;
            transition-duration: 400ms;
        }
        .count {
            position: absolute;
            right: 0;
            top: 0;
            background-color: #d4d4d4;
            color: #fff;
            padding: 0 5px;
            font-size: 12px;
        }
        &:hover {
            .card {
                transform: scale(1.02);
                box-shadow: 3px 3px 8px 1px rgba(0, 0, 0, 0.35);
                border-radius: 0;
            }
            .name {
                text-decoration: underline;
            }
        }
    }
}

.no-decoration {
    text-decoration: none !important;
}

.not-found {
    font-size: 6vmin;
    color: gray;
}

.btn.focus,
.btn:focus,
button:focus{
    outline: 0;
    box-shadow: 0 0 7px -1px rgba(0, 0, 0, 0.24);
}

.btn-dropdown {
    background-color: @white;
    color: @primary-color;
    position: absolute;
    right: 15px;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #ccc !important;
}

.btn-donate {
    display: table;
    background-color: @primary-color;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    border-radius: 0;
    padding: 5px 12px;
    // width: 200px;
    // margin: 25px auto 10px auto;
    // position: absolute;
    // top: 100px;
    &:hover {
        box-shadow: 6px 6px 0px -1px lighten(@primary-color, 20%);
    }
}

.btn-login {
    display: table;
    border: 1px solid @dark-gray;
    color: @dark-gray !important;
    font-weight: 500;
    font-size: 16px;
    border-radius: 0;
    padding: 5px 12px;
    &:hover {
        box-shadow: 6px 6px 0px -1px lighten(@dark-gray, 20%);
    }
}

.btn-custom {
    border: 1px solid @white;
    border-radius: 2px;
    color: @white;
    transition-duration: 300ms;
    background: transparent;
    &:hover {
        color: @primary-color;
        border-color: @primary-color;
    }
}

.btn-default-outline {
    background: @white;
    border: 1px solid @dark-gray;
    color: @dark-gray !important;
    font-weight: 500;
    font-size: 14px;
    border-radius: 0;
    padding: 5px 10px;
    &:hover, &:focus {
        box-shadow: 4px 4px 0px -1px lighten(@dark-gray, 20%);
    }
}

/* Like floating button Starts */
.press {
    padding: 5px 12px;
    .press:hover,
    .press:active {
      box-shadow: 0px 0px 21px -6px #929292;
    }
}

.like-fab {
    position: fixed; 
    right: 20px; 
    bottom: 20px; 
    z-index: 500;
    transition-duration: 300ms;
    .btn {
        transition: all 300ms;
        -moz-transition: all 300ms;
        -webkit-transition: all 300ms;
    }
    .btn-like {
        color: @white;
        background-color: #007bff;
        border-color: #007bff;
    }
    &:hover .btn{
        -webkit-box-shadow: 0 0 15px 0 #525252;
        -moz-box-shadow: 0 0 15px 0 #525252;
        box-shadow: 0 0 15px 0 #525252;
    }
}
.like-img {
    margin-bottom: 6px;
}
/* Like floating button Ends */

.events-modal {
    .group-name {
        color: lighten(@dark-gray, 20%);
    }
    
    .event-name {
        color: darken(@dark-gray, 5%); 
        font-weight: 600;
    }
}

// Events Calendar Starts

.fc .fc-button-group>* {
    float: left;
    margin: 0 0 5px 2px;
}

.fc-toolbar h2 {
    margin: 0 0 15px 0;
    color: @primary-color;
    opacity: 0.8;
}

.fc {
    button {
        text-shadow: none;
        border-width: 2px;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.35;
        border: none;
        border-radius: 2px;
        padding: 11px 22px;
        cursor: pointer;
        outline: none;
        height: auto;
        box-shadow: none;
        transition: all .2s ease-in-out;
        &.fc-state-default {
            background: #dcdcdc;
            color: #fff;
        }
        .fc-icon {
            position: relative;
            top: -.05em;
            margin: 0 .2em;
            vertical-align: middle;
        }
        &:hover {
            background-color: @dark-gray;
            box-shadow: 0px 5px 8px -4px #353535;
        }
    }
}


.fc-toolbar {
    .fc-state-active, .ui-state-active {
        background: #9c9c9c;
        box-shadow: 0px 5px 8px -4px #6d6d6d;
    }
    &.fc-state-disabled {
        background: #ccc !important;
        &:hover {
            box-shadow: none;
        }
    }
}


.fc-icon {
    display: inline-block;
    height: 1em;
    line-height: 1em;
    font-size: 1em;
    text-align: center;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fc-unthemed .fc-content, .fc-unthemed .fc-divider, .fc-unthemed .fc-list-heading td, .fc-unthemed .fc-list-view, .fc-unthemed .fc-popover, .fc-unthemed .fc-row, .fc-unthemed tbody, .fc-unthemed td, .fc-unthemed th, .fc-unthemed thead {
    border-color: #f1f1f1;
}

// Removing Outer border starts
.fc .fc-widget-header {
    border: 0;
}

.fc .fc-body .fc-widget-content, .fc .fc-row:last-child td {
    border-bottom: 0;
}

.fc td:last-child {
    border-right: 0;
}
.fc td:first-child {
    border-left: 0;
}
// Removing Outer border Ends

.fc th {
    text-align: right;
}

.fc-day-header {
    color: #868686;
}

.fc-unthemed td.fc-today {
    background: #f1f1f1;
    box-shadow: 0 0 13px -4px #868686;
    .fc-day-number {
        background: #8e8e8e;
        color: #fff;
        padding: 2px 4px;
        min-width: 20px;
        text-align: center;
        border-radius: 2px;
    }
}

.fc-day-top .fc-day-number {
    color: @primary-color;
    padding: 2px 4px;
}

.fc-event {
    border: none;
    letter-spacing: 0.5px;
    font-size: 14px;
    padding: 0 0 2px 4px;
    background-color: #00a2ed;
    color: #fff !important;
    a {
        color: #fff;
    }
}

.fc-list-item:nth-child(odd) {
    background: #f7f7f7;
}

// Events Calendar Ends

.instaWidget {
    // height: 500px;
    overflow-y: auto;
}

.nav-tabs .nav-link {
    color: darken(@dark-gray, 20%);
}

.card-wd, .card {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    background-color: #fff;
}

.fb-page, 
.fb-page span, 
.fb-page span iframe[style] { 
    width: 100% !important;
}

.socials {
    .icon {
        &:hover img {
            transform: scale(1.1);
        }
    }
}

.text-theme {
    color: @primary-color;
}

.footer {
    background: #151515;
    color: @white; // height: 400px;
    letter-spacing: 1px;
    .h5 {
        color: #e6e6e6;
        letter-spacing: 5px;
        text-transform: uppercase;
        border-bottom: 1px solid #e6e6e6;
        padding-bottom: 8px;
        padding-left: 10px;
    }
    .contact-us {
        .email, .phone, .address {
            color: #848484;
        }
        .phone, .address, .email {
            font-size: 1.2rem;
        }
    }
    .item {
        font-size: 1.4rem;
        padding: 0 10px;
        transition-duration: 400ms;
    }
    a {
        color: #848484;
        transition-duration: 400ms;
        &:hover {
            text-decoration: none;
            .item {
                color: @white;
                padding-left: 11px;
            }
        }
    }
    .copyright {
        color: #848484;
        border-top: 1px solid #292929;
        padding: 2.5rem 0.5rem;
    }
}

.top-fix {
    // margin-top: 15vmin;
}

// --------------
// --------------

.force-break {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.limit-3:nth-of-type(n+4) {
    display: none;
}

// 3 bar Loading css Starts 
.spinner {
  margin: 10px auto 0;
  width: 100px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #adadad;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}
// 3 bar Loading css Ends

@media screen and (max-width: 767px) {
    
    .head {
        font-size: 2.2rem;
    }
    
    .custom-navbar {
        .btn-donate {
            background-color: @white;
            border: 1px solid @primary-color;
            color: @primary-color;
        }
        .btn-login {
            display: none;
        }
        .brand-logo img {
            margin-top: 0px;
        }
        .menu {
            min-height: 60px;
            z-index: 999;
            .nav-item {
                border-bottom: 1px solid #efefef14;
                a.nav-link.active {
                    box-shadow: none;
                    background-color: #ffffff40;
                }
            }
        }
    }
    
    button.navbar-toggler {
        position: absolute;
        margin-top: 20px;
        top: 3px;
    }
    
    ul.nav {
        flex-flow: column;
    }
    
    .card-media:nth-of-type(n+4) {
        display: none;
    }
    
    .limit-sm-2:nth-of-type(n+3) {
        display: none;
    }
    
    .main-slider-section {
        .home-slider {
            .slider-image {
                max-width: 500px; 
            }
        }
    }
    
    .dailyShow-section {
        .head {
            font-size: 2rem;
            margin-bottom: 0px;
            padding-left: 2px;
        }
        .published-date {
            position: relative;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            padding: 5px 70px;
            margin: 20px auto;
            left: 0;
            top: 0;
            box-shadow: none;
            color: @primary-color;
            .day {
                font-size: 2rem;
                padding-right: 5px;
                sup {
                    font-size: 1rem;
                    top: -0.9em;
                }
            }
            .mon-year {
                font-size: 2rem;
            }
        }
    }
    
    .tvlist-section {
        .tv-list .tv-card {
            .tv-thumb {
                height: 220px;
                .img-fluid {
                    max-width: 210px;
                    max-height: 100%;
                }
            }
        }
    }
    
    .contact-section {
        #gmap_canvas {
            height: 300px;
        }
    }
    
    // Google Re-Captcha resize
    #rc-imageselect, .g-recaptcha {
        transform:scale(0.77);
        -webkit-transform:scale(0.77);
        transform-origin:0 0;
        -webkit-transform-origin:0 0;
    }
    
    .no-mobile {
        display: none;
    }
    
    section {
        .container {
            max-width: 90%;
        }
    }
    
    #comments-component {
        .cm-pic {
            width: 15%;
        }
        .photo {
            width: 8vmin;
            height: 8vmin;
            box-shadow: none;
        }
        .comment-text {
            width: 84%;
        }
        .comment.reply {
            padding-left: 11% !important;
            .photo {
                width: 8vmin;
                height: 8vmin;
                box-shadow: none;
            }
        }
    }
    
    .like-fab {
        bottom: 45px;
    }
}

@media screen and (max-width: 450px) {
    .main-slider-section {
        .home-slider {
            .slick-prev, .slick-next {
                width: 25px;
                height: 25px;
                &:before {
                    font-size: 25px;
                }
            }
            
            .slider-image {
                max-width: 100vw; 
            }
     
            
            .slick-prev {
                left: 10px;
            }
            
            .slick-next {
                right: 10px;
            }
        }
    }
    
    .post-module.list .post-content .category {
        display: none;
    }
    
    .liveVideo-section {
        .countdown-timer {
            transform: scale(0.7);
        }
    }
}

@media (min-width: 576px) and (max-width: 992px)  {
    .home-content {
        .container {
            max-width: 100%;
        }
    }
    .widget-area {
        .container {
            max-width: 100%;
        }
    }

    button.navbar-toggler {
        margin-top: 20px
    }
    
}

@media screen and (min-width: 768px) and (max-width: 992px) {
    .limit-lg-4:nth-of-type(n+4) {
        display: block !important;
    }
    
    .main-slider-section {
        .home-slider {
            .slider-image {
                max-width: 600px; 
            }
        }
    }
}

@media screen and (min-width: 980px) and (max-width: 1200px) {
    .post-module {
        min-width: 245px;
    }
}

@media screen and (min-width: 1440px) {
   section {
        .container {
            max-width: 1140px;
        }
   }
   .home-content {
        .container-fluid {
            max-width: 1400px;
        }
    }
}
