body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(90deg, rgba(24, 131, 194, 1) 30%, rgba(0, 175, 171, 1) 100%);
    display:contents;
}

/* Register.blade.php */
.bg-register {
    /* background: rgb(24,131,194);    */
    /* background-image: linear-gradient(90deg, rgba(255,255,255, 0.3) 20%, rgba(24,131,194,0.3) 50%, rgba(255,255,255,0) 80%), url('../images/banner_register_left.jpeg'), url('../images/banner_register_right.jpg'); */
    /* background: linear-gradient(90deg, rgba(255,255,255,1) 20%, rgba(24,131,194,1) 50%, rgba(255,255,255,1) 80%); */
    background-image: url('../images/banner_register_left.png'), url('../images/banner_register_right.png');
    background-position: left, right;
    background-repeat: no-repeat, no-repeat;
    background-size: contain;
    background-size: 25rem;
    margin: auto;
}

.no-pointer {
    pointer-events: none;
}

@media (min-width:1440px) {
    .bg-register {
        background-size: 35rem;
    }
}

.library .pagination {
    justify-content: flex-end;
}

.library .page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #262261;
    border-color: #262261;
}

.register-form {
    position: relative;
}

.register-container {
    position: relative;
    width: 100%;
    border-radius: 25px;
}

.register-tooltip {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.register-tooltip i,
.register-tooltip i:hover {
    color: grey;
}

.tooltip-inner {
    max-width: 250px;
    padding: .25rem .5rem;
    color: black;
    text-align: left;
    background-color: #f9ebbd;
    border-radius: .25rem;
}

.bs-tooltip-auto[x-placement^=top] .arrow::before,
.bs-tooltip-top .arrow::before {
    border-top-color: #f9edbd;
}

.tnc,
.tnc:hover {
    color: #00b3bd;
    font-weight: 800;
    font-size: 12pt;
}

.text-invalid {
    color: #dc3545;
}

.register-box {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: 1rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: black;
    background-color: #fff;
    background-clip: padding-box;
    border: 3px solid #00b3bd;
    border-radius: 25px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.register-box:focus {
    color: black;
    background-color: #fff;
    border-color: #00b3bd;
    outline: 0;
    box-shadow: 0 0 0 0.2rem transparent;
}

.register-box::placeholder {
    color: #0050AA;
    text-align: left;
    font-size: 10pt;
    font-weight: 800;
}

.theme-border {
    border: 3px solid #00b3bd;
    border-radius: 25px;
}

.is-invalid {
    border: 3px solid #dc3545 !important;
}

.theme-border select {
    color: #0050AA;
    text-align: left;
    font-size: 10pt;
    font-weight: 800;
    text-indent: 0px;
}

.theme-border select:focus {
    color: #495057;
    background-color: #fff;
    border-color: transparent;
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(0, 123, 255, .25);
}

/* login.blade.php */

.bg-image {
    background-image: url('../images/login_background.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.login-banner {
    height: 100px;
    background-image: url('../images/icon/panel-logo.png');
    background-size: cover;
    background-repeat: no-repeat;
    border: none;
    background-size: 300px;
    background-size: contain;
    background-position-x: center;

}

.register-size{
    width : 150px;
}

.login-header {
    font-weight: 800;
    color: #262261;
    font-size: 1.3rem;
}

.forgot-header {
    font-weight: 800;
    color: #262261;
    font-size: 1rem;
}

.bg-register .text-secondary {
    font-size: .8rem;
}

.float-button.whatsapp {
    transition: all .25s ease-in-out;
    position: fixed;
    bottom: 20px;
    right: 0;
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    margin: 0 3em 3em 0;
    border-radius: 50%;
    padding: .25em;
    width: 60px;
    height: 60px;
    background-color: rgb(77, 175, 80);
    z-index: 9999;
    animation: ring;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    /* animation: ring 1.5s infinite; */
    border: solid transparent;
}

@keyframes whatsapp {
    0%   {width: 60px;}
    25%  {width: 29px;height: 29px;right:2px;}
    50%  {width: 29px;height: 29px;right:2px;}
    75%  {width: 29px;height: 29px;right:2px;}
    100% {width: 60px;}
}
@keyframes ring {
    0% {
        width: 60px;
        height: 60px;
        opacity: 1;
        transform: rotate(360deg);
    }
    25%  {
        opacity: 0.8;
        transform: rotate(0deg);
    }
    50%  {
        width: 60px;
        height: 60px;
        opacity: 1;
    }
    75% {
    }
    100% {
        width: 60px;
        height: 60px;
        opacity: 1;
    }
}

.float-button.whatsapp .fa-whatsapp {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
}

@media(min-width:768px) {
    .login-header {
        font-size: 2rem;
    }

    .bg-register .text-secondary {
        font-size: 1.2rem;
    }

    .forgot-header {
        font-size: 1.5rem;
    }

    .register-size{
        width : 210px;
    }

}

@media(min-width:1024px) {
    .login-header {
        font-size: 2.5rem;
    }

    .forgot-header {
        font-size: 2rem;
    }

    .bg-register .text-secondary {
        font-size: 1.5rem;
    }

    .preview-pdf-popup {
        display: block;
    }

    .preview-pdf-download {
        display: none;
    }
}

/* Prizes
.bootbox-body .prize-redeem-btn {
    display: none;
}
.bootbox-body  .dataForm {
    display: block !important;
}*/

@media(max-width:1024px) {
    .preview-pdf-popup {
        display: none;
    }

    .preview-pdf-download {
        display: block;
    }
}

.theme-color,
.theme-color:hover {
    color: #262261;

}

.small-text {
    font-size: 80%;
    font-weight: 400;
}

.btn-signup,
.btn-signup:hover {
    color: #fff;
    background-color: #262261;
    border-color: #262261;
    min-width: 100px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 800;
}

.btn-back,
.btn-back:hover {
    color: #fff;
    background-color: #262261;
    border-color: #262261;
    margin-left: 10px;
    width: 90%;
    border:none;
    border-radius:0px;
    font-size: 1rem;
    font-weight: 800;
}
.btn-login,
.btn-login:hover
{
    width:100% !important;
    background:#262261 !important;
    border:none !important;
    border-radius:1.5rem !important;
    color: white !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
}

.input-container {
    position: relative;
    width: 100%;
    background-color: #262261;
    border-radius: 25px;
}

.input-box {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    padding-left: 4em;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    background-color: #262261;
    background-clip: padding-box;
    border: 1px solid #262261;
    border-radius: 25px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input-box:disabled {
    background-color: #262261;
}

.input-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    width: auto;
    height: 20px;
}

.input-box:focus {
    color: #fff;
    background-color: #262261;
    border-color: #262261;
    outline: 0;
    box-shadow: 0 0 0 0.2rem transparent;
}

.input-box::placeholder {
    color: #fff;
    text-align: left;
    font-size: 10pt;
    font-weight: 800;
}

/* home.blade.php */
.home-banner {
    height: 160px;
    background-image: url('../images/homepage.png?v1.0');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: initial;
}

.welcome-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: default;
    text-align: center;
}

.welcome-text small {
    font-size: 18px;
}

.company-logo {
    position: absolute;
    width: 100%;
    max-width: 5rem;
    bottom: -15%;
    right: 10%;
    z-index: 1000;
    border-radius: 1rem;
}

/* .profile-image-a {
    position: absolute;
    top: 31%;
    z-index: 1000;
    transform: translate(-5%, 0%);
    display: block;
} */

.profile-image {
    position: absolute;
    width: 5rem;
    bottom: -15%;
    left: 10%;
    z-index: 1000;
    max-width: 10rem;
    border-radius: 50%;
    display: none;
}

.profile-image-nav {
    margin-top: -90px;
    max-width: 10rem;
    border-radius: 50%;
}

.pdf-preview-image {
    cursor: pointer;
    width: 50px;
}

.like-link:hover, .comment-link:hover {
    font-weight: bold;
    cursor: pointer;
}

.btn-resubmit-comment:hover {
    color: #5bc0de;
}

.btn-edit-comment:hover {
    color: #28a745;
}

.btn-delete-comment:hover {
    color: #dc3545;
}

@media(max-width:768px) {
    .profile-image {
        display: block;
    }

    .profile-image-nav {
        display: none;
    }


    .float-button.whatsapp {
        width: 50px;
        height: 50px;
        margin: 0 1em 1em 0;
        animation-name: ringmobile;
        animation: ringmobile; /* referring directly to the animation's @keyframe declaration */
        animation-duration: 1.5s;
        animation-iteration-count: infinite;
    }
    @keyframes ringmobile {
        0% {
            width: 50px;
            height: 50px;
            opacity: 1;
            transform: rotate(360deg);
        }
        25%  {
            opacity: 0.8;
            transform: rotate(0deg);
        }
        50%  {
            width: 50px;
            height: 50px;
            opacity: 1;
        }
        100% {
            width: 50px;
            height: 50px;
            opacity: 1;
        }
    }
}

@media(min-width:768px) {
    .home-banner {
        height: 200px;
    }

    .profile-image {
        width: 10rem;
        bottom: -20%;
    }

    .company-logo {
        max-width: 10rem;
        bottom: -15%;
    }

    .welcome-text {
        top: 50%;
        font-size: 3rem;
    }
}

.sidebar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
}

.sidebar-toggler .sidebar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml;charset=utf8,<svg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'><path stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/></svg>");
    cursor: pointer;
}

.sidebar {
    position: relative;
    width: 100%;
    z-index: 99;
}

.sidebar .sidebar-user .category-content {
    padding: 1rem;
    text-align: center;
    color: #fff;
    background: url('../images/icon/main_logo.png') center center no-repeat;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    height: 150px;
}

.sidebar .sidebar-user .category-content:first-child {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.sidebar .sidebar-user .category-content:last-child {
    border-top-right-radius: 0.25rem;
    border-top-left-radius: 0.25rem;
}

.sidebar .sidebar-content {
    position: relative;
    border-radius: 0.25rem;
    margin-bottom: 1.25rem;
}

.sidebar .category-title {
    position: relative;
    margin: 0;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.sidebar.sidebar-default .category-title {
    border-bottom-color: #262261;
}

.sidebar .category-footer {
    position: relative;
    margin: 0;
    min-height: 115px;
    background-color: #262261;
    border-radius: 0px 0px 25px 25px;
}

.sidebar.sidebar-default .category-content .nav li>a {
    color: #fff;
    font-weight: 800;
    text-align: center;
    padding: 2rem 0;
}

.sidebar.sidebar-default .category-content .nav li>a.active,
.sidebar.sidebar-default .category-content .nav li>a[aria-expanded="true"],
.sidebar.sidebar-default .category-content .nav li>a:hover,
.sidebar.sidebar-default .category-content .nav li>a:focus {
    background: #00b3bd;
    color: #fff;
    border-bottom: 2px solid #262261;
}

.sidebar .category-content {
    position: relative;
}

.sidebar .category-content .nav {
    position: relative;
    margin: 0;
    padding: 0;
}

.sidebar .category-content .nav li {
    position: relative;
    list-style: none;
    background-color: #262261;
}

.sidebar .category-content .nav li>a {
    font-size: 1.2rem;
    font-weight: 800;
    border-bottom: 2px solid white;
    transition: background 0.15s linear, color 0.15s linear;
}

.sidebar .category-content .nav li:last-child>a,
.sidebar .category-content .nav li:last-child>a:hover {
    font-size: 1.2rem;
    font-weight: 800;
    border-bottom: transparent 2px solid;
    transition: background 0.15s linear, color 0.15s linear;
    border-radius: 0px 0px 30px 30px;
}

.border25 {
    border-radius: 0px 0px 25px 25px;
}

.sidebar .category-content .nav li>a[data-toggle="collapse"] {
    padding-right: 2rem;
}

.sidebar .category-content .nav li>a[data-toggle="collapse"]:after {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    height: 1.5rem;
    line-height: 1.5rem;
    display: block;
    content: "\f105";
    font-family: FontAwesome;
    font-size: 1.5rem;
    font-weight: normal;
    transform: rotate(0deg);
    transition: -webkit-transform 0.2s ease-in-out;
}

.sidebar .category-content .nav li>a[data-toggle="collapse"][aria-expanded="true"]:after {
    transform: rotate(90deg);
}

.sidebar .category-content .nav li>a>i {
    float: left;
    top: 0;
    margin-top: 2px;
    margin-right: 15px;
    transition: opacity 0.2s ease-in-out;
}

.sidebar .category-content .nav li ul {
    padding: 0;
}

.sidebar .category-content .nav li ul>li a {
    padding-left: 2.75rem;
}

.sidebar .category-content .nav>li>a {
    font-weight: 500;
}

.sidebar.sidebar-separate .sidebar-category {
    margin-bottom: 1.25rem;
    border-radius: 2rem;
    border: 1px solid #262261;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}


@media (min-width: 768px) {
    .sidebar {
        /* padding-top: 2rem !important; */
        display: table-cell !important;
        vertical-align: top;
        width: 320px;
        padding: 0 1.25rem;
    }

    .sidebar.sidebar-fixed {
        position: sticky;
        top: 2rem;
    }

    .sidebar.sidebar-default .sidebar-category {
        background-color: #fff;
    }

    .sidebar.sidebar-separate .sidebar-content {
        box-shadow: none;
    }

    /* .sidebar.sidebar-separate .sidebar-category {
      margin-bottom: 1.25rem;
      border-radius: 2rem;
      border:1px solid #262261;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    } */
}


.pt-2-rem {
    padding-top: 2rem;
}

.home-content .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #00b3bd;
}

.home-content .nav-pills .nav-link {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    background-color: #262261;
    border-radius: 1.5em;
    padding: 10px 20px;
    margin: 10px 0;
}

.home-content .nav-pills .nav-link2.active,
.nav-pills .show>.nav-link {
    background-color: #262261;
    color: #fff;
}

.home-content .nav-pills .nav-link2 {
    color: #666666;
    font-size: 1.2rem;
    font-weight: 400;
    background-color: #fff;
    border-radius: 1.5em;
    padding: 10px 31px;
	width: 100%;
    margin: 10px 0;
    cursor: pointer;
	text-wrap: nowrap;
	display: block;
}

.event-detail {
    height: 100%;
    background: #417dc1
    ;;
    min-height: 8rem;
}

.event-title,
.event-title:hover {
    font-size: 1.2rem;
    font-weight: 600;
    color: #262261;

}

.event-description {
    font-size: 0.8rem;
    color: black;
}

.event-photo {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
}

.event-date {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1.1
}

.event-date .day {
    color: white;
    font-size: 3.6rem;
    font-weight: 600;
}

.event-date .month {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;

}

.event-outer-box {
    padding: 1rem 0.2rem;
}

.btn-comment {
    color: #fff;
    background-color: #262261;
    border-color: #262261;
    border-radius: 20px;
    padding: 0.1em 1.2em;
    font-weight: 600;
}

.btn-comment:hover {
    background-color: #262261;
    border-color: #262261;
}

.btn-join {
    color: #fff !important;
    background-color: #262261!important;
    border-color: #262261;
    border-radius: 20px !important;
    padding: 0.25em 1.5em;
    font-weight: 600;
    width: 100px !important;
}

.btn-join:hover {
    color: #fff !important;
    background-color: #262261;
    border-color: #262261;
    border-radius: 20px !important;
}

.comment-box {
    background-color: #fff;
    padding: 1rem 0;
}

.comment-name {
    color: #262261;
    font-size: 1rem;
    font-weight: 600;
}

.comment {
    font-size: 0.8rem;
    font-weight: 600;
}

#pills-social .page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #262261;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

#pills-social .page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #262261;
    border-color: #262261;
}

/* history.blade.php */
.btn-attend,
.btn-attend:hover {
    color: #fff;
    background-color: #262261;
    border-color: #262261;
    border-radius: 20px;
    padding: 0.25em 1.5em;
    font-weight: 600;
    font-size: 1rem;
}

.btn-absent {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
    border-radius: 20px;
    padding: 0.25em 1.5em;
    font-weight: 600;
    font-size: 1rem;
}

.btn-absent:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
    border-radius: 20px;
    padding: 0.25em 1.5em;
    font-weight: 600;
    font-size: 1rem;
}

/* profile.blade.php */
.profile-right-side {
    background-color: white;
    color: white;
    /* border-top-right-radius: 100px;
    border-bottom-right-radius: 100px; */
    /* border-left: #58D9BA 5px solid; */
    border-radius: 80px;
    border:#262261 5px solid
    ;
}

.gradient-blue {
    background: #00b3bd;}

.point {
    font-family: 'Raleway', sans-serif;
    height: 50%;
    color: white;
    font-size: 1rem;
    font-weight: 800;
    /* margin-left: 10%; */
    margin-left: 26%;
    padding: 1rem 3rem;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    text-align: center;
}

.point p {
    margin-bottom: unset !important;
}

.point p.number {
    font-size: 3.5rem;
    line-height: 3rem;
}


.point.col-md-2 {
    max-width: 14%;
}

.bg-theme-color {
    background-color: #262261 !important;
}

.profile-title {
    position: relative;
    /* margin-bottom: 1rem; */
    font-size: 2rem;
    font-weight: 600;
    color: #262261;
    text-transform: uppercase;
}

.btn-edit,
.btn-edit:hover,
.btn-edit:focus {
    position: absolute;
    right: 0;
    font-size: 1rem;
    color: #262261;
    bottom: 5px;
    outline: none;
}

.profile-name {
    font-size: 1.5em;
    color: #262261;
    font-weight: 800;
}

.page-1 .label,
.page-2 .label {
    color: #262261;
    font-weight: 600;
    font-size: 0.7rem;
    margin-bottom: 0;
}

.page-1 .label {
    color: #262261;
}


.page-2 .labeling-title {
    color: #262261;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.page-2 .black-label {
    color: black;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0;
}

.page-1 input,
.page-1 input:focus,
.page-1 select,
.page-2 input,
.page-2 input:focus {
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    outline: none;
    transition: all .5s ease;
}
.page-1 input,
.page-1 input:focus,
.page-1 select{
    border-radius: 2rem;
    color: #fff;
    background-color: #262261;
    border: 1px solid #262261;
    box-shadow: none;
}

.page-2 input,
.page-2 input:focus {
    border-radius: 1rem;
    color: black;
    -webkit-box-shadow: 0 0 15px #E8ECF1;
    box-shadow: 0 0 15px #E8ECF1;
    border:unset;
    /* text-align:center; */
}

.page-1 .selectWrapper {
    border-radius: 36px;
    display: block;
    overflow: hidden;
    background: #262261;
    border: 1px solid #262261;
    width: 150px;
}

.page-1 .selectBox,
.page-1 .selectBox:focus {
    width: 140px;
    height: 40px;
    margin-left: 0px;
    border: 0px;
    color: white;
    outline: none;
    background-color: #262261;
    border: 1px solid #262261;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB4bWxuczpzb2RpcG9kaT0iaHR0cDovL3NvZGlwb2RpLnNvdXJjZWZvcmdlLm5ldC9EVEQvc29kaXBvZGktMC5kdGQiICAgeG1sbnM6aW5rc2NhcGU9Imh0dHA6Ly93d3cuaW5rc2NhcGUub3JnL25hbWVzcGFjZXMvaW5rc2NhcGUiICAgaWQ9IkxheWVyXzEiICAgZGF0YS1uYW1lPSJMYXllciAxIiAgIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIiAgIHZlcnNpb249IjEuMSIgICBpbmtzY2FwZTp2ZXJzaW9uPSIwLjkxIHIxMzcyNSIgICBzb2RpcG9kaTpkb2NuYW1lPSJkb3dubG9hZC5zdmciPiAgPG1ldGFkYXRhICAgICBpZD0ibWV0YWRhdGE0MjAyIj4gICAgPHJkZjpSREY+ICAgICAgPGNjOldvcmsgICAgICAgICByZGY6YWJvdXQ9IiI+ICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3N2Zyt4bWw8L2RjOmZvcm1hdD4gICAgICAgIDxkYzp0eXBlICAgICAgICAgICByZGY6cmVzb3VyY2U9Imh0dHA6Ly9wdXJsLm9yZy9kYy9kY21pdHlwZS9TdGlsbEltYWdlIiAvPiAgICAgIDwvY2M6V29yaz4gICAgPC9yZGY6UkRGPiAgPC9tZXRhZGF0YT4gIDxzb2RpcG9kaTpuYW1lZHZpZXcgICAgIHBhZ2Vjb2xvcj0iI2ZmZmZmZiIgICAgIGJvcmRlcmNvbG9yPSIjNjY2NjY2IiAgICAgYm9yZGVyb3BhY2l0eT0iMSIgICAgIG9iamVjdHRvbGVyYW5jZT0iMTAiICAgICBncmlkdG9sZXJhbmNlPSIxMCIgICAgIGd1aWRldG9sZXJhbmNlPSIxMCIgICAgIGlua3NjYXBlOnBhZ2VvcGFjaXR5PSIwIiAgICAgaW5rc2NhcGU6cGFnZXNoYWRvdz0iMiIgICAgIGlua3NjYXBlOndpbmRvdy13aWR0aD0iMTkyMCIgICAgIGlua3NjYXBlOndpbmRvdy1oZWlnaHQ9IjEwMjciICAgICBpZD0ibmFtZWR2aWV3NDIwMCIgICAgIHNob3dncmlkPSJmYWxzZSIgICAgIGlua3NjYXBlOnpvb209Ijg0LjMiICAgICBpbmtzY2FwZTpjeD0iMi40NzQ5OTk5IiAgICAgaW5rc2NhcGU6Y3k9IjUiICAgICBpbmtzY2FwZTp3aW5kb3cteD0iMTkyMCIgICAgIGlua3NjYXBlOndpbmRvdy15PSIyNyIgICAgIGlua3NjYXBlOndpbmRvdy1tYXhpbWl6ZWQ9IjEiICAgICBpbmtzY2FwZTpjdXJyZW50LWxheWVyPSJMYXllcl8xIiAvPiAgPGRlZnMgICAgIGlkPSJkZWZzNDE5MCI+ICAgIDxzdHlsZSAgICAgICBpZD0ic3R5bGU0MTkyIj4uY2xzLTJ7ZmlsbDojNDQ0O308L3N0eWxlPiAgPC9kZWZzPiAgPHRpdGxlICAgICBpZD0idGl0bGU0MTk0Ij5hcnJvd3M8L3RpdGxlPiAgPHBvbHlnb24gICAgIGNsYXNzPSJjbHMtMiIgICAgIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIiAgICAgaWQ9InBvbHlnb240MTk4IiAgICAgc3R5bGU9ImZpbGw6I2ZmZmZmZjtmaWxsLW9wYWNpdHk6MSIgLz48L3N2Zz4=) no-repeat 101% 50%;
    padding-right: 20px;
}

.page-2 input[type="radio"]:disabled {
    opacity: .7;
    /* background-color: #262261; */
    background-color: transparent;
    border: none;
    color: black;
    width: 100%;
}

.page-2 input:disabled {
    opacity: .7;
    border-radius: 1rem;
    color: black;
    -webkit-box-shadow: 0 0 15px #E8ECF1;
    box-shadow: 0 0 15px #E8ECF1;
    border:unset;
    text-align:center;
    background-color: white;
}

.page-2 .small-text {
    font-size: 55%;
    margin-bottom: 0;
    line-height: 1;
}

.btn-change,
.btn-change:hover,
.btn-change:focus {
    color: #262261;
    outline: none;
    font-weight: 600;

}

#slickable .slick-slide:focus {
    outline: none;
}

#slickable .slick-dots {
    position: absolute;
    top: 0;
    /* bottom:0px; */
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    z-index: 1;
}

#slickable .slick-dots li button:before {
    font-size: 1rem;
    color: #262261;
}

#slickable .slick-dots li.slick-active button:before {
    opacity: 1;
}

#profile-detail .form-control:disabled,
.form-control[readonly] {
    background-color: transparent;
    opacity: 1;
    color: #00b3bd;
    border: 0px solid #ced4da;
    padding: 0;
}

#profile-detail select:disabled {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

.btn-submit,
.btn-submit:hover,
.btn-submit:focus {
    /* #assessment-details .btn-submit,#assessment-details .btn-submit:hover, #assessment-details.btn-submit:focus { */
    /* #profile-detail .btn-submit,#profile-detail .btn-submit:hover, #profile-detail .btn-submit:focus,
#assessment-details .btn-submit,#assessment-details .btn-submit:hover, #assessment-details.btn-submit:focus { */
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: .2rem 1rem;
    background-color: #262261;
    border-color: #262261;
    border-radius: 20px;
    outline: none
}

.btn-submit.gradient-blue {
    border: unset;
}

/* .join-date
{
    font-size:1em;
    color:grey;
} */


.customise-input .input-box {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    padding-right: 2rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: black;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #fff;
    border-radius: 25px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.profile-box {
    background-color: white;
    border-radius: 25px;
}

.input-title {
    text-align: left;
    color: #262261;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 0;
}

.input-edit {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    color: #262261;
    font-size: 10pt;
    font-weight: 400;
}

.input-edit:hover {
    color: #262261;
    font-size: 10pt;
    font-weight: 400;
}

.btn-update, a.btn-update:not([href]){
    color: white !important;
    background:#00b3bd !important;
    border-color: #00b3bd !important;
    min-width: 100px;
    border-radius: 20px !important;
    font-size: 1rem!important;
    font-weight: 800 !important;
}

.btn-joined {
    background: none;
    color: #00b3bd;
    cursor: not-allowed !important;
}
.btn-joined:hover {
    color: #00b3bd;
    background: none;
}

.profile-pic {
    position: relative;
    border-radius: 50%;
    height: 200px;
    overflow: hidden;
    width: 200px;
}

.profile-pic:hover .image-wrapper {
    bottom: 0;
}

.profile-pic img {
    box-sizing: border-box;
    height: 100%;
    left: 50%;
    max-height: 100%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
    width: auto;
}
.workshop-detail .addeventatc {
    margin: 10px 0;
    visibility: visible !important;
    z-index: auto !important;
    background-image: none !important;
    border-radius: 20px !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    padding: .5rem .75rem !important;
    font-family: 'Raleway', sans-serif !important;
    color: #262261 !important;
    background-color: #00b3bd !important;
    border-color: #00b3bd !important;
    line-height: initial !important;
    display: none !important;
}
.addeventatc .addeventatc_icon {
    display: none !important;
}

.layer {
    background-color: rgba(0, 0, 0, 0.25);
    display: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.image-wrapper {
    background: rgba(0, 0, 0, 0.2);
    bottom: -50px;
    height: 50px;
    left: 0;
    position: absolute;
    -webkit-transition: bottom 0.15s linear;
    transition: bottom 0.15s linear;
    width: 100%;
}

.hidden-input {
    left: -999px;
    position: absolute;
}

.edit {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    color: white;
    cursor: pointer;
    font-size: 22px;
    top: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg) translate(-50%);
    }

    100% {
        transform: rotate(360deg) translate(-50%);
    }
}

.loader {
    animation: spin 0.35s infinite linear;
    border: 2px solid #707070;
    border-radius: 50%;
    border-top-color: white;
    height: 25px;
    transform-origin: left;
    top: 45%;
    width: 25px;
}

/* event.blade.php */
.event-banner {
    height: 300px;
    background-image: url('../images/event_banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.information-box {
    background-color: #262261;
    padding-left: 0;
    height: 100%;
}
/* health.blade.php */
#average-number {
    padding: 15px;
    display: block;
    margin:auto;
    width:auto;
    font-weight: bold;
    border-radius: 25px;
    background-color: #262261;
    margin-bottom: 25px;
  }
  #wording {
    font-weight: bold;
    margin:auto;
    width:200px;
    font-size: 1rem;
    margin-top: 20px;
    border-radius: 25px;
    background-color: #262261;
    padding-top: 25px;
    padding: 5px;
    display: block;

}
  #wording2 {
    border-radius: 20px;
    background-color: #262261;
    font-weight: bold;
    /* margin-right: 5px;
    margin-left: 5px; */
    margin-bottom: 1px;
    width: 100%;
    /* width: 400px; */
  }
#center {
    margin:auto;
}
#chartContainer1{
margin: 0 auto;
    }
    #chartContainer2{
        margin: 0 auto;

        }
    #ending {
        padding-bottom: 25px;
    }
    .column {
        float: left;
        width: 50%;
    }
@media(min-width:998px) {
    .information-box {
        padding-left: 2em;
    }
    .page-2 .label {
        color: #262261;
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 0;
    }
}

.information-box .date {
    background:#417dc1
    ;
    width: 100px;
    height: 100px;
    margin: 1em;
    padding: 8px;
    text-align: center;
    line-height: 1;
}

.information-box .date .day {
    color: white;
    font-size: 3rem;
    font-weight: 600;
}

.information-box .date .month {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
}

.information-box .workshop-detail {
    color: white;
    margin-left: 1em;
}

.information-box .workshop-detail .header {
    font-size: 2em;
    font-weight: 800;
}

.information-box .more-information {
    font-size: 1.5em;
    font-weight: 800;
}

option {
    color: black !important;
}

/* Mobile Navbar */

#mobileMenu {
    display: block !important;
}

@media(min-width:767px) {
    #mobileMenu {
        display: none !important;
    }
}

#mobileNavbar {
    background-color: white;
    padding-left: 0;
    padding-right: 0;
}

#mobileNavbar .navbar-brand {
    padding-left: 1rem;
}

#mobileNavbar .navbar-toggler {
    color: rgba(0, 0, 0, 1);
    border-color: rgba(0, 0, 0, 1);
    margin-right: 1rem;
    outline: none;
}

#mobileNavbar .navbar-collapse {
    margin-top: 10px;
    border-top: 1px solid rgb(0, 0, 0);
}

#mobileNavbar .navbar-nav {
    padding: 0 1.5rem;
}

#mobileNavbar .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 1);
}

#mobileNavbar .navbar-nav .active>.nav-link,
#mobileNavbar .navbar-nav .nav-link.active,
#mobileNavbar .navbar-nav .nav-link.show,
#mobileNavbar .navbar-nav .show>.nav-link,
#mobileNavbar .navbar-nav .nav-link:hover {
    color: black;
    font-weight: 600;

}

/* Navbar */
#mainmenu {
    display: none !important;
}


/* Library */
.library-box {
    background-color: white;
    box-shadow: 5px 5px 5px lightgrey;
    /* min-height: 40%; */
    min-height: 100%;
    max-height: 100%;
    position: relative;
    /* padding-bottom: 4rem; */
}

.content-library-box {
    /* overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 2rem; */
    width: 100%;
    min-height: 48px;
    /* min-height: 67px; */
}
/* .content-library-box .title-library-box {
    min-height: 43px;
    display: block;
} */
.library-box .media {
    overflow: hidden;
    /* min-height: 150px;
    max-height: 150px; */
    min-height: 230px;
    max-height: 230px;
}

.modal-title-library {
    white-space:normal;
    /* word-break: break-all; */
    word-break: break-word;
}

.btn-library-box {
    /* padding: 5% 20%!important; */
    padding: 2% 6%!important;
}

.library-box .title {
    position: absolute;
    bottom: 0;
    padding: 0 10px;
    background-color: white;
    /* height: 4rem; */
    width: -webkit-fill-available;

}

.library-box .type-label {
    position: absolute;
    top: 0;
    text-transform: uppercase;
    background-color: #262261;
    border-bottom-right-radius: 10px;
    color: white;
}

.library-box .trigger-modal {
    cursor: pointer;
    color: white;
}

.category-image {
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
}

.category-label {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    font-family: 'Raleway', sans-serif !important;
    font-weight: 800;
    color: #262261;
    font-size: 1.5rem;
    text-transform: uppercase;
}

#upload-image {
    opacity: 0;
    position: absolute;
    right: 0;
    z-index: -1;
}

#comment-input.form-control {
    border: 0px solid #ced4da;
}

#comment-input.form-control:focus {
    outline: none;
    box-shadow: none;
}

.post_image {
    width: 200px;
    max-width: 300px;
    max-height: 300px;
}

@media(min-width:767px) {
    #mainmenu {
        display: block !important;
    }
    .page-2 .label {
        font-size: 0.75 rem;

    }

}

@media(max-width:767px) {
    .action-btn {
        padding-left: 5px;
        padding-right: 5px;
        font-size: 14px
    }

    #wording {
        margin-top: 45px;
    }

    .profile-right-side {
        border-top-right-radius: unset;
        border-bottom-right-radius: unset;
        border-radius: 30px;
    }

    #hamburger-icon {
        width: 50px;
        height: 30px;
        position: relative;
        display: block;
        margin-left: auto;
        /* margin: 100px auto 50px auto; */
    }

    #hamburger-icon .line {
        display: block;
        background: black;
        width: 60px;
        height: 8px;
        position: absolute;
        left: 0;
        border-radius: 4px;
        transition: all 0.4s;
        -webkit-transition: all 0.4s;
        -moz-transition: all 0.4s;
    }

    #hamburger-icon .line.line-1 {
        top: 0;
    }

    #hamburger-icon .line.line-2 {
        top: 50%;
    }

    #hamburger-icon .line.line-3 {
        top: 100%;
    }

    #hamburger-icon:hover .line-1,
    #hamburger-icon:focus .line-1 {
        transform: translateY(-4px);
        -webkit-transform: translateY(-4px);
        -moz-transform: translateY(-4px);
    }

    #hamburger-icon:hover .line-3,
    #hamburger-icon:focus .line-3 {
        transform: translateY(4px);
        -webkit-transform: translateY(4px);
        -moz-transform: translateY(4px);
    }

    #hamburger-icon.active .line-1 {
        transform: translateY(15px) translateX(0) rotate(45deg);
        -webkit-transform: translateY(15px) translateX(0) rotate(45deg);
        -moz-transform: translateY(15px) translateX(0) rotate(45deg);
    }

    #hamburger-icon.active .line-2 {
        opacity: 0;
    }

    #hamburger-icon.active .line-3 {
        transform: translateY(-16px) translateX(0) rotate(-45deg);
        -webkit-transform: translateY(-16px) translateX(0) rotate(-45deg);
        -moz-transform: translateY(-16px) translateX(0) rotate(-45deg);
    }

    .category-label {
        font-size: 0.6rem;
    }

    .point {
        margin-left: unset;
    }

    .point.col-md-2 {
        max-width: unset;
    }

    .profile-pic {
        width: 200px;
        height: 200px;
    }

    .profile-nav-div {
        display: none;
    }

    .comment {
        text-align: center;
    }

}

/* @supports (-webkit-touch-callout: none) {
    @media(max-width: 767px) {
        .download-ics {
            display: none !important;
        }
        .workshop-detail .addeventatc {
            display: inline-block !important;
        }

  } */

  .login-new,
  .login-new:hover{
    outline:none;
    border-bottom: white 1px solid;
    border-left: none;
    border-top: none;
    border-right: none;
    border-radius: 0px !important;
    padding: 0px 0px 0px 10px !important;
    color: #FE8600 !important;
    border-radius: 15px !important;
    background-color: white !important;
  }

  .card-new{
    border-radius:25px !important;
    background-color:transparent !important;
    border:white 3px solid !important;
    margin-bottom: 20px;
  }

  @media(max-width:1024px) {
    .login-banner{
        height:100px;
    }

    .mobile-margin{
        margin-left:10px;
        margin-right:10px;
    }


  }

  .icon-maxwidth{
      max-width:20px;
  }

  .small-fontsize{
      font-size: 14px !important;
  }

    .custom-color{
        color:black;
    }

.custom-input {
    border-radius: 0;
}

select.custom-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.custom-select-box {
    position: relative;
}

.custom-select-box:after {
    content: '>';
    color: #006E9F;
    right: 20px;
    top: 0;
    bottom: 0;
    position: absolute;
    pointer-events: none;
    transform: rotate(90deg);
}

.custom-select-box select {
    border-radius: 0;
    padding: 6px 5px 6px 12px;
}


/**Health Record Style**/

.module_title
{
    position: relative;
    /* margin-bottom: 1rem; */
    font-size: 50px;
    font-weight: 700;
    color: #262261;
    text-transform: uppercase;
}

.health_record_selectbox
{
    border-radius: 30px;
    height: 40px;
    width: 80%;
    border-color: transparent;
    padding-left: 20px;
    padding-right: 20px;
    outline: 1px solid #CCCCCC;
    border-right: 5px solid transparent;
}

.info_button
{
    font-size: 25px;
    align-self: center;
    margin-left:20px;
    color:#262261;
}

.custom_close_btn
{
    color:#E46300;
    font-size: 25px;
    align-self: right;
}

.health_record_modal_title
{
    color: #262261;
    font-size: 35px;
    font-weight: 700;
}

.health_record_modal_description
{
    color: #666666;
    font-size: 12px;
    font-weight: 400;
}

.custom_text_style1 /**For progress note and food journal slightly bigger font size**/
{
    font-size: 18px;
    font-weight: 700;
    color: #262260;
}

.custom_text_style2 /**For progress note and food journal slightly smaller font size**/
{
    font-size: 15px;
    font-weight: 700;
    color: #262260;
}

/* .food_journal_input
{
    height: 51px;
    background-color: #F8F8F8;
    border: none;
    width: 450px;

} */

#show-file-section
{
    margin-left: 50px;
    margin-right: 50px;
}

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

.health_file_description
{
    /* width: 630px !important; */
    margin-left: auto;
    margin-right: auto;

}

.file_upload_date
{
    min-width: 630px;
    margin: auto;
}

.category-image
{
    height:100%;
    background-size:70%;
}

@media(max-width: 600px)
{
    .right-text
    {
        text-align: right;
    }

    .health_file_description
    {
        margin-left: 0px;
        width: 100% !important;
    } 

    .file_upload_date
    {
        min-width: 350px;
    }

    .to_in_center
    {
        width: 100%;
    }

    .fasting
    {
        background-color: black;
    }

    
    #show-file-section
    {
        margin-left: 0px;
        margin-right: 0px;
    }

    .home-content .nav-pills .nav-link2.active,
    .nav-pills .show>.nav-link {
        background-color: #262261;
        color: #fff;
    }

    .home-content .nav-pills .nav-link2 {
        color: #666666;
        font-size: 0.9rem;
        font-weight: 400;
        background-color: #fff;
        border-radius: 1.5em;
        padding: 8px 20px;
        width: 100%;
        margin: 10px 0;
        cursor: pointer;
        text-wrap: nowrap;
        display: block;
    }

    .category-image
    {
        height:33%;
        background-size:110%;
    }

    .img-fluid
    {
        width: 20%;
    }
}
