.wa-widget-wrapper {
    width: fit-content !important;
    z-index: 2999 !important;
}

#wa-chat-window {
    display: none;
}

.video-div.thumbnail {
    background: none;
    border: none;
    width: 100%;
    position: relative;
}

.course_container_right>img {
    width: 100%;
}

.video-div .video-play {
    display: inline-block;
    position: absolute;
    line-height: 25px;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    font-size: 40px;
    color: #505a5e;
    padding: 22px 25px;
    background: #fff;
}

#iframe_div {
    width: 50%;
    height: 50%;
    display: none;
}

#youtube_iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background: no-repeat;
    background-size: cover;
    transition: 1s opacity;
}

#lean_overlay {
    position: fixed;
    z-index: 10000;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: #000;
    display: none;
}

#close_video {
    position: absolute;
    right: -20px;
    top: -20px;
    cursor: pointer;
}

.theme-button {
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px 30px;
    font-size: 17px;
    box-shadow: 1px 1px 4px #54535380;
    border: none;
    outline: none;
    background-color: #842990;
    color: #fff;
    text-decoration: none;
}

.theme-button:hover,
.theme-button:focus {
    background-color: #842990;
}

#notify_confirm h2 {
    color: #842990;
    font-weight: bold;
}

footer {
    height: auto !important;
}

.sub-footer>ul>li {
    text-align: left;
}

.sub-footer {
    display: grid;
    gap: 20px;
    justify-content: space-between;
    grid-template-columns: repeat(auto-fit, minmax(130px, 190px));
    padding: 30px 0px 30px 0px;
}

.sub-footer>ul {
    margin: 0 !important;
    padding: 0 !important;
}

.sub-footer>ul>li {
    height: 35px;
    list-style: none;
}

.icons {
    width: 25px !important;
    height: 25px;
    background-size: contain;
    list-style-type: none;
    cursor: pointer;
}

.icons_container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.sub-footer>ul>li>a>img {
    margin-top: -10px;
    max-width: 115px;
}

.footer_max {
    background-color: #3d3c3c;
    color: #fff;
    text-align: right;
    font-size: 18px;
    padding: 10px 6%;
}

.sub-footer>ul>li>a {
    color: #fff !important;
}

@media only screen and (min-width: 769px) {
    .sub-footer>ul>li>a {
        font-size: 17px;
        color: #fff !important;
    }
}

@media screen and (max-width: 767px) {
    .sub-footer>ul>li>a {
        font-size: 14px;
        color: #fff !important;
    }

    .sub-footer>ul>li {
        height: 30px;
        list-style: none;
    }

    .sub-footer {
        grid-template-columns: repeat(auto-fit, minmax(150px, 160px));
        gap: 0px;
        padding: 30px 0px 0px 0px;
    }
}

.sub-footer>ul>li>a:hover {
    text-decoration: underline;
}

.newsletter_ccont>a {
    justify-self: flex-end;
}

.newsletter_ccont>a>img {
    max-width: 150px;
    justify-self: flex-end;
}

.before_newsletter {
    width: 33%;
}

.slider_card_footer {
    margin-top: 25px;
}

.newsletter span {
    color: #fff;
}

.slider_card_footer .notify-box input[type="email"] {
    width: 200px;
    height: 32px;
    border-radius: 4px;
    padding-left: 5px;
}

.slider_card_footer .notify-box input[type="email"]:hover,
.slider_card_footer .notify-box input[type="email"]:focus {
    outline: none;
}

.slider_card_footer .notify-box input[type="submit"] {
    color: white;
    -webkit-appearance: none;
    background-color: #842990;
    border-radius: 4px;
    border-color: #842990;
    cursor: pointer;
    display: inline-block;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 8px 15px;
    font-family: 'Roboto';
}

.slider_card_footer .notify-box input[type="submit"].notify-button {
    margin-left: 0;
}

#valid-msg,
.valid-msg {
    color: green;
}

@media only screen and (max-width: 580px) {
    .emi_and_buy_buttons {
        grid-template-columns: 1fr !important;
    }

    .buy_now {
        margin-top: 3%;
    }

    .form-container {
        margin-top: 5% !important;
    }
}


/*.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.popup .popuptext {
    visibility: hidden;
    width: 160px;
    background-color: white;
    color: black;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
}


.popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}


.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}*/


@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/*.form-popup {
    display: none;
    background-color: white;
    color: black;
    width: 320px !important;
    height: 230px !important;
    border-radius: 10px;
    padding: 0% !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #707070;
    z-index: 99;
}*/

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

input[type=number] {
    -moz-appearance: textfield;
}

.newsletter_ccont {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
}

@media screen and (max-width: 800px) {
    .before_newsletter {
        width: 0% !important;
    }

    .newsletter_ccont>div>a>img {
        max-width: 150px;
        justify-self: flex-start;
    }
}

@media screen and (max-width: 480px) {
    .newsletter_ccont {
        grid-template-columns: auto !important;
        justify-content: flex-start !important;
    }

    .newsletter_form_class>input {
        width: 100% !important;
    }

    .newsletter_form_class>button {
        margin-left: 0% !important;
    }

    .mhpro_logo_container_footer {
        margin-top: 15%;
        justify-self: flex-start !important;
    }
}

@media only screen and (min-width: 769px) {
    .sub-footer>ul>li>a {
        font-size: 20px !important;
    }
}

@media (max-width: 1000px) {
    .download_app_for_phone {
        display: block !important;
    }

    .download_app_for_desktop {
        display: none !important;
    }
}

@media (min-width: 1001px) {
    .download_app_for_phone {
        display: none !important;
    }

    .download_app_for_desktop {
        display: block !important;
    }
}

@media (max-width: 625px) {
    .special_menu {
        flex-wrap: nowrap !important;
    }

    .special_item {
        display: block !important;
        margin-left: 0px !important;
    }

    .logo>a>img {
        width: 38.46vw !important;
    }
}

.notify-box .notify-me-button {
    font-size: 14px !important;
    min-width: auto;
}

.popup {
    display: none;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.05);
}

.popup .popup-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border-radius: 9px;
    max-width: 571px;
    max-height: 304px;
    width: 100%;
    height: 100%;
}
#emiForm .popup-content{
    max-height: 330px;
}
.popup .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
}

.popup .close:hover,
.popup .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.contact_us_container {
    margin: 0 auto;
    float: right;
}

.contact-form-container {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.contact-form-container>input,
.contact-form-container>textarea {
    border: 1px solid #dfd8d8;
    outline: none;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    flex-basis: 100%;
    transition: all 0.5s ease;
}

.contact-form-container>input {
    max-height: 39px;
}

.contact-form-container>input::placeholder,
.contact-form-container #notify-phone::placeholder,
#phone::placeholder {
    color: #333333 !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.iti--allow-dropdown {
    width: 100%;
}

.contact-form-container #notify-phone,
.contact-form-container #phone {
    outline: none;
    padding: 0px 70px;
    border-radius: 8px;
    width: 100%;
    flex-basis: 100%;
    transition: all 0.5s ease;
    height: 37px;
}

.error-msg {
    color: red;
}