@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-dark: 0 1px 3px rgba(0, 0, 0, 0.32), 0 1px 2px rgba(0, 0, 0, 0.44);
    --transtion-set: all 0.25s ease-in-out;
}

* {
    font-family: "Mukta Vaani", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; */
}

html,
body {
    font-family: "Mukta Vaani", sans-serif;
    background: #f6f1ee;
    color: #4f4a45;
    min-height: 100%;
    /* -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; */
}
.mcolor {
    background: #ed7d31;
}
.mtredcolor {
    color: #ed2b2a;
}
.msdark {
    background: #4f4a45;
}
.scolor {
    background: #6c5f5b;
}
.s-white {
    color: #fff !important;
}

/* Contorl Change Start */
.btn {
    position: relative;
    border: none;
    padding: 1em 1.7em;
    padding-bottom: 0.7em;
    border-radius: 0.7em;
    width: 100%;
    color: #fff;
    -moz-box-shadow: var(--shadow);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    font-size: 0.9rem;
}
.btn-primary {
    background: #ed7d31;
}
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
    background: #d06d2a;
}
.btn.focus,
.btn:focus {
    box-shadow: none !important;
}
.s-ripple {
    overflow: hidden;
}
.s-ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: #fff;
    animation: ripple-animation 2s;
}

@keyframes ripple-animation {
    from {
        transform: scale(1);
        opacity: 0.4;
    }
    to {
        transform: scale(100);
        opacity: 0;
    }
}
/* Contorl Change End */

/* control  start */
.form-control {
    margin-bottom: 0.7em;
    padding: 0.7em 1em;
    border-radius: 0.5em;
    border: none !important;
    -moz-box-shadow: var(--shadow) !important;
    -ms-box-shadow: var(--shadow) !important;
    -o-box-shadow: var(--shadow) !important;
    -webkit-box-shadow: var(--shadow) !important;
    box-shadow: var(--shadow) !important;
}

.frmgrp {
    position: relative;
    padding: 1rem 0 1rem 0;
    margin-top: 10px;
}

.frmfild {
    font-family: inherit;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #d2d2d2;
    outline: 0;
    font-size: 16px;
    color: #212121;
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
}

.frmfild::placeholder {
    color: transparent;
}

.frmfild:placeholder-shown ~ .frmlbl {
    font-size: 16px;
    cursor: text;
    top: 20px;
}

.frmlbl,
.frmfild:focus ~ .frmlbl {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 12px;
    color: #9b9b9b;
}

.frmfild:focus ~ .frmlbl {
    color: #ccc111;
}

.frmfild:focus {
    padding-bottom: 6px;
    border-bottom: 2px solid #ccc111;
}
.frm-primary:focus ~ .frmlbl {
    color: #007bff;
}
.frm-primary:focus {
    padding-bottom: 6px;
    border-bottom: 2px solid #007bff;
}
.frm-success:focus ~ .frmlbl {
    color: #28a745;
}
.frm-success:focus {
    padding-bottom: 6px;
    border-bottom: 2px solid #28a745;
}
.frm-danger:focus ~ .frmlbl {
    color: #dc3545;
}
.frm-danger:focus {
    padding-bottom: 6px;
    border-bottom: 2px solid #dc3545;
}
.frm-secondary:focus ~ .frmlbl {
    color: #6c757d;
}
.frm-secondary:focus {
    padding-bottom: 6px;
    border-bottom: 2px solid #6c757d;
}
.frm-warning:focus ~ .frmlbl {
    color: #ffc107;
}
.frm-warning:focus {
    padding-bottom: 6px;
    border-bottom: 2px solid #ffc107;
}
.frm-info:focus ~ .frmlbl {
    color: #17a2b8;
}
.frm-info:focus {
    padding-bottom: 6px;
    border-bottom: 2px solid #17a2b8;
}
.frm-dark:focus ~ .frmlbl {
    color: #343a40;
}
.frm-dark:focus {
    padding-bottom: 6px;
    border-bottom: 2px solid #343a40;
}

.frm-light:focus ~ .frmlbl {
    color: #f8f9fa;
}
.frm-light:focus {
    padding-bottom: 6px;
    border-bottom: 2px solid #f8f9fa;
}

.radio {
    display: inline-block;
    position: relative;
    margin: 0px 0 10px 10px;
    font-size: 16px;
    line-height: 24px;
}
.radio:first-child {
    margin-left: 0px;
}
.radio__input {
    position: absolute;
    top: 4px;
    left: 0;
    width: 36px;
    height: 20px;
    opacity: 0;
    z-index: 0;
}

.radio__label {
    display: block;
    padding: 0 0 0 24px;
    cursor: pointer;
}
.radio__label:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 16px;
    height: 16px;
    background-color: transparent;
    border: 2px solid rgba(0, 0, 0, 0.54);
    border-radius: 14px;
    z-index: 1;
    transition: border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.radio__input:checked + .radio__label:after {
    transform: scale(1, 1);
}
.radio__label:after {
    content: "";
    position: absolute;
    top: 8px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    z-index: 2;
    transform: scale(0, 0);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.rbprimary:after {
    background-color: #007bff;
}
.radio__input:checked + .rbprimary:before {
    border-color: #007bff;
}

.rbsuccess:after {
    background-color: #28a745;
}
.radio__input:checked + .rbsuccess:before {
    border-color: #28a745;
}

.rbdanger:after {
    background-color: #dc3545;
}
.radio__input:checked + .rbdanger:before {
    border-color: #dc3545;
}

.rbsecondary:after {
    background-color: #6c757d;
}
.radio__input:checked + .rbsecondary:before {
    border-color: #6c757d;
}

.rbwarning:after {
    background-color: #ffc107;
}
.radio__input:checked + .rbwarning:before {
    border-color: #ffc107;
}

.rbinfo:after {
    background-color: #17a2b8;
}
.radio__input:checked + .rbinfo:before {
    border-color: #17a2b8;
}

.rbdark:after {
    background-color: #343a40;
}
.radio__input:checked + .rbdark:before {
    border-color: #343a40;
}

.rblight:after {
    background-color: #f8f9fa;
}
.radio__input:checked + .rblight:before {
    border-color: #f8f9fa;
}

.md-checkbox {
    position: relative;
    margin: 1em 0;
    text-align: left;
    display: inline-block;
    margin-left: 10px;
}

.md-checkbox:first-child {
    margin-left: 0px;
}
.md-checkbox label {
    cursor: pointer;
    display: inline;
    line-height: 1.25em;
    vertical-align: top;
    clear: both;
    padding-left: 1px;
}
.md-checkbox label:not(:empty) {
    padding-left: 0.75em;
}
.md-checkbox label:before,
.md-checkbox label:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
}
.md-checkbox label:before {
    width: 1.25em;
    height: 1.25em;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.54);
    border-radius: 0.125em;
    cursor: pointer;
    transition: background 0.3s;
}
.md-checkbox input[type="checkbox"] {
    outline: 0;
    visibility: hidden;
    width: 1.25em;
    margin: 0;
    display: block;
    float: left;
    font-size: inherit;
}
.md-checkbox input[type="checkbox"]:checked + label:before {
    border: none;
}
.chprimary input[type="checkbox"]:checked + label:before {
    background: #007bff;
}
.chsuccess input[type="checkbox"]:checked + label:before {
    background: #28a745;
}
.chdanger input[type="checkbox"]:checked + label:before {
    background: #dc3545;
}
.chsecondary input[type="checkbox"]:checked + label:before {
    background: #6c757d;
}
.chwarning input[type="checkbox"]:checked + label:before {
    background: #ffc107;
}
.chinfo input[type="checkbox"]:checked + label:before {
    background: #17a2b8;
}
.chdark input[type="checkbox"]:checked + label:before {
    background: #343a40;
}
.chlight input[type="checkbox"]:checked + label:before {
    background: #f8f9fa;
}
.md-checkbox input[type="checkbox"]:checked + label:after {
    transform: translate(0.25em, 0.3365384615em) rotate(-45deg);
    width: 0.75em;
    height: 0.375em;
    border: 0.125em solid #fff;
    border-top-style: none;
    border-right-style: none;
}
.md-checkbox input[type="checkbox"]:disabled + label:before {
    border-color: rgba(0, 0, 0, 0.26);
}
.md-checkbox input[type="checkbox"]:disabled:checked + label:before {
    background: rgba(0, 0, 0, 0.26);
}
.fileuploader {
    position: relative;
}
input[type="file"] {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: default;
}

/* control  end */

/* Section Common Desing End */

#toast-container > div {
    opacity: 1;
    -ms-filter: alpha(opacity=100);
    filter: alpha(opacity=100);
}
.toast {
    font-size: 0.8rem !important;
}

.notfound {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1em;
}
.notfound > img {
    height: 300px;
    width: 300px;
}
.notfound > p {
    color: #181922;
}

.kcard {
    background: #fff;
    width: 100%;
    border-radius: 1em;
    padding: 1em;
    -moz-box-shadow: var(--shadow) !important;
    -ms-box-shadow: var(--shadow) !important;
    -o-box-shadow: var(--shadow) !important;
    -webkit-box-shadow: var(--shadow) !important;
    box-shadow: var(--shadow) !important;
}
.main-list-section {
    padding-left: 1em !important;
    padding-right: 1em !important;
    min-height: 100vh !important;
}
.r-varta,
.varta {
    width: 100%;

    background: #fff;
    color: #181922;
    text-decoration: none;
    font-size: 1rem;
    display: block;
    border-radius: 1em;
    -moz-box-shadow: var(--shadow) !important;
    -ms-box-shadow: var(--shadow) !important;
    -o-box-shadow: var(--shadow) !important;
    -webkit-box-shadow: var(--shadow) !important;
    box-shadow: var(--shadow) !important;
    cursor: pointer;
    -webkit-transition: var(--transtion-set);
    -moz-transition: var(--transtion-set);
    -ms-transition: var(--transtion-set);
    -o-transition: var(--transtion-set);
    transition: var(--transtion-set);
}
.r-varta {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column-reverse;
    margin-bottom: 1em;
}
.r-varta:hover,
.varta:hover {
    background: #ed7d31;
    color: #fff;
}
.r-varta > img {
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
    background: #fff;
}
.varta > img {
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
    background: #fff;
}
.r-varta > .details,
.varta > .details {
    padding: 1em;
    padding-bottom: 0.5em;
}
.r-varta > .details > h2,
.varta > .details > h2 {
    text-decoration: none;

    font-size: 1.4rem;
}
.search-line {
    padding: 7px !important;
    padding-left: 10px !important;
    padding-top: 0 !important;
}
.story-main-section {
    min-height: 100vh !important;
}
.fimgs {
    height: 200px !important;
    width: 100% !important;
    object-fit: cover;
    position: center;
    transform: translate(0%, 0%);
}
.story {
    width: 100%;
    margin-top: 1em;
    padding: 1em;
    margin-bottom: 1em;
    background: #fff;
    color: #181922;
    text-decoration: none;
    font-size: 1rem;
    display: block;
    border-radius: 1em;
    -moz-box-shadow: var(--shadow) !important;
    -ms-box-shadow: var(--shadow) !important;
    -o-box-shadow: var(--shadow) !important;
    -webkit-box-shadow: var(--shadow) !important;
    box-shadow: var(--shadow) !important;
    cursor: pointer;
    -webkit-transition: var(--transtion-set);
    -moz-transition: var(--transtion-set);
    -ms-transition: var(--transtion-set);
    -o-transition: var(--transtion-set);
    transition: var(--transtion-set);
}
.story > .title {
    margin-top: 0.5em;
    font-size: 1.2rem;
    padding: 0 0.5em;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #eaeaea;
}
.markdown-body {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 1em 0.5em;
}
.menucard {
    padding-top: 1em !important;
    border-radius: 0;
}

.nav-link {
    color: #ed2b2a;
    font-size: 1.2em;
    border-radius: 0.5em;
    transition: var(--transtion-set);
    margin-right: 0.2em;
}
.nav-link:focus,
.nav-link:hover {
    background: #ed2b2a;
    color: #fff;
    -moz-box-shadow: var(--shadow) !important;
    -ms-box-shadow: var(--shadow) !important;
    -o-box-shadow: var(--shadow) !important;
    -webkit-box-shadow: var(--shadow) !important;
    box-shadow: var(--shadow) !important;
}
.gridcard {
    margin: 1px;
}
.details a {
    text-decoration: none;
    color: #0a0e14;
    text-align: center;
}
.details a:hover {
    color: #ed2b2a;
}
.details .btn {
    display: inline;
    margin-top: 0.5em;
    font-size: 1em;
}
.details p {
    font-size: 1em !important;
}

.select2-container {
    margin-bottom: 0.7em;
    border-radius: 0.5em;
}
.select2-selection {
    padding: 0.5em 1em !important;
    height: auto !important;
    border: none !important;
    border-radius: 0.5em;
    border: none !important;
    -moz-box-shadow: var(--shadow) !important;
    -ms-box-shadow: var(--shadow) !important;
    -o-box-shadow: var(--shadow) !important;
    -webkit-box-shadow: var(--shadow) !important;
    box-shadow: var(--shadow) !important;
}
.select2-container--open .select2-dropdown--above {
    border: none !important;
    border-radius: 0.5em;
    border: none !important;
    -moz-box-shadow: var(--shadow) !important;
    -ms-box-shadow: var(--shadow) !important;
    -o-box-shadow: var(--shadow) !important;
    -webkit-box-shadow: var(--shadow) !important;
    box-shadow: var(--shadow) !important;
}
.select2-selection__rendered {
    text-align: left;
}
.select2-selection__arrow {
    height: 100% !important;
}
.select2-container {
    height: auto !important;
}
.select2 {
  width: 100% !important;
}

.fab-button {
    position: fixed; /* Makes it float relative to the viewport */
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    border-radius: 50%; /* Makes it perfectly circular */
    width: 56px; /* Standard FAB size */
    height: 56px; /* Standard FAB size */
    padding: 0; /* Remove default button padding */
    display: flex; /* Use flexbox to center the icon */
    justify-content: center; /* Center the icon horizontally */
    align-items: center; /* Center the icon vertically */
    -moz-box-shadow: var(--shadow) !important;
    -ms-box-shadow: var(--shadow) !important;
    -o-box-shadow: var(--shadow) !important;
    -webkit-box-shadow: var(--shadow) !important;
    box-shadow: var(--shadow) !important;
    z-index: 1050; /* Ensure it stays on top of most elements */
    font-size: 1.5rem; /* Icon size */
}

#addDetails {
  display: none
}
.select2-container--default .select2-selection--single {
    border-radius: 0.5em;
}
.btn-container {
    display: flex !important;
    justify-content: space-around;
    align-items: center
}

@import "responsive/istyles.css";

.icon-btn {
    width: 50px !important;
    height: 50px !important;
    padding: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.icon-btn i {
    padding-top: 0.5em;
}
