/* v1.0.1 */
:root {
    --dark-color: #411e22;
    --light-color: #fefcf8;
    --light-orange-color: #fed5ad;
    --orange-color: #fd8834;
    --orange-hover: #f5781f;
    --login-width: 242px;
    --green-color: #82B26C;
    --red-color: #f08080;
    --profile-color: black;
    --yellow-color: #f5f583;
}
body {
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-family: Roboto, Verdana, arial;
}
header {
    text-align: center;
    padding: 15px;
    background: var(--orange-color);
    color: var(--light-color);
    font-size: 24px;
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    z-index: 1000;
    max-height: 70px;

    display: flex;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}
header .header_title_1 {
    font-size: 24px;
    line-height: 24px;

}
header .header_title_2 {
    font-size: 12px;
    line-height: 19px;
}
body.lang_en header .header_title_2 {
    line-height: 15px;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.footer_space {
    height: 60px;
}
.header_message {
    padding: 5px 10px;text-align: center;margin-bottom: 2px;display: flex;align-items: center;justify-content: space-between;
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
    z-index: 2;
}
.close_icon {
    width: 20px;background: var(--light-color);border-radius: 20px;border: 1px solid var(--dark-color);cursor: pointer;color: var(--dark-color);font-weight: bold;height: 20px;
}
input[type=button], .button {
    width: var(--login-width);
    padding: 10px 20px;
    margin: 0;
    box-sizing: border-box;
    color: white;
    font-size: 20px;
    background-color: var(--orange-color);
    border: 0;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    line-height: 20px;
    -webkit-appearance: button;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
input[type=button].secondary, .button.secondary {
    background-color: var(--dark-color);
    width: auto !important;
    font-size: 15px;
    line-height: 15px;
}
input[type=button].secondary-red, .button.secondary-red
{
    background-color: var(--red-color);
    width: auto !important;
    font-size: 15px;
    line-height: 15px;
}
#screen-settings input[type=button].secondary {
    font-size: 15px !important;
    line-height: 15px !important;
    align-self: center;
}
input[type=button]:hover, .button:hover {
    background-color: var(--orange-hover);
    cursor: pointer;
}
input:invalid:focus {
    background-color: #fcdcdc;
}

i.icon {
    background-color: unset;
}

a {cursor: pointer;}
.margin_15 { margin: 15px;}
.margin_10 { margin: 10px;}
.margin_5 { margin: 5px;}
.myred {color: var(--red-color)}
.myred_bg {background-color: var(--red-color)}
.mygreen {color: var(--green-color)}
.mygreen_bg {background-color: var(--green-color)}
.red {color: red;}
.chalisa_red {color: brown; font-weight: bold;}
.wide {width: 100%;}
.slim {max-width: 200px; width: 200px;}
.contained {max-width: 300px; width: 300px;}
.boxed {width: 420px; max-width: 100%; }
.center {text-align: center;}
.orange { color: var(--orange-color) }
.no-click {pointer-events: none;}
.bold {font-weight: bold;}
.underline {font-weight: bold;}
.hover {cursor: pointer;}
.link {
    color: #3366CC;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
}
body .show_on_add, body .show_on_edit { display: none; }
body.add_page .show_on_add, body.edit_page .show_on_edit {display: initial;}

.show_on, .hide_on, .show_on_logged_in, .show_on_logged_out,
.show_on_webview, .hide_on_webview, .show_on_os_android,
.show_on_os_ios, .hide_on_os_android, .hide_on_os_ios, .hide_on_desktop, .show_on_desktop {
    display: none;
}
body.logged_in .show_on_logged_in,
body.logged_out .show_on_logged_out,
body.is_webview .show_on_webview,
body.not_webview .show_on_not_webview,
body.os_android .show_on_os_android,
body.os_ios .show_on_os_ios,
body.os_desktop .show_on_desktop,
body.lang_en .show_on_lang_en,
body.lang_hi .show_on_lang_hi,
body.lang_mr .show_on_lang_mr,
body.lang_gu .show_on_lang_gu,
body.lang_te .show_on_lang_te,
body.lang_bn .show_on_lang_bn,
body.lang_or .show_on_lang_or,
body.lang_ta .show_on_lang_ta,
body.lang_kn .show_on_lang_kn,
body.lang_ml .show_on_lang_ml,
body.lang_as .show_on_lang_as,
body.lang_ne .show_on_lang_ne,
body.can_event_manage .show_on_can_event_manage,
body.can_admin .show_on_can_admin
{
    display: block;
}
body.loaded .hide_on_os_android,
body.loaded .hide_on_os_ios,
body.loaded .hide_on_desktop,
body.loaded .hide_on_webview
{
    display: block;
}
body.os_android .hide_on_os_android,
body.os_ios .hide_on_os_ios,
body.os_desktop .hide_on_desktop,
body.is_webview .hide_on_webview
{
    display: none;
}

.login_view, .login_view_otp {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.login_view input[type=text], .login_view_otp input[type=text] {
    width: var(--login-width);
}
.login_view.not_valid input[type=button], .login_view.disabled input, .sub-settings.not_valid  input[type=button], .sub-settings.not_valid .button {
    background-color: gray;
    pointer-events: none;
}
.g_id_signin {
    display: flex;
    justify-content: center;
}
.main .login_view_otp, .main.otp_page .login_view {
    display: none;
}
.main .login_view, .main.otp_page .login_view_otp {
    display: flex;
}
.otp_title {
    font-size: 24px;
    font-weight: 400;
}
.error_msg {
    text-align: center;
    font-size: 11px;
    color: red;
    margin-top: 2px;
    max-width: var(--login-width);
}
.partitioned {
    padding-left: 23px !important;
    letter-spacing: 48px;
    border: 0 !important;
    background-image: linear-gradient(to left, black 70%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 55px 1px;
    background-repeat: repeat-x;
    background-position-x: -8px;
    width: 220px;
    outline: none;
}

.banner_img {
    max-width: 100%;
    width: 420px;
    margin-top: 0px;
    box-sizing: border-box;
}
.banner_img_2 {
    max-width: 120px;
    width: 100%;
    margin-top: 30px;
    box-sizing: border-box;
    margin-bottom: 30px;
}
.banner_img.with_border {
    border: 3px solid var(--orange-color);
}
.into_video {
    padding: 0 20px;
}
.into_video iframe {
    width: 90%;
    max-width: 420px;
}
.media {
    width: 90%;
    max-width: 420px;
}
.image_grid_4_col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    max-width: 100%;
}
body.welcome_page.long_page .login_view {
    position: fixed;
    bottom: 0;
    background: white;
    margin: 0;
    padding: 15px;
    border-top: 1px solid darkgray;
}
body.long_page .main {
    /* padding-bottom: 60px; */
}
header .logo, header .profile_img {
    position: relative;
    top: 0px;
}
header .logo, header .logo img, .profile_img, .profile_img img, [data-user-tag="picture_html"] img {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    vertical-align: middle;
    box-sizing: border-box;
}
body.no_data .profile_img img, body.no_data .profile_icon_code {
    border: 2px solid yellow;
    padding: 2px;
}
body.logged_out .profile_img img, body.logged_out .profile_icon_code {
    box-shadow: inset 0px 0px 0 2px red;
    padding: 2px;
}
header .profile_img {
    float: right;
    position: relative;
    top: 0px;
}
header .logo {
    float: left;
    position: relative;
    top: 0px;
}
span.profile_icon_code {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    font-size: 18px;
    background: var(--light-orange-color);
    color: var(--dark-color);
    text-align: center;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    box-sizing: border-box;
}
.user_type_2.profile_icon_code {
    background-color: var(--dark-color);
    color: white;
}
#screen-settings {
    text-align: center;
    overflow: hidden;
}
#screen-settings > div {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}
#screen-settings.open-sub-settings > div.active {
    border-bottom: 0;
}
#screen-settings > div > div, #screen-settings > div > a, .center-boxed {
    max-width: 420px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}
.center-boxed {
    justify-content: center;
}
.add-event .input-group {
    margin-top: 20px;
}
#screen-settings > div:last-child {
    border: 0;
}

#screen-settings [data-user-tag="name"].profile_name {
    font-size: 25px;
}

div.progress {
    background-color: lightgray !important;
    height: 10px !important;
    border-radius: 5px !important;
    width: 300px !important;
    overflow: hidden !important;
}
div.progress > div {
    background-color: var(--orange-color) !important;
    height: 10px !important;
}
div.progress_with_data {
    background-color: #EFEFEF !important;
    height: 25px !important;
    border-radius: 10px !important;
    width: 300px !important;
    overflow: hidden !important;
    position: relative;
}
div.progress_with_data > div.bar {
    background-color: var(--orange-color) !important;
    height: 25px !important;
}
div.progress_with_data > div.stats_value {
    text-align: center;
    position: absolute;
    top: 0;
    width: 100%;
    padding: 0;
    margin: 0;
}
.heading {
    font-size: 25px;
    font-weight: 400;
}
.underline {
    text-decoration: underline;
}
.stats_block, .stats_block_2 {
    text-align: center;
}
.stats_block .stats_heading {
    font-size: 25px;
    font-weight: 400;
}
.stats_block .stats_value {
    font-size: 20px;
    font-weight: 400;
    margin: 5px;
}
.stats_block_2 .progress_with_data {
    margin-top: 5px;
    height: 20px !important;
    border-radius: 7px !important;
}
.stats_block_2 .stats_heading {
    font-size: 20px;
    font-weight: 400;
}
.stats_block_2 .stats_value {
    font-size: 14px;
    font-weight: 400;
    margin: 5px;
    line-height: 20px;
}

input#arpan_date::-webkit-datetime-edit, input#arpan_date::-webkit-inner-spin-button, input#arpan_date::-webkit-clear-button, input#arpan_date::-webkit-date-and-time-value {
    display: none;
}
input#arpan_date:before {
    content: attr(data-date);
    padding-right: 0px;
}
input#arpan_date::-webkit-calendar-picker-indicator {
    display: none;
}
input#arpan_date, #show_arpan_date {
    background: white;
    font-size: 18px;
    width: 70px;
    text-align: center;
    border-radius: 50px;
    height: 70px;
    border: 4px solid var(--orange-color);
    font-weight: bold;
    word-spacing: 50px;
    cursor: pointer;
    color: var(--dark-color);
    -webkit-appearance: button; /* Safari 12 */
    -moz-appearance:initial; /* Hack for Firefox Browsers */
}
#show_arpan_date {
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    box-sizing: border-box;
}
input#arpan_date:hover {
    border-color: var(--dark-color);
}
input#arpan_date:invalid {
    background: #eee;
    color: #ccc;
    border-color: #ccc;
}
.main.date_invalid div#show_arpan_date {
    background: #eee;
    color: #ccc;
    border-color: #ccc;
}
.date_block, .arpan_count_block {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.date_block .left_arrow, .date_block .right_arrow {
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    width: 60px;
    color: darkgray;
    text-align: center;
}
.date_block .left_arrow:hover, .date_block .right_arrow:hover {
    color: var(--dark-color);
}

input#arpan_count {
    background: white;
    font-size: 50px;
    width: 150px;
    text-align: center;
    border-radius: 100px;
    height: 150px;
    border: 4px solid var(--orange-color);
    font-weight: bold;
    word-spacing: 50px;
    cursor: pointer;
    color: var(--dark-color);
}
body[max_count_len="4"] input#arpan_count {
    font-size: 45px;
}
body[max_count_len="5"] input#arpan_count {
    font-size: 35px;
}
body[max_count_len="6"] input#arpan_count {
    font-size: 30px;
}
input#arpan_count.plus_count {
    border-color: #82B26C;
}
input#arpan_count.minus_count {
    border-color: #f08080;
}
.arpan_count_block .plus, .arpan_count_block .minus {
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: white;
    text-align: center;
    margin: 20px;
    background: white;
    padding: 10px;
    border-radius: 60px;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
.arpan_count_block .plus {
    border: 4px solid #82B26C;
    color: #82B26C;
}
.arpan_count_block .plus:hover {
    background-color: #e2ffe2;
}
.arpan_count_block .minus {
    border: 4px solid #f08080;
    color: #f08080;
}
.arpan_count_block .minus:hover {
    background-color: rgb(253, 214, 214);
}
.arpan_count_block .minus:active {
    background-color:#f08080;
    color: white;
    transform: translateY(2px);
}
.arpan_count_block .plus:active {
    background-color:#82B26C;
    color: white;
    transform: translateY(2px);
}

.rotate {
    transform-origin: center center;
    transform: rotate(1deg);
    top: 5px;
    left: 5px;
    width: 140px;
    height: 140px;
    position: absolute;
    transition: transform 1s;
    z-index: -100;
}
.rotate span {
    transform: rotate(319deg);
    position: absolute;
}
.main.date_invalid input#arpan_count, .main.date_invalid  .arpan_button .button, .main.count_invalid  .arpan_button .button {
    background-color: #eee;
    border-color: #ccc;
    pointer-events: none;
}
.main.date_invalid .arpan_count_block .plus,.main.date_invalid .arpan_count_block .minus {
    background-color: #ccc;
    pointer-events: none;
}
.feedback_notification {
    width: 100%;
    height: 20px;
    background: yellow;
    text-align: center;
    cursor: pointer;
    display: block;
    padding: 10px;
}
.feedback_button {
    width: max-content;
    height: 20px;
    text-align: center;
    cursor: pointer;
    display: block;
    border-radius: 20px;
    padding: 10px 20px;
    background-color: red;
    color: white;
    font-weight: bold;
}
.footer_extra_button {
    position:fixed;
    bottom: 0px;
    width: 100%;
    background: white;
    height: 100px;
    padding-top: 10px;
    border-top: 1px solid var(--dark-color);
}
footer {
    border-top: 1px solid #ccc;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    z-index: 2;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
footer .bottom-nav {
    display: flex;
    max-width: 420px;
    justify-content: space-around;
    align-items: center;
    margin: auto;
}
footer .bottom-nav svg {
    transform: scale(.6);
}
footer .bottom-nav img {
    width: 60px;
    height: 60px;
    position: absolute;
    bottom: 0;
}
[data-screen] {
    cursor: pointer;
}
footer .bottom-nav a[data-screen="main"] svg .icon_color {
    fill: var(--orange-color);
}
footer .login_view {
    margin: 10px;
}
.social_login_buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.social_login_buttons .g_id_signin iframe {
    margin-right: 1px !important;
    left: 5px !important;
}
.social_login_buttons [role="button"] {
    width: 242px !important;
}
#screen-settings .sub-settings {
    display: none;
    flex-direction: column;
    margin-top: 40px;
}
/*
#screen-settings .sub-settings input {
    line-height: 30px;
    width: 100%;
    text-align: center;
    font-size: 20px !important;
    font-weight: 100 !important;
}

#screen-settings > div.settings-part:hover {
    text-shadow: 0 0 4px #cec6b5;
}
*/
#screen-settings .settings-part, button, .button {
    cursor: pointer;
}
#screen-settings.open-sub-settings .settings-part {
    display: none;
    cursor: default;
}
#screen-settings .settings-part.chalisa_language {
    display: none;
}
#screen-settings.open-sub-settings .settings-part.active {
    display: block;
}
#screen-settings.open-sub-settings .settings-part.active .sub-settings
{
    display: flex;
}
.screen .back {
    /*display: none;*/
    cursor: pointer;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}
.screen .back > div {
    display: flex;
    gap: 10px;
    width: 420px;
    max-width: 100%;
}
#screen-settings .back > div {
    justify-content: flex-start;
    gap: 10px;
}
#screen-settings.open-sub-settings .back {
    display: block;
}
.settings-part.sankalp .sub-settings label {
    display: flex;
    width: 120px;
    flex-direction: row;
    align-items: center;
    padding: 5px;
    justify-content: space-around;
    border-bottom: 1px solid gray;
}
.settings-part.sankalp .sub-settings label.active, .settings-part.sankalp .sub-settings label:hover {
    background: var(--orange-color);
}
.settings-part.sankalp .sub-settings label input[type=radio] {
    text-align: left !important;
    width: 20px !important;
}
.settings-part.sankalp .sub-settings label span {
    text-align: center !important;
    width: 100px !important;
}
.sankalp_table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    text-align: center;
    padding: 5px;
}
.sankalp_table > span {
    border: 1px solid var(--orange-color);
    padding: 2px 20px;
}
#screen-settings .sub-settings input#sankalp_count {
    width: 100px;
    max-width: 80px;
    text-align: center;
    font-weight: 800 !important;
    display: block;
    margin: 15px auto;
}
#screen-settings .sub-settings input#sankalp_count_old {
    width: 80px;
    height: 80px;
    max-width: 80px;
    border-radius: 50px;
    text-align: center;
    border: 3px solid var(--orange-color);
    color: var(--orange-color);
    font-weight: 800 !important;
}
#screen-settings .sub-settings input#sankalp_count::placeholder,
#screen-settings .sub-settings input#sankalp_count::placeholder::-ms-input-placeholder,
#screen-settings .sub-settings input#sankalp_count::placeholder:-ms-input-placeholder
{
    font-weight: 100;
    color: lightgray;
}
.settings-part.active > div:first-child {
    font-weight: bold;
    font-size: 15px !important;
}
.settings-part.active > div:first-child .arrow-right {
    visibility: hidden;
}
.profile_title {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: var(--profile-color);
}
.profile_title [data-user-tag="name"] {
    border: 1px solid #adadad;
    padding: 10px 5px 10px 15px;
    border-radius: 30px;
}
.profile_title [data-user-tag="name"]::after {
    content: '\25be';
    padding: 10px;
    text-decoration: none !important;
}
.profile_title.blank_name input {
    display: block !important;
}
.profile_title.blank_name [data-user-tag="name"] {
    padding: 0px;
}
.profile_switch > div {
    display: flex;
    margin: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#screen-settings .lang_option, .simple_list > *, .list {
    display: flex;
    justify-content: space-between;
    width: 200px;
    padding: 5px 10px;
    background: #eeeeee;
    margin-top: 2px;
    cursor: pointer;
    text-decoration: none;
    color: black;
}
#screen-settings .lang_option svg {
    width: 20px;
}
#screen-settings .lang_option svg path.svg_color {
    fill: green;
}

#screen-settings div.lang_option:hover {
    background-color: var(--orange-color);
}

.sub-screen {
    cursor: pointer;
}
/*
.sub-screen:hover {
    text-shadow: 0 0 4px #cec6b5;
}
*/
.sub-screen.active {
    cursor: default;
}
.sub-screen .sub-screen-content {
    display: none;
}
.screen.open-sub-screen .sub-screen {
    display: none;
}
.screen.open-sub-screen .sub-screen.active, .screen.open-sub-screen.screen-type-2 .sub-screen {
    display: block;
}
.screen.open-sub-screen .sub-screen.active .sub-screen-content
{
    display: flex;
    justify-content: center;
}
/*
.screen .back {
    display: none;
}
*/
.screen.open-sub-screen .back {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}
.screen.open-sub-screen .back > div {
    max-width: 100%;
    width: 420px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.profile_switch .sub-screen-content {
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
    margin-bottom: 60px;
}
.screen.profile_switch.open-sub-screen .sub-screen.active {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.screen.open-sub-screen .hide-on-open-sub-screen {
    display: none;
}
.screen.profile_switch.open-sub-screen .sub-screen.active .list {
    background: white;
    font-weight: bold;
    justify-content: center;
}

.screen.screen-type-2 .heading {
    background: var(--dark-color);
    color: white;
    padding: 8px 20px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    line-height: 18px;
}
.screen.screen-type-2 .heading .icon {
    background: white;
}
.screen.screen-type-2 .sub-screen {
    margin-bottom: 1px;
}
.screen.screen-type-2 .sub-screen .sub-screen-content {
    padding: 10px;
    border: 2px solid var(--dark-color);
}
.screen.screen-type-2 .sub-screen .collapsed, .screen.screen-type-2 .sub-screen.active .expanded {
    display: inline-block;
}
.screen.screen-type-2 .sub-screen.active .collapsed, .screen.screen-type-2 .sub-screen .expanded {
    display: none;
}

.screen.library {
    padding: 0 10px;
}
.tabs-list-container{
    display:flex;
    justify-content:center;

}
.tabs-list{
    display:flex;
    flex-direction: row;
    width: 420px;
    max-width: 100%;
}

.tab-item {
    width: 25%;
    border: 1px solid var(--dark-color);
    text-align: center;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
}

.tab-active {
    width: 50% !important;
    background-color: var(--dark-color);
    color: var(--light-color);
}

.list-item {
    display: flex;
    flex-direction: row;
    width: 420px;
    max-width: 100%;
    border: 1px solid #411e224a;
    justify-content: space-between;
    margin: 10px 0;
    cursor: pointer;
    box-shadow: #9c999954 2px 3px 4px 0;
}

.list-item:hover{
    box-shadow: #fd883466 2px 3px 4px 1px;
}

.item-meta{
    display: flex;
}

.item-meta img{
    max-width: 150px;
    margin-right: 15px;
}

.item-meta div{
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: space-evenly;
}

.item-actions{
    min-width: 50;
    align-self: center;
}

.list-container {
    width: 420px;
    max-width: 100%;
}


input[type=text], input[type=date], input[type=email], input[type=phone], input[type=number], select, textarea{
    border: solid #d6d4d4 1px;
    padding: 10px 15px;
    border-radius: 25px;
    appearance: initial;
    font-size: 14px;
    height: 40px;
}
select, input[type=date] {
    background: white;
}
.VideoPlayer , .audioPlayer, .sub-screen.read, iframe {
    width: 420px;
    max-width: 100%;
}

.more_video_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.audioPlayer{
    background-color: #f1f3f4;
}
.input-form {
    display: flex;
    flex-direction: column;
    align-self: center;
}

.input-group {
    font-family: system-ui;
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
    margin: 10px 0;
}
.input-group-1-by-2 {
    display: flex;justify-content: space-between;align-items: start;
}
.input-group-1-by-2 .input-group {
    width: 49%;
}
.input-group-choices {
    display: flex;justify-content: space-around;align-items: center;border: solid #d6d4d4 1px;padding: 10px 15px;border-radius: 25px;appearance: initial;
}
#screen-settings .input-group {
    margin-bottom: 20px;
}

.input-group > label {
    position: absolute;
    margin-top: -10px;
    margin-left: 10px;
    background: white;
    width: fit-content;
    padding: 0 5px;
    font-weight: 600;
    z-index: 1;
    max-height: 20px;
    overflow: hidden;
}
.video-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.video-overlay-center {
    position: absolute;
    top: 1;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay-icon{
    height: 40px;
    background: white;
    border-radius: 10px;
    width: 80px;
    box-shadow: #745d5d -2px 3px 3px 1px;
}
.overlay-icon-large{
    height: 70px;
    width: 110px;
    border-radius: 15px;
}
.icon {
    background-color: black;
    width: 20px;
    height: 20px;
}
.icon-down {
    -webkit-mask-image: url(./../images/caret-down-circle-outline.svg);
    mask-image: url(./../images/caret-down-circle-outline.svg);

}
.icon-up {
    -webkit-mask-image: url(./../images/caret-up-circle-outline.svg);
    mask-image: url(./../images/caret-up-circle-outline.svg);
}

.about, .instructions, .partners{
    padding: 0 10px;
    text-align: justify;
}

.partners {
    display: flex;
    margin: auto;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-evenly;
    margin-bottom: 30px;
}

.partners img {
    width: 110px;
    align-self: center;
}

.shloka {
    margin: 10px;
    cursor: pointer;
}

table#version_info_table {
    margin: 20px 0;
    text-align: left;
    font-size: 12px;
}
.artha {
    text-align: justify;
}
/*
.artha {
    display: none;
}
*/

.chalisa_controls{
    display: flex;
    justify-content: space-between;
}

.chalisa_font_controls {
    display: flex;
    gap: 10px;
}

.chalisa_font_controls .font-control {
    font-size: 20px;
    background: var(--orange-color);
    color: white;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    cursor: pointer;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.chalisa_language_control {
    background: var(--orange-color);
    border-radius: 50px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.app_store_logos {
    display: flex;
    flex-direction: row;
    width: 420px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.select2-container--default .select2-selection--single {
    height: 40px;
    border-radius: 25px;
    padding-left: 5px;
    border: solid #d6d4d4 1px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
    color: black;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
    padding-right: 5px;
}
/*
.select2-dropdown {
    width: 280px !important;
}
*/
.input-phone .select2-selection.select2-selection--single {
    border-radius: 25px 0 0 25px;
}

.input-group.input-phone > div {
    display: flex;
    align-items: self-end;
}
.input-group.input-phone > div > input {
    border-radius: 0 25px 25px 0;
    border-left: 0px;
    margin: 0;
}
.input-group.input-phone input {
    width: 60%;
}
.input-error-message{
    display: none;
}

.invalid-input .input-error-message{
    display: block;
    color: var(--red-color);
}
.icon_bg {
    background-size: 20px;
    background-repeat: no-repeat;
    padding-left: 30px;
    background-position: 5px center;
}
.icon_bg.edit, .icon.edit {
    background-image: url(./../images/icon-edit.png);
}
.icon_bg.profile_type_0 {
    background-image: url(./../images/icon-manager.png);
}
.icon_bg.profile_type_1 {
    background-image: url(./../images/icon-family.png);
}
.icon_bg.profile_type_2 {
    background-image: url(./../images/icon-event.png);
}
.icon_bg.profile_type_1_add {
    background-image: url(./../images/icon-family-plus.png);
}

.events-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
span.event_left {
    position: absolute;
    top: 10px;
    left: 10px;
}
.event-header {
    margin-top: 10px;
}
.event-header h1 {
    margin-top: 0;
}
.event-header h1 svg {
    display: inline-block;
    width: 24px;
    position: relative;
    top: 4px;
}
.event-item .event-item-snippet {
    display: flex;
    align-items: center;
    background-color: #e5e5e5;
    padding: 10px 5px 10px 10px;
    border-radius: 3px;
    margin-top: 10px;
}
.event-item.selected_public_1.selected_status_2 .event-item-snippet {
    background: #fed5ad;
}
.event-item.selected_public_1.selected_status_0 .event-item-snippet, .event-item.selected_public_1.selected_status_0 .event-details {
    background: #f2f2f2;
    color: #cbcbcb;
}

.event-item .event-item-snippet .event-title{
    font-size: 18px;
}
.event-item-meta {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-item-meta div{
    display: flex;
    gap: 30px;
}

.event-item-meta svg{
    width: 15px;
}

.event-date, .event-city {
    display: flex;
    align-items: center;
    gap: 5px;
    max-width: 150px;
}

.event-title{
    font-weight: bold;
}

.event-item-actions{
    display: flex;
    align-self: normal;
}

.event-item-actions div{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-item-actions svg{
    width: 30px !important;
    color: var(--dark-color) !important;
}

.event-search {
    display: flex;
    justify-content: space-around;
}

.event-search input{
    width: 70%;
    margin-bottom: 10px;
}

.event-details {
    position: relative;
    padding: 10px 10px;
    background: lightyellow;
    border: 1px solid #e5e5e5;
    display: none;
}
.event-details .event_details_edit {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    padding: 0;
}
.event-details.active{
    display: block;
}

.event-details h2{
    text-align: center;
    margin-top: 30px;
}

.event-details svg{
    width: 20px;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.event-meta span{
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-extra-info, .event-address {
    display: flex;
    flex-direction: column;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.event-oragniser {
    text-align: right;
    line-height: 20px;
    width: 100%;
}
.event-oragniser a {
    text-decoration: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: black;
    vertical-align: middle;
}
.event-extra-info span, .event-address span, .event-oragniser span{
    margin: 5px 0;
}

.event-extra-info h4, .event-address h4, .event-oragniser h4{
    margin: 5px 0;
}

.event-extra-info{
    text-align: center;
}

.submissions-button{
    text-align: center;
    margin: 10px 0;
    cursor: pointer;
}

.submissions-list{
    margin-bottom: 20px;
}

.submissions-meta{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 5px;
}

.submissions-meta div{
    height: 60px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px var(--profile-color) solid;
    border-radius: 10px;
    font-size: 12px;
    gap: 5px;
}

.submissions-meta-count{
    font-size: 18px;
    font-weight: bold;
}

.submissions-list-item {
    display: grid;
    grid-template-columns: 50% 30% 20%;
    gap: 5px;
    border: 1px solid var(--profile-color);
    border-bottom: none;
}
.submissions-list-item:last-child{
    border-radius: 0 0 10px 10px;
    border-bottom: 1px solid var(--profile-color);
}
.submissions-list-item:nth-child(2){
    border-radius: 10px 10px 0 0;
 }
.submissions-list-item.list-header{
    font-weight: bold;
}
.submissions-list-item span {
    padding: 5px;
    padding-left: 15px;
}
.submissions-list-item span:nth-child(2){
    text-align: center;
    padding-left: 0px
}
.submissions-list-item .edit{
    float: right;
    cursor: pointer;
}

.live-event, .timer{
    display: flex;
    flex-direction: column;
    text-align: center;
}

.timer{
    border: 1px solid var(--dark-color);
}

#timerEventcaption{
    font-size: 25px;
    margin: 5px 0;
    color: var(--dark-color);
    font-weight: 600;
}

#timerEvent{
    font-size: 25px;
    margin-bottom: 8px;
    color: var(--orange-hover);
}

.language-icon{
    background: var(--light-orange-color);
    border-radius: 50px;
    padding: 8px;
}

.language-icon svg{
    width: 24px;
    color: blue;
}

.event-container{
    width: 100%;
}

.event-container > div{
    padding: 0px 15px;
    align-self: normal;
}

.event-container svg{
    height: 30px;
    width: 30px;
}

.event-container .event-meta {
    background: #e5e5e5;
    padding: 5px 5px;
    border-radius: 4px;
    margin: auto;
}

.event-description {
    text-align: justify;
    margin-bottom: 10px;
}

.event-share{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 10px;
}

.event-share > span{
    display: flex;
    align-items: center;
    gap: 10px;
}
.event-share a {
    color: black;
}

.copy-link-btn  {
    border: 1px solid;
    padding: 5px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    background: var(--yellow-color);
    padding: 5px 10px;
}

.share-options {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 18px;
}
.share-options svg {
    width: 30px;
    padding: 0 5px;
}

#subuser-icons {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
}
#subuser-icons > div {
    justify-content: flex-end;
    gap: 5px;
    flex-flow: wrap;
    display: flex;
}