/**
* Template Name: Bocor - v4.7.1
* Template URL: https://bootstrapmade.com/bocor-bootstrap-template-nice-animation/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    /* font-family: "Quicksand", sans-serif; */
    /* font-family: 'Quicksand'; */
    font-family: 'Quicksand', sans-serif;
    color: #444444;
}

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

a:hover {
    color: #717271;
    text-decoration: none;
}

a:focus {
    outline: none!important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: "Quicksand", sans-serif; */
    /* font-family: 'Quicksand'; */
    text-transform: capitalize;
}


/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #FF8D6A;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #006242;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

#toolbar-administration {
    margin-bottom: 40px;
}


/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/

#header {
    z-index: 997;
    transition: all 0.5s;
    padding: 16px 0;
    background: #fff;
    /* -webkit-box-shadow: 0px 0px 30px rgb(223 221 221);
    -moz-box-shadow:0px 0px 30px rgb(223 221 221);
    box-shadow:0px 0px 30px rgb(223 221 221); */
    margin-bottom: 0px;
}

#header .logo h1 {
    font-size: 24px;
    margin: 0;
    padding: 10px 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    /* font-family: 'Quicksand'; */
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo h1 a span,
#header .logo h1 a:hover span {
    color: #717271;
}

#header .logo img {
    padding: 0;
    margin: 0;
    /* max-height: 40px; */
}


/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/


/**
  * Desktop Navigation 
  */

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 14px;
    color: #006242;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #fff;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    background: #717271;
    color: #fff;
    padding: 4px 25px 6px 25px;
    margin-left: 30px;
    border-radius: 50px;
    border: 2px solid #4b4c4b
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    background: #006242;
    color: #FF8D6A;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
    color: #3e6f9b;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #717271
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
  * Mobile Navigation 
  */

.mobile-nav-toggle {
    color: #006242;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(18, 33, 46, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #FF8D6A;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #717271;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
    display: block;
    border: 0;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #717271;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/

#hero {
    width: 100%;
    padding: 0 0 0 0;
    background: url(/sites/default/files/mx_bg-graphics.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0px -163px;
    box-shadow: 0px 0px 20px #dedede;
    height: 337px;
    /* margin-top: 30px; */
}

#hero h1 {
    margin: 0 0 15px 0;
    font-size: 44px;
    line-height: 56px;
    color: #333333;
    padding: 60px 0px 0px 0px;
    /* font-weight: bolder; */
}

#hero h2 {
    color: #fff;
    /* margin-bottom: 30px; */
    font-size: 22px;
}

.web-view img.align-right {
    width: 610px;
    height: auto;
}

#hero .btn-get-started {
    color: #FF8D6A;
    border-radius: 50px;
    padding: 8px 35px 10px 35px;
    border: 2px solid #b3624a;
    transition: all ease-in-out 0.3s;
    display: inline-block;
    background: #b3624a;
}

#hero .btn-get-started:hover {
    background: transparent;
    color: #fff;
}

@media (max-width: 991px) {
    #hero .hero-img {
        text-align: center;
    }
    #hero .hero-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    #hero {
        -moz-text-align-last: center;
        text-align-last: center;
    }
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    #hero .hero-img img {
        width: auto;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: auto;
    }
}


/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/

section {
    /* padding: 60px 0; */
    /* overflow: hidden; */
}

.section-bg {
    /* background: linear-gradient(180deg, #f2f6fa 0%, #fff 100%); */
    background: #fff;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    /* font-family: 'Quicksand'; */
    color: #000000;
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #006242;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/

.breadcrumbs {
    padding: 15px 0;
    background-color: #f6f9fb;
    min-height: 40px;
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
}


/*--------------------------------------------------------------
  # Clients
  --------------------------------------------------------------*/

.clients {
    padding: 0;
}

.clients .client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 120px;
}

.clients .client-logo img {
    height: 40px;
}

.clients .client-logo:hover img {
    transform: scale(1.2);
}

.clients img {
    transition: all 0.4s ease-in-out;
}


/*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/

.about .content h3 {
    font-weight: 700;
    font-size: 34px;
    color: #FF8D6A;
}

.about .content p {
    margin-bottom: 0;
}

.about .content .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 60px;
    color: #FF8D6A;
}

.about .content .icon-box h4 a {
    color: #FF8D6A;
    transition: 0.3s;
}

.about .content .icon-box h4 a:hover {
    color: #717271;
}

.about .content .icon-box i {
    font-size: 48px;
    float: left;
    color: #006242;
}

.about .content .icon-box p {
    font-size: 15px;
    color: #848484;
    margin-left: 60px;
}

.about .image {
    background: url("../img/about.jpg") center center no-repeat;
    background-size: cover;
    min-height: 400px;
}

@media (max-width: 667px) {
    .about .image img {
        max-width: 100%;
    }
}


/*--------------------------------------------------------------
  # Services
  --------------------------------------------------------------*/

.services {
    padding-bottom: 40px;
    /* box-shadow: 0px 0px 40px #d7d5d5; */
    margin-top: 40px;
}

.services .card {
    border: 0;
    padding: 0 30px;
    margin-bottom: 60px;
    position: relative;
    background: transparent;
}

.services .card-img {
    overflow: hidden;
    z-index: 9;
    border-radius: 0;
}

.services .card-img img {
    max-width: 100%;
    transition: all 0.3s ease-in-out;
}

.services .card-body {
    z-index: 10;
    background: #fff;
    border-top: 4px solid #fff;
    padding: 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    margin-top: -60px;
    margin-left: 30px;
    width: calc(100% - 60px);
}

@media (max-width: 640px) {
    .services .card-body {
        margin-left: 15px;
        width: calc(100% - 30px);
    }
}

.services .card-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.services .card-title a {
    color: #FF8D6A;
    transition: 0.3s;
}

.services .card-text {
    color: #5e5e5e;
}

.services .read-more a {
    color: #777777;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    transition: 0.3s;
}

.services .read-more a:hover {
    color: #717271;
}

.services .card:hover img {
    transform: scale(1.1);
}

.services .card:hover .card-body {
    border-color: #717271;
}

.services .card:hover .card-body .card-title a {
    color: #717271;
}


/*--------------------------------------------------------------
  # Features
  --------------------------------------------------------------*/

.features .content+.content {
    margin-top: 100px;
}

.features .content h3 {
    font-weight: 700;
    font-size: 26px;
    color: #FF8D6A;
}

.features .content ul {
    list-style: none;
    padding: 0;
}

.features .content ul li {
    padding-bottom: 10px;
}

.features .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #006242;
}

.features .content p:last-child {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
  # Portfolio
  --------------------------------------------------------------*/

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 0 35px 0;
    list-style: none;
    text-align: center;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    margin: 0 5px 5px 0;
    display: inline-block;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: #717271;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    z-index: 1;
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(33, 59, 82, 0.6);
    position: absolute;
    left: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
}

.portfolio .portfolio-wrap img {
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links {
    opacity: 0;
    left: 0;
    right: 0;
    top: calc(50% - 36px);
    text-align: center;
    z-index: 3;
    position: absolute;
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: #006242;
    line-height: 0;
    text-align: center;
    width: 36px;
    height: 36px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a i {
    font-size: 32px;
    line-height: 0;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #fff;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
}

.portfolio .portfolio-wrap:hover::before {
    left: 0;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
    opacity: 1;
    top: calc(50% - 18px);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
    bottom: 0;
}


/*--------------------------------------------------------------
  # Portfolio Details
  --------------------------------------------------------------*/

.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #006242
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #006242
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(33, 59, 82, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}


/*--------------------------------------------------------------
  # Team
  --------------------------------------------------------------*/

.team .member {
    text-align: center;
    margin-bottom: 20px;
}

.team .member .pic {
    margin-bottom: 15px;
    overflow: hidden;
    min-height: 260px;
}

.team .member .pic img {
    max-width: 100%;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
    color: #FF8D6A;
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
}

.team .member .social {
    margin-top: 15px;
}

.team .member .social a {
    color: #5289ba;
    transition: 0.3s;
}

.team .member .social a:hover {
    color: #717271;
}

.team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}


/*--------------------------------------------------------------
  # Pricing
  --------------------------------------------------------------*/

.pricing .row {
    padding-top: 40px;
}

.pricing .box {
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: #fff;
    text-align: center;
    position: relative;
}

.pricing .featured-badge {
    display: inline-block;
    position: absolute;
    top: -11px;
    left: calc(50% - 49px);
    background: #006242;
    color: #fff;
    text-align: center;
    line-height: 1;
    border-radius: 50px;
    padding: 4px 20px 5px 20px;
    font-size: 12px;
    text-transform: uppercase;
}

.pricing h3 {
    font-weight: 300;
    margin-bottom: 15px;
    font-size: 28px;
}

.pricing h4 {
    font-size: 46px;
    color: #006242;
    font-weight: 400;
    /* font-family: 'Quicksand'; */
    margin-bottom: 25px;
}

.pricing h4 span {
    color: #bababa;
    font-size: 18px;
    display: block;
}

.pricing ul {
    padding: 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
}

.pricing ul li {
    padding-bottom: 12px;
}

.pricing ul i {
    color: #006242;
    font-size: 18px;
    padding-right: 4px;
}

.pricing ul .na {
    color: #ccc;
}

.pricing ul .na i {
    color: #ccc;
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .get-started-btn {
    background: #FF8D6A;
    display: inline-block;
    padding: 6px 30px;
    border-radius: 20px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    /* font-family: 'Quicksand'; */
    transition: 0.3s;
}

.pricing .get-started-btn:hover {
    background: #717271;
}

.pricing .featured {
    z-index: 10;
    margin: -30px -5px 0 -5px;
    border: 1px solid #006242
}

.pricing .featured .get-started-btn {
    background: #006242
}

.pricing .featured .get-started-btn:hover {
    background: #717271;
}

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}


/*--------------------------------------------------------------
  # Frequently Asked Questions
  --------------------------------------------------------------*/

.faq .faq-item {
    margin: 20px 0;
    padding: 20px 0;
    border-bottom: 1px solid #dde8f1;
}

.faq .faq-item i {
    color: #9bbbd7;
    font-size: 20px;
    float: left;
    line-height: 0;
    padding: 13px 0 0 0;
    margin: 0;
}

.faq .faq-item h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin: 0 0 10px 28px;
    /* font-family: 'Quicksand'; */
}

.faq .faq-item p {
    font-size: 15px;
}


/*--------------------------------------------------------------
  # Contact
  --------------------------------------------------------------*/

.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
    background: #fff;
}

.contact .info-box i {
    font-size: 32px;
    color: #006242;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #fff7e5;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
    background: #fff;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #006242;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #006242;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
    background-color: #006242;
}

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
    background: #006242;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
    background: #717271;
}

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

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/

#footer {
    background: url("../img/footer-bg.jpg") center center no-repeat;
    color: #fff;
    font-size: 14px;
    position: relative;
}

#footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(26, 46, 64, 0.85);
    z-index: 1;
}

#footer .footer-top {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
}

#footer .footer-top h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    position: relative;
    /* font-family: 'Quicksand'; */
    padding-bottom: 0;
    margin-bottom: 0;
}

#footer .footer-top p {
    font-size: 15;
    font-style: italic;
    margin: 30px 0 0 0;
    padding: 0;
}

#footer .footer-top .footer-newsletter {
    text-align: center;
    font-size: 15px;
    margin-top: 30px;
}

#footer .footer-top .footer-newsletter form {
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #006242;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: #717271;
}

#footer .footer-top .social-links {
    margin-top: 30px;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #284864;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #717271;
    color: #fff;
    text-decoration: none;
}

#footer .footer-bottom {
    border-top: 1px solid #1a2e40;
    z-index: 2;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
}

#footer .copyright {
    text-align: center;
    float: left;
}

#footer .credits {
    float: right;
    text-align: center;
    font-size: 13px;
}

@media (max-width: 768px) {
    #footer .copyright,
    #footer .credits {
        padding: 5px;
        float: none;
        text-align: ceneter;
    }
}


/* ------------------------custom-css----------------- */

.mobile-slider {
    display: none;
}

.web-view {
    display: block;
}


#block-logo img {
    /* margin: 10px 0px 20px 0px */
    max-height: 100px;
}


/* .hero-img img {
    padding-top: 20px;
    max-width: 100%;
} */

.icon-box .inner-icon-box {
    background: #fff;
    width: 142px;
    transition: transform .5s;
    box-shadow: 0px 0px 15px #b5aeae;
    height: 142px;
    border-radius: 90px;
    border: 10px solid #f8f6f6;
    margin: 0 auto;
    text-align: center;
    align-items: center;
    display: flex;
    outline: none;
}

.icon-box .block-title {
    position: relative;
    top: 110px;
    cursor: pointer;
    width: 100%;
}

.icon-box .inner-icon-box:hover {
    /* transform: scale(1.1); */
    background: #ece9e7;
    transition: 1s;
    border: 10px solid #fff;
}

.icon-box .common {
    margin: 0 auto;
    color: #006242;
    font-size: 56px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.icon-box .common:hover {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

.icon-box h3 {
    font-size: 18px;
    outline: none;
}

.icon-box h4 {
    padding: 10px 0px 0px 0px;
}

.icon-box {
    margin-bottom: 30px;
    position: relative;
}

.block-title span {
    display: none;
}

.manual-contact {
    background: rgb(51, 51, 51);
    background: linear-gradient(124deg, rgba(51, 51, 51, 1) 0%, rgba(51, 51, 51, 1) 42%, rgba(243, 238, 238, 1) 42%, rgba(243, 238, 238, 1) 100%);
    min-height: 300px;
    box-shadow: 0px 0px 20px #cbc6c6;
    border-radius: 22px;
    margin-bottom: 20px;
    border: 1px solid #ddd9d9;
    clear: both;
}

.manual-contact {
    color: #fff;
    line-height: 18px;
}

.region-contactleft .email {
    font-size: 22px;
    vertical-align: top;
    margin-right: 10px;
}

.region.region-contactright {
    color: #000;
    line-height: 32px;
}

#block-mail {
    display: inline-flex;
    margin-bottom: 10px;
}

#block-mail span {
    color: #006242;
    padding: 0px 0px 0px 10px;
}

#block-callus span {
    padding: 0px 0px 0px 10px;
}

#block-mail h2 {
    margin: 0;
}

#block-callus h2.block-title {
    margin: 0;
    float: left;
}

#block-callus .phone {
    font-size: 22px;
    vertical-align: top;
    margin-right: 10px;
}

#services .contextual-region {
    width: 100%;
}

.mid-heading {
    width: 100%;
    text-align: center;
    font-size: 42px;
    font-weight: bolder!important;
    margin: 0;
    padding: 10px 0px 40px 0px;
}

#Prescriptions {
    background: url(/sites/default/files/mx_app-info-bg.png);
    width: 100%;
    min-height: 400px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.region-prescriptions,
.region-acmeprescriptions {
    display: flex;
    margin-top: 50px;
}

.mobile-applink {
    color: #fff;
    font-size: 26px;
    padding: 20px 0px 20px 0px;
}

.manual-heading {
    color: #fff;
    padding: 20px 0px 20px 0px;
    font-size: 40px;
}

#block-appinfo figure,
#block-appinfo-2 figure {
    display: inline-flex;
}

#block-slidercrowsel .item img,
#block-acme-crowsel .item img {
    width: 250px;
    margin: 0px 40px;
}

#block-appinfo figure img,
#block-appinfo-2 figure img {
    width: 140px;
    height: 100%;
    margin-right: 10px;
}

.footer-1 {
    background: #343535;
    float: left;
    color: #fff;
    margin-top: -170px;
    z-index: 9999;
    position: relative;
    width: 100%;
}

.region-footer-1 h3 {
    border-bottom: 1px solid #1f1d1d;
    box-shadow: 0px 1px 0px #3e4242;
    padding-bottom: 10px;
}

.region-footer-1 ul {
    float: left;
    list-style: none;
    margin: 0;
    padding-left: 0;
    padding-right: 0px;
    width: 50%;
}

.region-footer-1 ul li {
    line-height: 32px;
}

.region-footer-1 ul li a {
    color: #fff;
}

.contact-info {
    display: inline-flex;
}

.contact-info ul {
    padding-right: 0;
    width: 100%;
}

.footer-2 {
    background: #fff;
    text-align: center;
    padding: 10px 0px;
}

.footer-2 span {
    color: #333;
    display: block;
    padding: 10px 0px;
}

.custom_default-content {
    min-height: auto;
    background-color: #ffffff;
    width: 40%;
    margin: 0 auto;
    float: none;
    margin-bottom: 100px;
    padding: 40px;
    border-radius: 22px;
}

.inner-page-heading {
    background: url(/sites/default/files/mx_innerbg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-color: #e1dfe0;
    display: inline-flex;
    min-height: 150px;
    align-items: baseline;
    padding-top: 30px;
    margin-top: 20px;
    width: 100%;
    border-bottom: 1px solid #dedede;
    box-shadow: rgb(0 0 0 / 6%) 0px 6px 4px 0px inset;
}

.manual_blog .footer-1 {
    margin-top: 0;
    z-index: -1;
}

.region-instacartheading,
.region-innerheading,
.region-mobileappheading,
.region-pharmacyheading,
.region-accountheading,
.region-prescriptionsheading,
.region-familycareheading {
    display: inline-flex;
    width: 100%;
}

#block-instacartheading,
#block-textmessaging,
#block-mobileapp,
#block-pharmacyheading,
#block-accountheading,
#block-prescriptionsheading,
#block-familycareheading {
    width: 50%;
}

#block-innersearchbox-7,
#block-innersearchbox,
#block-innersearchbox-2,
#block-innersearchbox-3,
#block-innersearchbox-4,
#block-innersearchbox-5,
#block-innersearchbox-6 {
    width: 50%;
    position: relative;
    display: none;
}

.inner-page-heading h3 {
    font-weight: bolder;
    font-size: 36px;
    margin: 0;
    padding-top: 0.6em;
}

.inner-page-heading input[type="text"] {
    width: 70%;
    padding: 13px 10px;
    border-radius: 5px;
    outline: none;
    border: 1px solid #d7d5d5;
    box-shadow: 0px -3px 18px #cfc6c6;
}

.input-group-btn {
    position: absolute;
    right: 218px;
    top: 0px;
    padding: 0px;
}

.input-group-btn .btn-warning {
    padding: 13px 20px
}

.inner_default-content {
    background: url(/sites/default/files/mx_bg-graphics.png);
    box-shadow: 0px 3px 8px #cec9c9;
    /* border-bottom: 1px solid #ccc; */
    background-size: cover;
    background-repeat: repeat-x;
    z-index: 1;
    /* position: sticky; */
    top: 0;
    padding: 0;
}

.inner_default-content .nav-manual a {
    padding: 10px 20px;
    display: inline-block;
    color: #000;
    font-weight: 800;
}

.section {
    /* min-height: 800px; */
    position: relative;
    text-align: center;
    /* font-family: 'Quicksand'; */
    margin: 0;
    margin-bottom: 20px;
}

.sticky-container {
    z-index: 1;
    position: sticky;
    top: 0;
    padding: 0;
}

.manual-header {
    background-color: #fff;
}

h1,
p {
    margin: 0;
    /* font-family: 'Quicksand'; */
    font-weight: bold;
}

.text-wr {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#section1 {
    background: #ffffff;
    color: #333337;
    margin-top: 45px;
}


/* #section2 {
    background: #ccc;
    color: #81d2d5;
} */


/* #section3 {
    background: #f5f5f5;
    color: #686e7c;
    border-top: 1px solid #e2e2e2;
    box-shadow: 0px -5px 7px #e9e5e5;
} */


/* #section4 {
    background: #ebf5ee;
    color: #aeb9b9;
} */

h1 {
    font-size: 50px;
    margin-bottom: 25px;
}

.title-top {
    font-size: 60px;
    padding-bottom: 30px;
}

.title-bottom {
    font-size: 30px;
}

.title-tx {
    font-size: 20px;
    opacity: 0.8;
}


/* .nav-manual {
    position: fixed;
    left: 50%;
    width: 100%;
    top: 20px;
    z-index: 9;
    padding-left: 10px;
} */

.nav-manual a {
    padding: 7px 20px;
    /* border-radius: 7px; */
    margin-right: 10px;
    background: rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    text-decoration: none;
    color: black;
    /* font-family: 'Quicksand'; */
    font-weight: 100;
}

.nav-manual a.active {
    background: #ffb203;
    color: #333232;
}

.nav-manual a:hover {
    background: rgb(255 178 3);
}

.fork-wr img {
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0;
    border: 0;
}

.section h2 {
    background: #f5f5f5;
    text-align: center;
    padding: 10px 20px;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 0.9px solid #cfc4c4;
}

.section-zero,
.section-one,
.section-two,
.section-three {
    border: 0.9px solid #e2e2e2;
    box-shadow: 0px -5px 10px #d1c7c7;
    margin: 0 auto;
    padding: 0px;
    /* margin-top: 80px; */
    margin-top: 70px;
}

.section a {
    /* color: #000; */
    font-weight: 300;
}

.section-one h4 a {
    color: #000;
    /* border-bottom: 1px solid #161515; */
    outline: none;
}

.section-one h4 a:hover {
    color: #717271;
}

.section-one p,
.section-two p,
.section-three p {
    font-size: 16px;
    /* font-family: 'Quicksand'; */
    font-weight: 300;
}

.section-one:nth-child(1) h4 {
    text-align: center;
    padding: 10px 30px;
    margin: 0;
    font-weight: 800;
    /* border-bottom: 1px solid #e2e2e2; */
    font-size: 16px;
}

.section-one ol {
    line-height: 32px;
    margin: 0 auto;
    width: 50%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.section-one ol li {
    font-weight: 300;
    /* font-family: 'Quicksand'; */
    font-size: 16px;
}

.section-two .table td {
    padding: 20px 20px!important;
}

.section-two font {
    padding-left: 20px;
}

.section-three ul {
    float: left;
    width: 33%;
    list-style: none;
    text-align: center;
    margin-top: 30px;
    line-height: 32px;
}

.section-three ul li {
    border: 0.9px solid #e2e2e2;
    line-height: 36px;
    font-size: 13px;
    font-weight: 700;
}

.section-three ul li a {
    /* font-weight: 800; */
    font-weight: 500;
}

.below-content {
    float: left;
    width: 100%;
    text-align: center;
    background: #f9f9f9;
    box-shadow: 0px -3px 5px #d9d4d4;
}

.below-content h3 {
    margin: 0;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 13px;
}

.below-content ul {
    padding: 0;
    margin-top: 15px;
    width: 100%;
}

#block-section2 table td {
    border: 0.9px solid #e2e2e2;
}

.prefrence-img-blog {
    display: inline-flex;
    padding-top: 50px;
    padding-bottom: 50px;
}

.prefrence-img-blog p img {
    max-width: 90%;
}

.download-section {
    background: #f1f1f1;
    border-top: 0.9px solid #e2e2e2;
    padding: 50px 0px;
    box-shadow: 0px -4px 5px #e0e0e0;
}

.download-section figure {
    margin: 0;
    display: inline-flex;
    padding: 20px 0px;
}

.download-section figure img {
    width: 180px;
    margin: 10px;
}

#myBtn {
    display: none;
    /* position: fixed;
    bottom: 20px;
    right: 30px; */
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: black;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
}

#myBtn:hover {
    background-color: #555;
}

.aerow-up {
    position: fixed;
    bottom: 20px;
    right: 0;
}

.region.region-anchormobileappfeatures {
    padding-bottom: 30px;
    padding-top: 30px;
}

.region-featureleftsection,
.block-featureleftsection {
    /* border: 0.9px solid #e2e2e2; */
    text-align: left!important;
}

.region.region-anchormobileappfeatures p {
    padding: 0px 100px;
}

.mobile_appcommon ul {
    border: none;
    padding: 0px;
    margin: 0;
    list-style: none;
}

.mobile_appcommon ul li {
    width: 100%;
    margin: 20px 10px;
    border: 0.9px solid #e2e2e2;
    box-shadow: 0px 0px 10px #d8d0d0;
    border-radius: 5px;
}

.mobile_appcommon ul li p {
    font-size: 14px;
    padding: 20px 10px;
    text-align: left;
}

.mobile_appcommon ul li img {
    width: 140px;
    padding: 10px;
    height: 100%;
}

.content-box {
    display: inline-flex;
}

#block-featurerightsection,
#block-featureapp-rightcontent {
    background: #f5f5f5;
    border: 0.9px solid #e2e2e2;
    border-radius: 5px;
    margin-top: 20px;
}

.right-content-box {
    padding: 20px 0px;
}

.right-content-box figure {
    display: inline-flex;
    margin: 0 auto;
    margin-bottom: 15px;
}

.right-content-box figure img {
    width: 210px;
    padding: 0px 5px;
}

.collapsed {
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}


/* .active,
.collapsed:hover {
    background-color: #555;
} */

.collapsed:after {
    content: '\002B';
    color: black;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-size: 30px;
    vertical-align: top;
}

.manual-active:after {
    content: "\2212";
    color: black;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-size: 30px;
    vertical-align: top;
}

.panel-group .panel-heading {
    padding: 10px 30px
}

#block-webpharmecy p {
    padding: 20px 50px 10px 50px;
}

.region-priscriptionrifil ul {
    list-style: none;
    text-align: left;
    border: 0.9px solid #e2e2e2;
    margin: 25px;
    padding: 0;
}

.region-priscriptionrifil ul li:nth-child(odd) {
    background: #f5f5f5;
    width: 100%;
    border-top: 1px solid #e2e2e2;
    border-bottom: 0.9px solid #e2e2e2;
}

.region-priscriptionrifil ul li {
    display: inline-flex;
    align-items: center;
    padding: 15px 0px;
}

.region-priscriptionrifil ul li img {
    width: 32px;
    height: 100%;
    margin-left: 10px;
}

.region-priscriptionrifil ul .priscription-content {
    width: 85%;
    margin-left: 15px;
}

.region-priscriptionrifil ul .priscription-content h3 {
    padding: 0;
    font-size: 18px;
    margin: 0;
    font-weight: 700;
}

.region-priscriptionrifil ul .priscription-content p {
    font-size: 15px;
    padding: 5px 0px;
}

.custom-login-container {
    background: url(https://www.myositis.org/wp-content/uploads/2020/03/Canva-Medicine-doctor-with-stethoscope-in-hand-standing-confidently-on-hospital-background-healthcare-concept.-scaled.jpg)#000;
    padding: 100px;
    background-size: cover;
}

.author {
    display: none;
}

.web-view img {
    height: auto;
    max-width: 100%;
}

#block-slidercrowsel .carousel-inner img.item {
    padding: 0px 25px;
    width: 85%!important;
    height: 100%;
    margin: 0 auto;
}

.region-costcocontent p {
    padding: 20px 0px;
}

.region-costcocontent p img {
    width: 348px;
    height: 694px;
}

.region-costcocontent ol,
ul {
    list-style: none;
}

#section0 a.collapsed {
    color: #000;
}

.custom_formatecontent {
    padding: 40px;
    text-align: left
}

.smstosContent {
    background: #f8f8f8;
    border-top: 1px solid #e2e2e2;
    margin-top: 10px;
    border-bottom: 1px solid #e2e2e2;
    text-align: left;
    font-size: 16px;
    line-height: 28px;
}

.container .region-smstoscontenttwo {
    padding: 30px 20px;
    display: block;
}

#heroGetapp {
    width: 100%;
    padding: 0 0 0 0;
    background: url(/sites/default/files/mx_bg_getapp.jpg) #006242;
    background-repeat: no-repeat;
    background-position: -110px 257px;
    box-shadow: 0px 0px 20px #dedede;
    /* margin-top: 30px; */
    height: 515px;
    max-width: 100%;
}

#heroGetapp h1 {
    margin: 0 0 15px 90px;
    font-size: 44px;
    line-height: 56px;
    color: #ffffff;
    padding: 60px 0px 0px 0px;
}

#heroGetapp h2 {
    color: #fff;
    /* margin-bottom: 30px; */
    font-size: 22px;
}

#heroGetapp .web-view img {
    height: auto;
    max-width: 100%;
    padding: 15px;
    transition: transform 250ms;
}

#heroGetapp .web-view img:hover {
    transform: translateY(-20px);
}

#heroGetapp .web-view figure img:hover {
    transform: translateY(-5px);
}

#heroGetapp h6 {
    line-height: 32px;
    color: #fff;
    padding: 0px 0px 0px 90px;
    font-size: 24px;
    font-weight: 100;
}

#heroGetapp figure {
    margin: 30px 0px 0px 80px;
}

#heroGetapp .web-view figure img {
    padding: 0;
}

.commongetbox .getappicon {
    font-size: 70px;
    color: #006242;
}

.commongetbox {
    background: url(/sites/default/files/mx_bg-getapp.png)#ffffff;
    box-shadow: 0px 0px 15px #cecece;
    border-radius: 12px;
    padding: 20px;
    width: 360px;
    height: 250px;
    background-position: center;
}

.getbottom {
    display: flex;
    height: 650px;
}

.getbottom img {
    width: 100%;
    height: auto;
    padding: 50px 0px 0px 0px;
}

.getbottom h3 {
    padding: 100px 0px 20px 0px;
    color: #fff;
    line-height: 32px;
}

.getbottom p {
    color: #fff;
    padding: 0px 0px 30px 0px;
}

.getbottom .btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
}

.commongetbox:hover {
    transform: translateY(-20px);
    transition: 1s;
}

.getbottom img:hover {
    transform: translateY(-20px);
    transition: 3s;
}

.region-clickcontent .panel {
    background: none;
}

.region.region-downmaintenance .custom-warning,
.region-mjweb-midpart .custom-warning,
.region-page-expiredcontent .custom-warning,
.region-link-expired .custom-warning {
    font-size: 110px;
    color: #eb844c;
}

.region.region-downmaintenance {
    text-align: center;
    padding: 50px 0px;
}

.CombineOrder_content {
    text-align: left;
}

.CombineOrder_content h1 {
    border-radius: 190px;
    background: #000;
    text-align: center;
    width: 120px;
    height: 120px;
    color: #fff;
    padding: 20px;
    font-size: 38px;
}

.CombineOrder_content .manual_content {
    display: inline-flex;
}

.CombineOrder_content .manual_content h1 {
    padding: 38px;
    background: black;
    color: #fff;
    border-radius: 80px;
    font-size: 24px;
    text-align: center;
    align-items: center;
    margin-right: 40px;
}

.section-zero .spacingcontent {
    padding: 20px 20px;
    line-height: 28px;
    text-align: left;
}

.section-zero .sameday_heading h2 {
    text-align: left;
}

.sameDaymanual {
    min-height: 350px;
}

.sameDaymanual ul {
    margin: 0 auto;
    text-align: center;
}

.sameDaymanual ul li {
    display: inline-block;
    text-align: center;
    padding: 20px 0px;
    width: 165px;
    vertical-align: top;
    background: #f2ebeb;
    margin-top: 20px;
    margin-bottom: 20px;
    min-height: 260px;
    border-radius: 12px;
    margin-right: 10px;
}

.sameDaymanual ul li span {
    background: #006242;
    color: #fff;
    display: block;
    border-radius: 72px;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    margin-bottom: 25px;
    padding-top: 12px;
    font-size: 23px;
    font-weight: bold;
}

.region-sameday-bottomcontent ul {
    margin: 0;
    padding: 0;
    float: left;
    text-align: left;
    margin-top: 50px;
}

.region-sameday-bottomcontent ul li {
    /* display: inline-block; */
    background: #f8f3f3;
    width: 100%;
    margin-bottom: 20px;
    vertical-align: middle;
    padding: 20px 20px;
    border-radius: 22px;
}

.region-sameday-bottomcontent ul li img {
    float: left;
    width: 100px;
    height: 100px;
    margin-right: 20px;
    margin-bottom: 40px;
}

.right_btm-box {
    background: #f5f5f5;
    border: 0.9px solid #e2e2e2;
    border-radius: 18px;
    margin-top: 50px;
}

.SameDay_bottomcontent-right {
    background: #f5f5f5;
    border: 0.9px solid #e2e2e2;
    border-radius: 22px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.region.region-mjweb-midpart {
    text-align: center;
    padding: 50px 0px;
}


/* .sameDaymanualparent {
    min-height: 450px
} */

.region.region-page-expiredcontent,
.region-link-expired {
    text-align: center;
    padding: 50px 0px;
}

.whatsnewwebnew_heading {
    background: #f5f5f5;
    padding: 10px 0px;
    border-bottom: 1px solid #e2e2e2;
    border-top: 1px solid #e2e2e2;
    margin-top: 10px;
}

.whatsapp_new-heading {
    margin-top: 0;
}

.whatsnew_webHeading {
    margin-top: 0!important;
}

.whatsnew-web {
    padding-top: 100px;
}

.whatsnewweb_content {
    background: #ffffff;
    padding: 0px;
    border-radius: 12px;
    box-shadow: 0px 2px 5px #ccc6c6;
    align-items: center;
    display: flex;
    margin-bottom: 15px;
    border: 1px solid #e4dede;
}

.whatsnewweb_content .whatsnewweb_left {
    border-right: 1px solid #dbdada;
}

.whatsnewweb_content .whatsnewweb_left figure img {
    width: 280px;
    height: auto;
    padding: 20px;
}

.priscription-manual {
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-size: 21em;
    width: 100%;
}

.manual-box-modal {
    border: 1px solid #e2e2e2;
    box-shadow: 0px 0px 15px #ccc;
    padding: 30px;
}

.manual-box-modal h1 {
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 15px;
}

.manual-box-modal img {
    height: auto;
    width: 63%;
}


/*---------------------manual-css-as-per-client---------------- */


/* .base {
    display: none;
}

.acme {
    display: block;
}

.d-none {
    display: none;
} */

.region-costcocontent {
    margin: 0px;
    border: 1px solid #e2e2e2;
    display: none;
}

.getapp-web-button {
    background-color: #006242;
    color: #fff;
}

.getapp-web-button:hover {
    background-color: #717271;
    color: #fff;
}

.for_acme {
    display: none;
}

.web-pharmacy {
    display: block;
}

.text-message {
    display: block;
}

.familycare {
    display: block;
}

.mobile-app {
    display: block;
}

.instacart-delivery {
    display: none;
  }
  
  .non-sso {
    display: block;
  }
  
  .sso-only {
    display: none;
  }
  
  .medsync {
    display: none;
  }
  .alert2 {
    display: none;
  }
  .pre-fill-messaging {
    display: none;
  }
  
  .prefill-home-delivery {
    display: none;
  }
.spartanash-only {
    display: none;
}
.iuhealth-only {
  display: none;
}
