/* Sticky footer styles
-------------------------------------------------- */



/*html{
    height:100%
}*/
body {
    /*height: 100%;*/
    height: 100vh;
    background-color: #F5F5F5;
    /* The html and body elements cannot have any padding or margin. */
}


.row {
    margin-right: 0;
    margin-left: 0;
}
/* Wrapper for page content to push down footer */
#wrap {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    /* Negative indent footer by its height */
    margin: 0 auto -60px;
    /* Pad bottom by footer height */
    padding: 0 0 60px;
}

/* Set the fixed height of the footer here */
#footer {
    height: 60px;
    background-color: #f5f5f5;
}


/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */

#wrap > .container {
    padding: 10px 15px 0;
}

#footer > .container {
    padding-left: 15px;
    padding-right: 15px;
}

.nav-color {
    background-color: #EE2A5A;
}

.navbar-header {
    width: 100%;
    padding: 0px;
    margin-top: 15px;
}

.navbar-brand {
    font-size: 18px;
    float: none;
}

#bottomNav {
    /*padding:10px;*/
}

    #bottomNav img {
        margin-bottom: 5px;
    }

    #bottomNav a {
        font-size: 10pt;
        color: #666666;
        text-decoration: none;
    }

        #bottomNav a:hover {
            color: #EE2A5A;
        }

.tab-nav-padding {
    padding: 10px;
}

.navbar-inverse {
    background-color: #E0E0E0;
}

.btn-get-start {
    background-color: #EE2A5A;
    height: 40px;
    width: 36%;
    text-align: center;
    position: absolute;
    bottom: 35px;
    z-index: 10;
    margin-left: 32%;
    margin-right: 40%;
    border-radius: 20px;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
}

.btn-sign-in {
    background-color: #EE2A5A;
    color: #ffffff;
    border-radius: 20px;
    font-size: 18px;
    height: 40px;
    width: 50%;
}

.btn-facebook {
    background-color: #3B5998;
    color: #ffffff;
    border-radius: 20px;
    font-size: 18px;
    height: 40px;
    width: 110%;
}

.btn-gmail {
    background-color: #FF4343;
    color: #ffffff;
    border-radius: 20px;
    font-size: 18px;
    height: 40px;
    width: 110%;
    margin-left: -8px;
}

button:focus {
    outline: none;
}

.btn:hover, .btn:focus, .btn.focus {
    color: #ffffff;
   /* text-decoration: none;
    border: none;*/
}

.navbar {
    min-height: 50px;
    margin-bottom: 0px;
    border: 0px solid transparent;
}

.nav-fa-size {
    font-size: 25px;
    color: #ffffff;
    
}

.padding {
    padding: 0px;
}

.sign-in-body {
    background-color: #ffffff;
    margin-top: -30px;
    border-radius: 10px;
}

.sign-in-contant {
    margin-top: 10%;
    margin-bottom: 10%;
}

a {
    color: #333;
    text-decoration: none;
}

.sign-in-container {
    padding-bottom: 15px;
}

.text-box-style {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    height: 40px;
    border: none;
    font-size: 18px;
    background-color: #F5F5F5;
}

.text-box-icon-style {
    background-color: #F5F5F5;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    border: none;
}

.fa-mobile-phone, .fa-phone, .fa-lock, .fa-key, .fa-user-secret, .fa-ellipsis-h, .fa-user, .fa-calendar {
    color: #C4C4C4;
    font-size: 20px;
}

.form-control:focus {
    border-color: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.containerdiv {
    border: 0;
    float: left;
    position: relative;
}

.cornerimage {
    border: 0;
    position: absolute;
    top: 0;
    right: 0;
}

.profile-icon {
    text-align: center;
    z-index: 10;
    margin-top: -45px;
}

.sign-up-body {
    background-color: #ffffff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.sign-up-form {
    margin-top: 10px;
}

.checkbox-inline, .radio-inline {
    position: relative;
    display: inline-block;
    padding-left: 10px;
    margin-bottom: 0;
    font-weight: 400;
    vertical-align: middle;
    cursor: pointer;
    margin-top: 10px;
}

    .checkbox-inline + .checkbox-inline, .radio-inline + .radio-inline {
        /* margin-top: 0; */
        margin-left: 18px;
        margin-top: 10px;
    }

.friend-list-btn {
    background-color: #C4C4C4;
    font-size: 18px;
    height: 40px;
    width: 100%;
    color: #ffffff;
}

.btn-recent {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.btn-friends {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

/*button.active {
    background-color: #EE2A5A;
}*/

button.inactive {
    background-color: #C4C4C4 !important;
}
/* Ripple magic start */
.button {
    position: relative;
    overflow: hidden;
}

    .button:after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 5px;
        background: rgba(255, 255, 255, .5);
        opacity: 0;
        border-radius: 100%;
        transform: scale(1, 1) translate(-50%);
        transform-origin: 50% 50%;
    }

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }

    20% {
        transform: scale(25, 25);
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

.button:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}
/* Ripple magic end */

/*avatar start*/
.avatar {
    height: 50px;
    position: relative;
    width: 100px;
}

    .avatar img {
        border-radius: 9999px;
        height: 90%;
        position: relative;
        width: 45%;
        z-index: 2;
    }

@-webkit-keyframes cycle-colors {
    0% {
        border-color: hsl(0, 100%, 50%);
    }

    25% {
        border-color: hsl(90, 100%, 50%);
    }

    50% {
        border-color: hsl(180, 100%, 50%);
    }

    75% {
        border-color: hsl(270, 100%, 50%);
    }

    100% {
        border-color: hsl(360, 100%, 50%);
    }
}

@keyframes cycle-colors {
    0% {
        border-color: hsl(0, 100%, 50%);
    }

    25% {
        border-color: hsl(90, 100%, 50%);
    }

    50% {
        border-color: hsl(180, 100%, 50%);
    }

    75% {
        border-color: hsl(270, 100%, 50%);
    }

    100% {
        border-color: hsl(360, 100%, 50%);
    }
}

@-webkit-keyframes pulse {
    to {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulse {
    to {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.avatar-unread::before,
.avatar-unread::after {
    -webkit-animation: pulse 2s linear infinite;
    animation: pulse 2s linear infinite;
    border: #E91E63 solid 5px;
    border-radius: 99999px;
    box-sizing: border-box;
    content: ' ';
    height: 157%;
    left: -28%;
    opacity: .6;
    position: absolute;
    top: -30%;
    -webkit-transform: scale(0.714);
    transform: scale(0.714);
    width: 155%;
    z-index: 1;
}

.avatar-unread::after {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.avatar-unread:hover img {
    content: url('http://s.blixt.org/hypnotoad.jpg');
}

.avatar-unread:hover::before,
.avatar-unread:hover::after {
    -webkit-animation: pulse 1s linear infinite, cycle-colors 6s linear infinite;
    animation: pulse 1s linear infinite, cycle-colors 6s linear infinite;
}

.avatar-unread:hover::after {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}
/*avatar end*/

.friend-list-nav-margin {
    margin-top: 15px;
    margin-bottom: 15px;
}

.friend {
    /*margin-top: 10px;*/
    margin-bottom: 15px;
}

.friend-name-list {
    margin-left: -44px;
    margin-top: 6px;
    font-size: 12px;
}

.friend-list-status {
    /* width: 30%; */
    font-size: 12px;
    padding: 0;
    /* margin-left: -46px; */
    text-align: right;
    margin-top: 16px;
}

.unread-message {
    color: #EE2A5A;
}

.read-message {
    color: #666666;
}

.friend-online-icon {
    color: #2479F4;
}

.friend-offline-icon {
    color: #C4C4C4;
}

.custom-heart {
    color: #C4C4C4;
    font-size: 20px;
    margin-top: 6px;
}

.pmd-floating-action {
    margin-left: 42%;
    margin-right: 40%;
    bottom: 0px;
    position: fixed;
    /* margin: 1em; */
    right: 0;
    z-index: 1;
}

.search-box {
    border-radius: 25px;
    margin-top: -5px;
    background-color: #ffffff;
}

.nav-fa-search-size {
    font-size: 160%;
    color: #ffffff;
    margin-top: -1px;
}

.partner-name {
    margin-top: -1px;
    font-size: 18px;
    color: #ffffff;
}

.container-margin {
    margin-top: 15px;
}

.partner-msg {
    text-align: right;
    background-color: #ffffff;
    border-radius: 25px 25px 0px 25px;
    margin-top: 5px;
    margin-bottom: 5px;
    border-top: 1px solid #C4C4C4;
}

.me-msg {
    text-align: left;
    background-color: #ffffff;
    border-radius: 25px 25px 25px 0px;
    margin-top: 5px;
    margin-bottom: 5px;
    border-top: 1px solid #C4C4C4;
}

.msg-archive {
    text-align: center;
    font-size: 12px;
    color: #666666;
    margin: 5px;
}

.me {
    height: 50px;
    position: relative;
    width: 100px;
}

    .me img {
        border-radius: 9999px;
        height: 90%;
        position: relative;
        width: 45%;
        z-index: 2;
    }

.partner {
    height: 50px;
    position: relative;
    width: 100px;
}

    .partner img {
        border-radius: 9999px;
        height: 90%;
        position: relative;
        width: 45%;
        z-index: 2;
    }

.avatar-msg {
    height: 50px;
    position: relative;
    /* width: 100%; */
    /* margin-left: -43px; */
}

    .avatar-msg img {
        border-radius: 9999px;
        height: 90%;
        position: relative;
        width: 85%;
        z-index: 2;
        margin-left: 10px;
    }

.avatar-me-msg {
    height: 50px;
    position: relative;
}

    .avatar-me-msg img {
        border-radius: 9999px;
        height: 90%;
        position: relative;
        width: 85%;
        z-index: 2;
    }

.chat-nav {
    margin-top: 20px;
    margin-bottom: 10px;
}

.chat-nav-icon {
    margin-top: 4px;
    font-size: 18px;
    margin-right: 5px;
    color: #666666;
}

/*view animation*/
.pop {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

    .pop.ng-enter,
    .pop.ng-leave {
        -webkit-transition: all 1s ease;
        transition: all 1s ease;
    }

    .pop.ng-enter {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    .pop.ng-enter-active,
    .pop.ng-leave,
    .pop.ng-leave-active {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    .pop.ng-leave-active {
    }


.fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    opacity: 1;
}

    .fade.ng-enter,
    .fade.ng-leave {
        -webkit-transition: all 1s ease;
        transition: all 1s ease;
    }

    .fade.ng-enter {
        opacity: 0;
    }

    .fade.ng-enter-active {
        opacity: 1;
    }

    .fade.ng-leave {
        opacity: 1;
    }

    .fade.ng-leave-active {
        opacity: 0;
    }
/*end*/
/*ng repeat animation start*/
.item.ng-move,
.item.ng-enter,
.item.ng-leave {
    -webkit-transition: all linear 0.5s;
    transition: all linear 0.5s;
}

    .item.ng-leave.ng-leave-active,
    .item.ng-move,
    .item.ng-enter {
        opacity: 0;
        max-height: 0;
    }

        .item.ng-leave,
        .item.ng-move.ng-move-active,
        .item.ng-enter.ng-enter-active {
            opacity: 1;
            max-height: 100px;
        }

/*ng repeat animation end*/

.btn-normal {
    background-color: #ee2a5a;
    color: #ffffff;
    margin-top: 15px;
}
/*Circle image start*/
.img-circle {
    border-radius: 50%;
}

.img-circle {
    border-radius: 0;
}

.ratio {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    width: 100%;
}

.img-circle {
    border-radius: 50%;
}

.img-responsive {
    display: block;
    height: auto;
    max-width: 100%;
}
/*Circle image end*/

.friends-name-list {
    margin-top: 13px;
    font-size: 13px;
}

.margin-bottom {
    margin-bottom: 15px;
}

.padding-right {
    padding-right: 0px;
}

.text-right {
    text-align: right;
}


.footer-item-margine {
    margin-top: 10px;
    margin-bottom: 5px;
}

.swiper-slide-friends {
    background-color: #f5f5f5;
}

.meet-content {
    margin-bottom: 19%;
}

.meet-item {
    margin-top: 10px;
    background-color: #ffffff;
    margin-bottom: 5px;
}

.meet-item-header {
    margin-top: 12px;
    margin-bottom: 12px;
    background-color: #ffffff;
}

.meet-item-header-text {
    margin-top: 7px;
    padding-left: 12px;
}

.meet-item-post-img {
    margin-top: 15px;
    margin-bottom: 15px;
}

.justify {
    text-align: justify;
}

.line-separator {
    background-color: #9b9b9b;
    margin-top: 10px;
    margin-bottom: 10px;
}

/*image spin animation start*/
#loading:hover {
    animation: rotation .5s 1 linear;
    /*-webkit-animation: rotation 2s 1 linear;*/
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

/*image spin animation end*/
/*section load by animation start*/
.section-animate-enter {
    -webkit-transition: 1.5s linear all; /* Chrome */
    transition: 1.5s linear all;
    opacity: 0;
    left: 100%;
}

    .section-animate-enter.section-animate-enter-active {
        opacity: 1;
        left: 0;
    }
/*section load by animation end*/

.meet-footer-icon-text {
    text-align: center;
    margin-top: 6px;
}

.matching-new-member {
    text-align: center;
}

.new-member-text {
    font-size: 12px;
    text-align: left;
    margin-top: 15px;
    padding-left: 10px;
}

.padding-new-img {
    padding: 5px;
}

.new-member-leftmenu {
    font-size: 12px;
    padding: 0;
    margin-left: -8px;
    text-align: right;
    margin-top: 16px;
}

.love-container {
    margin-bottom: 80px;
}

.love-msg-container {
    background-color: #ffffff;
    margin-top: 15px;
    min-height: 110px;
    border-radius: 10px;
}

.love-msg-text {
    margin-top: 15px;
    padding-right: 15px;
    height: 80px;
    overflow-y: auto;
    vertical-align: middle;
}

    .love-msg-text p {
        display: inline-block;
        vertical-align: middle;
        line-height: normal;
    }

.celebrity-love-life-container {
    margin-bottom: 70px;
}

.celebrity-love-life-list {
    margin-top: 15px;
}

.poem-container {
    background-color: #ffffff;
    margin-top: 15px;
    border-radius: 10px;
    /*margin-bottom: 10px;*/
    height: 280px;
}

.poem-img {
    padding: 10px 45px 5px;
}

.poem-text {
    height: 120px;
    overflow-y: auto;
    font-size: 12px;
    padding-left: 5px;
    padding-right: 5px;
}

.section:nth-child(even) {
    padding-left: 7px;
}

.section:nth-child(odd) {
    padding-right: 7px;
}

.download-btn {
    border-radius: 0px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: #ffffff;
    background-color: #ee2a5a;
    width: 100%;
}

.containt {
    background-color: #ffffff;
    padding: 15px;
    margin-top: 15px;
}

input[type="radio"] {
    -ms-transform: scale(1.5); /* IE 9 */
    -webkit-transform: scale(1.5); /* Chrome, Safari, Opera */
    transform: scale(1.5);
}

.love-cal-radio {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 16px;
}

.love-cal-text {
    width: 145%;
    border-radius: 20px;
}

.modal {
    text-align: center;
    padding: 0 !important;
}

/*    .modal::before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -4px;
    }*/

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

/*Love Calculator percentage start*/

.progress {
    width: 100px;
    height: 100px;
    line-height: 100px;
    background: none;
    margin: 0 auto;
    box-shadow: none;
    position: relative;
}

    .progress:after {
        content: "";
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 12px solid #fff;
        position: absolute;
        top: 0;
        left: 0;
    }

    .progress > span {
        width: 50%;
        height: 100%;
        overflow: hidden;
        position: absolute;
        top: 0;
        z-index: 1;
    }

    .progress .progress-left {
        left: 0;
    }

    .progress .progress-bar {
        width: 100%;
        height: 100%;
        background: none;
        border-width: 12px;
        border-style: solid;
        position: absolute;
        top: 0;
    }

    .progress .progress-left .progress-bar {
        left: 100%;
        border-top-right-radius: 80px;
        border-bottom-right-radius: 80px;
        border-left: 0;
        -webkit-transform-origin: center left;
        transform-origin: center left;
    }

    .progress .progress-right {
        right: 0;
    }

        .progress .progress-right .progress-bar {
            left: -100%;
            border-top-left-radius: 80px;
            border-bottom-left-radius: 80px;
            border-right: 0;
            -webkit-transform-origin: center right;
            transform-origin: center right;
            animation: loading-1 1.8s linear forwards;
        }

    .progress .progress-value {
        width: 90%;
        height: 90%;
        border-radius: 50%;
        background: #EE2A5A;
        font-size: 18px;
        color: #fff;
        line-height: 90px;
        text-align: center;
        position: absolute;
        top: 5%;
        left: 7%;
    }

    .progress.blue .progress-bar {
        border-color: rgba(233, 30, 99, 0.25);
    }

    .progress.blue .progress-left .progress-bar {
        animation: loading-1 1.5s linear forwards 1.8s;
    }

    .progress.yellow .progress-bar {
        border-color: #fdba04;
    }

    .progress.yellow .progress-left .progress-bar {
        animation: loading-3 1s linear forwards 1.8s;
    }

    .progress.pink .progress-bar {
        border-color: #ed687c;
    }

    .progress.pink .progress-left .progress-bar {
        animation: loading-4 0.4s linear forwards 1.8s;
    }

    .progress.green .progress-bar {
        border-color: #1abc9c;
    }

    .progress.green .progress-left .progress-bar {
        animation: loading-5 1.2s linear forwards 1.8s;
    }

@keyframes loading-1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

@keyframes loading-2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(144deg);
        transform: rotate(144deg);
    }
}

@keyframes loading-3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

@keyframes loading-4 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(36deg);
        transform: rotate(36deg);
    }
}

@keyframes loading-5 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(126deg);
        transform: rotate(126deg);
    }
}

@media only screen and (max-width: 990px) {
    .progress {
        margin-bottom: 20px;
    }
}
/*Love Calculator percentage end*/

.select_join {
    width: 170px;
    height: 28px;
    overflow: hidden;
    background: url('http://s24.postimg.org/lyhytocf5/dropdown.png') no-repeat right #FEFEFE;
    border: #FEFEFE 1px solid;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0px 0px 10px 1px #FEFEFE;
    box-shadow: inset 0px 0px 10px 1px #FEFEFE;
}

    .select_join select {
        background: transparent;
        width: 170px;
        font-size: 7pt;
        color: grey;
        border: 0;
        border-radius: 0;
        height: 28px;
        -webkit-appearance: none;
    }

        .select_join select:focus {
            outline: none;
        }

option {
    font-size: 12px;
    border: none;
    border-style: none;
}

.e-solution-container {
    background-color: #ffffff;
    border-radius: 10px;
    padding-top: 15px;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.main-text {
    color: #333333;
    font-size: 14px;
}

.sub-text {
    color: #666666;
    font-size: 13px;
}

input[type="file"] {
    display: none;
}

.custom-file-upload {
    /*border: 1px solid #ccc;*/
    display: inline-block;
    /*padding: 6px 12px;*/
    cursor: pointer;
}

.back-btn {
    margin-top: 5px;
}

.travel-daiary {
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 10px;
    height: 270px;
}

.surprise-gift-container {
    background-color: #ffffff;
    margin-top: 15px;
    min-height: 100px;
}

.love-course-container {
    background-color: #ffffff;
    margin-top: 15px;
    min-height: 100px;
}

.love-course-text {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-right: 10px;
}

.circle {
    background: #E91E63;
    border-radius: 200px;
    color: white;
    height: 40px;
    font-weight: bold;
    width: 40px;
    display: table;
    margin: 12px 7px;
}

    .circle p {
        vertical-align: middle;
        display: table-cell;
    }

.loading-pane {
    position: absolute;
    background: url("http://oi62.tinypic.com/2pqsuc0.jpg");
}

    .loading-pane .spinner-image {
        position: absolute;
        width: 100%;
        height: 100%;
        background: url("http://oi58.tinypic.com/2emfu9w.jpg") center center no-repeat;
    }

.active-color {
    color: #EE2A5A;
}

.inactive-color {
    color: #666666;
}

.modal-content {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

body.modal-open {
    overflow: visible !important;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: none;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.card {
    background: #fff;
    -moz-box-shadow: inset 0 8px 8px -7px rgba(0, 0, 0, 0.2), inset 0 -8px 8px -8px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: inset 0 8px 8px -7px rgba(0, 0, 0, 0.2), inset 0 -8px 8px -8px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 8px 8px -7px rgba(0, 0, 0, 0.2), inset 0 -8px 8px -8px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
}

.bold {
    font-family: NotoSansBengaliUI-Bold;
    font-size: 16px;
    text-align: center;
}

.regular {
    font-family: NotoSansBengaliUI-Regular;
}

@font-face {
    font-family: NotoSansBengaliUI-Bold;
    src: url('fonts/NotoSansBengali/NotoSansBengali-Bold.ttf') format('truetype');
}

@font-face {
    font-family: NotoSansBengaliUI-Regular;
    src: url('fonts/NotoSansBengali/NotoSansBengali-Regular.ttf') format('truetype');
}
@font-face {
    font-family: Telenor;
    src: url('fonts/Telenor/TelenorRegular.woff2.ttf') format('truetype');
}
/*@font-face {
    font-family: Scheherazade;
    src: url('fonts/ScheherazadeNew_Regular.ttf') format('truetype');
}*/

@font-face {
    font-family: Al-Majeed;
    src: url('fonts/Al-Majeed-Quranic-Font_shiped.ttf') format('truetype');
}
.padding-5 {
    padding-left: 5px;
    padding-right: 5px;
}

.padding-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.home-container {
    background: #fff;
    -moz-box-shadow: inset 0 8px 8px -7px rgba(0, 0, 0, 0.2), inset 0 -8px 8px -8px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: inset 0 8px 8px -7px rgba(0, 0, 0, 0.2), inset 0 -8px 8px -8px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 8px 8px -7px rgba(0, 0, 0, 0.2), inset 0 -8px 8px -8px rgba(0, 0, 0, 0.2);
    /*-webkit-box-shadow:        inset  0  8px 8px -8px rgba(0, 0, 0, 0.2), 
                        inset  0 -8px 8px -8px #696868;*/
    /*box-shadow: rgba(0, 0, 0, 0.2) 0 4px 2px -2px;*/
    margin-bottom: 15px;
    width: 100%;
    float: left;
    margin-top: 45%;
}

.catagory-menu-font {
    font-family: NotoSansBengaliUI-Bold;
    font-size: 15px;
}

.text-align-middle {
    line-height: 40px;
}

.more {
    font-size: 25px;
    margin-top: 5px;
    color: #129AE8;
    margin-left: 10px;
}

.bottum-line {
    height: 3px;
    background-color: #2d99b5;
    margin-top: -7px;
    margin-left: -8px;
}

.Rectangle-2 {
    color: #ffffff;
    margin-top: 10px;
    width: 150px;
    height: 40px;
    border-radius: 25px;
    background-color: #2d99b5;
    /*background-image: linear-gradient(to right, #a6c0fe, #20c0b7);*/
    box-shadow: 1.5px 2.6px 15px 0 rgba(0, 0, 0, 0.2);
}

.time-header {
    color: #fff;
    margin-left: 45px;
    border: 2px solid #fff;
    border-radius: 25px;
    height: 40px;
    line-height: 36px;
}

.namaz-time {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 10px;
}

.progressbar__label {
    color: rgb(111, 213, 127) !important;
}

#blocks div:nth-child(even) img {
    padding-right: 15px;
    padding-left: 7px;
}

#blocks div:nth-child(odd) img {
    padding-left: 15px;
    padding-right: 7px;
}

.margin-top {
    margin-top: 15px;
}

.block {
    /*border: 1px solid #2d99b5;*/
    text-align: center;
    vertical-align: middle;
}

.circle-btn {
    background: #2d99b5;
    border-radius: 200px;
    color: white;
    height: 40px;
    font-weight: bold;
    width: 40px;
    display: table;
    margin: 0px auto;
}

    .circle-btn i {
        vertical-align: middle;
        display: table-cell;
    }



h1 {
    font-size: 26px;
    background: #2d99b5;
    color: white;
    padding: 0;
    margin-bottom: 50px;
}

label, p, a, h1, div {
    font-family: NotoSansBengaliUI-Regular;
}

.tab-wrap {
    width: 50%;
    margin-left: 5%;
    position: relative;
    display: flex;
    top: -106px;
}

input[type="radio"][name="tabs"] {
    position: absolute;
    z-index: -1;
}

    input[type="radio"][name="tabs"]:checked + .tab-label-content label {
        color: white;
    }

    input[type="radio"][name="tabs"]:checked + .tab-label-content .tab-content {
        display: block;
    }

    input[type="radio"][name="tabs"]:nth-of-type(1):checked ~ .slide {
        left: calc((100% / 2) * 0);
    }

    input[type="radio"][name="tabs"]:nth-of-type(2):checked ~ .slide {
        left: calc((100% / 2) * 1);
    }

    input[type="radio"][name="tabs"]:first-of-type:checked ~ .slide {
        left: 0;
    }

label {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    background-color: #2d99b5;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 56px;
    transition: color 0.2s ease;
    width: 100%;
}

.label {
    all: initial;
    *;

{
    all: unset;
}

}

.slide {
    background: #ffffff;
    width: calc(100% / 2);
    height: 4px;
    position: absolute;
    left: 0;
    top: calc(93% - 4px);
    transition: left 0.3s ease-out;
}

.tab-label-content {
    width: 100%;
}

    .tab-label-content .tab-content {
        position: absolute;
        top: 70px;
        left: 0px;
        line-height: 130%;
        display: none;
    }

@media screen and (max-width: 800px) {
    h1 {
        padding: 0px 0 60px 10%;
    }

    .tab-wrap {
        width: 90%;
        margin-left: 5%;
        top: -106px;
    }
}

.follow {
    width: 42px;
    height: 42px;
    border-radius: 50px;
    background: #03a9f4;
    display: block;
    margin: 300px auto 0;
    white-space: nowrap;
    padding: 13px;
    box-sizing: border-box;
    color: white;
    transition: all 0.2s ease;
    font-family: Roboto, sans-serif;
    text-decoration: none;
    box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.2);
}

    .follow i {
        margin-right: 20px;
        transition: margin-right 0.2s ease;
    }

    .follow:hover {
        width: 134px;
    }

        .follow:hover i {
            margin-right: 10px;
        }

@media screen and (max-width: 800px) {
    .follow {
        margin: 400px auto 0;
    }
}

.main-div {
    position: relative;
}

.sub-div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.centered_txt {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-48%, -50%);
}

.img_txt_container {
    position: relative;
    text-align: center;
    color: white;
    /*margin: 0px 10px 0px 0px;*/
}

.current_namaz {
    border-radius: 15px;
    background-color: #1f1d1d4a;
}

.centered {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-0%, -50%);
}

td {
    white-space: normal !important;
    word-wrap: break-word;
}

td, th {
    text-align: center;
}

table {
    table-layout: fixed;
}

.tcontant {
    font-size: 13px;
}

section {
    padding: 0.5em;
    min-width: 115px;
    width: 310px;
    max-width: 800px;
    /*border-right: 2px dotted gray;*/
    float: left;
}

#clock {
    background-color: #ffffff;
    width: 30em;
    height: 30em;
    border-radius: 50%;
    border: solid 2px #2d99b5;
    margin: auto;
    position: relative;
}

    #clock div, .faceBox {
        border: 0;
        background-color: black;
        position: absolute;
        transform-origin: center bottom;
        -webkit-transform-origin: center bottom;
        -moz-transform-origin: center bottom;
        -o-transform-origin: center bottom;
        transform: rotate(0deg);
    }

    #clock #hour {
        border-radius: 0.75em 0.75em 0 0;
        width: 1.5em;
        height: 6em;
        top: 9em;
        left: 14.25em;
        z-index: 30;
    }

    #clock #minute {
        border-radius: 0.5em;
        width: 1em;
        height: 11em;
        top: 4em;
        left: 14.5em;
        z-index: 20;
    }

    #clock #second {
        border-radius: 0.25em;
        width: 0.25em;
        height: 14em;
        top: 1em;
        left: 14.75em;
        z-index: 10;
        background-color: red;
    }

    #clock #center {
        height: 2em;
        width: 2em;
        border-radius: 50%;
        top: 14em;
        left: 14em;
        z-index: 50;
        transform: rotate(0deg);
    }

.smallTick {
    width: 0.1em;
    height: 0.5em;
    background-color: black;
}

.mediumTick {
    width: 0.25em;
    height: 0.8em;
    background-color: black;
}

.largeTick {
    width: 0.4em;
    height: 0.8em;
    background-color: black;
    position: relative;
}

.tickNum {
    font-family: Arial, sans-serif;
    font-size: 2em;
    line-height: 0;
    color: black;
    position: relative;
    top: 1em;
    left: -0.2em;
    z-index: 1;
}

.faceBox {
    border: 0;
    width: 0;
    height: 15em;
    top: 0;
    left: 15em;
    position: absolute;
    text-align: center;
    overflow: visible;
    margin: 0 auto;
}

._drag {
    font-family: arial, sans-serif;
}

@media (max-width: 20px) {
    ._drag {
        display: none;
    }
}

/*fix header*/
.content {
    padding: 16px;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999 !important;
}

    .sticky + .content {
        padding-top: 118px;
    }
/*fix header end*/

/*#cal-1, #cal-2 {
  margin-left: 12px;
  margin-top: 10px;
}
.icon-button {
  width: 30px;
}
input {
  width: 243px;
  margin-bottom: 8px;
}*/

/*
 * stylesheet for Kalender Masehi/Hijriah
 *
 * Designed by ZulNs, @Gorontalo, Indonesia, 30 April 2017
 */

.calendar-wrap {
    width: 100%;
    font-family: Verdana, sans-serif;
    font-size: 18px;
}

    .calendar-wrap * {
        box-sizing: border-box;
    }

    .calendar-wrap ul {
        list-style-type: none;
    }

    .calendar-wrap a {
        text-decoration: none;
    }

    .calendar-wrap .menu > a,
    .calendar-wrap .year a,
    .calendar-wrap .month a {
        color: #eee;
    }

        .calendar-wrap .menu > a:hover,
        .calendar-wrap .year a:hover,
        .calendar-wrap .month a:hover {
            color: #fff;
        }

    .calendar-wrap .menu-item a {
        color: #eee;
    }

    .calendar-wrap .menu-item li:hover {
        background: #666;
    }

        .calendar-wrap .menu-item li:hover a {
            color: #2d99b5;
        }

    .calendar-wrap .menu-item li {
        margin: 4px 0;
        padding: 14px 14px;
    }

    .calendar-wrap .menu,
    .calendar-wrap .year,
    .calendar-wrap .month {
        margin: 0;
        background: #2d99b5;
    }

    .calendar-wrap .menu {
        position: relative;
        padding: 0;
        text-align: center;
        font-size: 18px;
    }

    .calendar-wrap .menu-item {
        margin: 0;
        padding: 0;
        background: #444;
        position: absolute;
        width: 40%;
        left: 30%;
        font-size: 15px;
        cursor: pointer;
        z-index: -1;
        opacity: 0;
        transition: opacity linear 0.5s;
    }

    .calendar-wrap .show {
        z-index: 1;
        opacity: 1;
    }

    .calendar-wrap .year {
        padding: 0 10px;
        letter-spacing: 2px;
        font-size: 20px;
    }

    .calendar-wrap .month {
        padding: 12px 10px;
        letter-spacing: 2px;
        font-size: 20px;
    }

        .calendar-wrap .year li,
        .calendar-wrap .month li {
            color: #fff;
            text-transform: uppercase;
            text-align: center;
        }

    .calendar-wrap .prev,
    .calendar-wrap .next {
        width: 10%;
    }

    .calendar-wrap .prev {
        float: left;
    }

    .calendar-wrap .next {
        float: right;
    }

    .calendar-wrap .weekdays {
        margin: 0;
        padding: 10px 10px;
        background-color: #ffffff;
        font-size: 16px;
    }

        .calendar-wrap .weekdays li {
            display: inline-block;
            width: 14.2857%;
            color: #666;
            text-align: center;
        }

    .calendar-wrap .days {
        padding: 10px 10px;
        background: #ffffff;
        margin: 0;
        font-size: 15px;
    }

        .calendar-wrap .days li {
            display: inline-block;
            width: 14.2857%;
            text-align: center;
            margin-top: 10px;
            margin-bottom: 10px;
            color: #777;
        }

    .calendar-wrap .friday {
        color: #2d99b5 !important;
    }

    .calendar-wrap .sunday {
        color: #e31 !important;
    }

    .calendar-wrap .current-date,
    .calendar-wrap .specialz-date {
        -moz-box-shadow: 0 1px 3px rgba(0,0,0,.5);
        -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.5);
        box-shadow: 0 1px 3px rgba(0,0,0,.5);
    }

    .calendar-wrap .current-date {
        background: #2d99b5;
        color: #eee !important;
        border-radius: 30px;
    }

    .calendar-wrap .footer-date {
        font-size: 10px;
    }

    .calendar-wrap .inactive-date {
        color: #bbb !important;
    }

    .calendar-wrap .specialz-date {
        background: #e31;
        color: white !important;
    }
/* Add media queries for smaller screens */
/*
@media screen and (max-width:720px) {
	.weekdays li, .days li {width: 13.1%;}
}
@media screen and (max-width: 420px) {
	.weekdays li, .days li {width: 12.5%;}
	.days li .active {padding: 2px;}
}
@media screen and (max-width: 290px) {
	.weekdays li, .days li {width: 12.2%;}
}*/

.vertical-divider {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    margin: 0;
    padding: 0;
    width: auto;
    height: 50%;
    line-height: 0;
    text-align: center;
    text-transform: uppercase;
    transform: translateX(-50%);
}

    .vertical-divider:before,
    .vertical-divider:after {
        position: absolute;
        left: 50%;
        content: '';
        z-index: 9;
        border-left: 1px solid rgba(34,36,38,.15);
        border-right: 1px solid rgba(255,255,255,.1);
        width: 0;
        height: calc(100% - 1rem);
    }

.row-divided > .vertical-divider {
    height: calc(50% - 1rem);
}

.vertical-divider:before {
    top: -100%;
}

.vertical-divider:after {
    top: auto;
    bottom: 0;
}

.row-divided {
    position: relative;
}

    .row-divided > [class^="col-"],
    .row-divided > [class*=" col-"] {
        padding-left: 30px; /* gutter width (give a little extra room) 2x default */
        padding-right: 30px; /* gutter width (give a little extra room) 2x default */
    }

.seekBase {
    height: 30px;
    width: 90%;
    border: 1px solid #cccccc;
}

.seekLoad {
    height: 30px;
    width: 0;
    background-color: #E0EAF1;
}

li {
    cursor: pointer;
}

/*.tooltip-inner {
    max-width: 500px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 4px;
}*/
#banner .swiper-pagination {
    top: 85%;
}

#menu .swiper-pagination {
    top: 90%;
}

#menu .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background: #7b90bf4f;
    display: inline-block;
    border-radius: 15px;
}

#menu .swiper-pagination-bullet-active {
    opacity: 1;
    background: #2d99b5;
}

/*#banner> .swiper-pagination {
    top: 85%;
    left: 40%;
    position: fixed;
    text-align: center;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    z-index: 10;

}*/
.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 65px;
    left: 0;
    width: 100%;
}
/*.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 60px;
    left: 0;
    width: 100%;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #2d99b5;
}*/

/*#menu> .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background: #03a9f45e;
    display: inline-block;
    border-radius: 15px;
}*/

.tooltip-inner {
    width: 250px;
}

.col-centered {
    margin: 0 auto;
    float: none;
}

.ramadantable > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #1bb1af;
    color: #1bb1af;
}

.zoom {
    -ms-transform: scale(1,1.2); /* IE 9 */
    -webkit-transform: scale(1,1.2); /* Safari 3-8 */
    transform: scale(1,1.2);
    border: 1px solid #2d99b585;
    width: 20%;
    background-color: #ffffff;
    border-radius: 5px;
    margin-top: 10px;
    text-align: center;
}

.namaz-time-list {
    width: 20%;
    border: 1px solid #eae1e1;
    background-color: #ffffff;
    border-radius: 5px;
    margin-top: 10px;
    text-align: center;
}

.table > tbody > tr > td {
    vertical-align: middle;
}

.active-btn {
    background-color: #2d99b5;
    color: #ffffff;
    height: 40px;
    line-height: 3;
}

.inActive-btn {
    background-color: #cccccc;
    color: #666666;
    height: 40px;
    line-height: 3;
}



/* New Style for new project*/
.container{
    padding:0px;
    margin:0px;
}
.navbar-default {
    background-color: #129AE8;
    border-color: #fff;
    margin: auto;
}

a.navbar-brand{
    color:#ffffff;
    text-align:center;
}

.ayat-arabic{
    font-family:Al-Majeed;
}
