/* Base Styles */
:root {
    --primary-color: #1e75bc;
    --secondary-color: #24667b;
    --accent-color: #dd4212;
    --header-bg: #3d4b5b78;
    --form-bg: #f7f7f7d9;
    --border-color: #DDD;
    --success-color: #690605;
}

@font-face{
    font-family:Calibri;
    src:url(../../public-assets/fonts/Calibri.eot);
    src:url(../../public-assets/fonts/Calibri.eot?#iefix) format("embedded-opentype"),url(../../public-assets/fonts/Calibri.woff) format("woff"),url(../../public-assets/fonts/Calibri.ttf) format("truetype"),url(../../public-assets/fonts/Calibri.svg#svgFontName) format("svg")
}

html, body {
	width: 100% !important;
	height: 100% !important;
    font-family: Calibri, Fallback, open-sans;
}
  
body {
    background: url(/public-assets/images/background2.jpg);
    background-position: 0 0;
    background-size: cover;
    width: 100%;
    height: 100%;
    box-sizing: content-box;
    margin: 0px;
}

html, body {
    width: 100% !important;
    height: 100% !important;
    font-family: Calibri, Fallback, open-sans;
  }
  
  ::-webkit-scrollbar {
    width: 15px !important;
  }
  
  ::-webkit-scrollbar-track{
    border-radius:0;
  }
  ::-webkit-scrollbar-thumb{
    background-color:#393937;
    border:0 solid hsla(0,0%,83.9%,.7);
    border-radius:0
  }
  ::-webkit-scrollbar-corner {
    background: transparent !important;
}


.user-portal {
    display: flex;
    flex-direction: column;
}

.citizen-email, .citizen-mobile {
    margin: auto;
    width: 100%;
}

.citizen-email input, .citizen-mobile input {
	/* reset padding so they are the same.*/
	width: 100% !important;
	height: 50px;
	padding: 10px !important;
	box-sizing: border-box;
}

.btn-findAccount {
	width: 100%;
	margin: auto;
	height: 50px;
}

.user-verify, .no-user-found {
	display: none;
}

.user-verify {
	flex-direction: column;
	width: 100%;
	gap: 10px;
	justify-content: center;
	text-align: center;
}

.user-verify input#citizen-mobile-code {
    width: 95.5%;
    height: 40px;
}


.verify-code-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	text-align: center;
}

.no-user-found {
	width: 50%;
	margin: auto;
	text-align: center;
	background: #dedede;
	border-radius: 4px;
	padding: 10px;
	font-size: 2em;
}

@media (max-width: 768px) {
	.no-user-found {
		width: 90%;
	}
}


/* Mobile + Desktop User App */

.subscriber-app {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffffc4;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    /* position: fixed; */
    width: 100%;
    height: 100%;
}

.app-header {
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    text-align: center;
}

.app-header h1 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.portal-app-toolbar {
    display: flex;
    border-bottom: 1px solid #dee2e6;
    background: white;
}

.portal-app-toolbar .menu-btn {
    flex: 1;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    color: #6c757d;
    transition: all 0.3s ease;
}

.portal-app-toolbar .menu-btn i {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
}

.portal-app-toolbar .menu-btn.selected {
    color: #007bff;
    background: #f8f9fa;
    border-bottom: 2px solid #007bff;
}

.portal-app-body {
    flex: 1;
    overflow-y: auto;
    /* padding: 25px; */
    overflow-x: hidden;
    /* overflow: hidden !important; */
    /* overflow: hidden !important; */
}

.screen {
    min-height: 400px;
    height: 100%;
}

/* Notifications Styling */

.screen-notifications {
	text-align: center;
	overflow: hidden;
}

.notifications-list {
    overflow-y: auto;
    height: 100%;
    width: 100%;
}

.notification-item {
    padding: 15px;
    padding-bottom: 30px;
    max-width: 1000px;
    margin: 0 auto;
    background: whitesmoke;
    border: 10px solid #646869;
    /* box-shadow: 2px 9px 9px 1px #DDD; */
    width: 99%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.notification-item .datetime {
    color: #6c757d;
    font-size: 1em;
    margin-bottom: 5px;
    font-weight: 800;
}

.notification-item .title {
    font-weight: bold;
    margin-bottom: 5px;
}

.notification-item .sender {
    color: #6c757d;
    font-size: 0.9em;
    margin-bottom: 5px;
    text-align: left;
    visibility: hidden;
}

.notification-item .message {
    margin-bottom: 15px;
    line-height: 1.4;
    text-align: left;
    font-size: 18px;
    margin-left: 5px;
    margin-right: 5px;
}

/* Bubbles Styling */
.channels-bubble,
.group-bubble,
.location-bubble {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    margin: 2px;
    font-size: 0.85em;
}

.channels-bubble {
    background: #e3f2fd;
    color: #1976d2;
}

.group-bubble {
    background: #f3e5f5;
    color: #7b1fa2;
}

.location-bubble {
    background: #e8f5e9;
    color: #388e3c;
}

/* Profile Form Styling */
.subscriber-form {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.form-group {
    margin-bottom: 13px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #495057;
}

.form-group input {
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 17px;
    margin: 0 auto;
    height: 55px;
	padding: 4px;
}
.form-group select {
    font-size: 17px;
}

.form-actions {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}

.btn-update,
.btn-unsubscribe {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 17px;
}

.btn-update {
    background: #007bff;
    color: white;
    flex: 2;
}

.btn-unsubscribe {
    background: #dc3545;
    color: white;
    flex: 2;
}

.hidden {
    display: none;
}

/* Address Tabs */
.address-tabs, .phones-tabs, .mobiles-tabs, .emails-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.address-tab, .phones-tab, .mobiles-tab, .emails-tab {
	padding: 0.5rem 1rem;
	background: var(--border-color);
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.2s;
	user-select: none; /* Prevents text selection when clicking */
}

.address-tab.active, .phones-tab.active, .mobiles-tab.active, .emails-tab.active {
	background: #000;
	color: white;
}

.address-panel, .phones-panel, .mobiles-panel, .emails-panel {
	display: none;
}

.address-panel.active, .phones-panel.active, .mobiles-panel.active, .emails-panel.active {
	display: block;
}

.addresses-section, .phones-section, .mobiles-section, .emails-section {
    margin-top: 10px;
    background: #ffffff;
    padding: 15px;
    border: 1px solid #DDD;
    border-radius: 5px;
    padding-top: 20px;
    box-sizing: border-box;
    width: 100%;
}

.unsubscribe-section {
	text-align: center;
	font-size: 1.5em;
}div#map {
    display: block !important;
    overflow: hidden !important;
}

.screen.screen-map {
    overflow: hidden !important;
}

select#citizen-lang {
    width: 100% !important;
    height: 55px !important;
    background: white;
    border-radius: 4px !important;
    font-size: 17px;
}

div#toast {
    background: black;
    border-radius: 30px;
    color: white;
    min-width: 150px;
    text-align: center;
    bottom: 120px;
}

input, option {
	font-size: 17px;
	line-height: 17px;
	width: 98%;
	margin: 0 auto;
}

label {
    font-size: 17px;
    line-height: 17px;
    font-weight: bold;
}


@media screen and (max-width: 1200px) {
    .user-verify input#citizen-mobile-code {
        width: 91%;
    }
}

.account-page img.toolbar-logo {
    height: 70px !important;
    width: auto !important;
    padding: 10px;
}

.notice-banner {
    display: none;
    width: 99%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 25px;
    background: whitesmoke;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    box-sizing: border-box;
}

.notice-banner.success {
    background: green;
    color: white;
}

.notice-banner.warning {
    background: orange;
    color: white;
}

.notice-banner.notice {
    background: red;
    color: white;
}

.meta-info {
    background: whitesmoke;
    padding: 15px;
    border: 1px solid #DDD;
    border-radius: 5px;
    font-weight: bold;
    font-size: 17px;
    display: none;
}

.account-page .description-label {
    width: 98% !important;
    float: none !important;
    display: block;
    background: none;
    color: black !important;
    border: none;
    text-align: left;
    margin-left: -6px;
}

.account-page .languageTickers-header-box {
    margin-top: 28px;
    color: black !important;
}

.account-page .languageTickers-header-box label {
    color: #495057 !important;
}

.account-page .groupTickers-header-box {
    margin-top: 50px;
}

.account-page .locationTickers-header-box {
    margin-top: 45px;
}

.account-page .locationTickers-header-box hr {
    display: none;
}

.account-page .width-100.locationTickers hr {
    display: none;
}

.account-page .width-100.locationTickers label {
    display: none;
}

.account-page .groupTickers-header-box label {
}

.account-page .width-100.groupTickers label {
    visibility: hidden;
}

.account-page .group-box i {
    margin-right: 10px;
}

.account-page div.county-warning {
    background: red;
    color: white;
    font-size: 18px;
    padding: 10px;
    box-sizing: border-box;
    width: 98%;
    margin: 0 auto;
    margin-top: 10px;
    margin-left: 0px;
    border-radius: 3px;
}

.account-page form#subscriber-form label {
    color: #495057;
}

.portal-app-container {
    max-width: 1200px;
    margin:  0 auto;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-bottom: 25px;
}

.account-page .groupTickers .ticker {
    flex: 0 0 100%;
}

.account-page .meta-info-box {
    text-align: left;
    font-weight: bold;
    line-height: 20px;
    font-size: 16px;
}

.account-page .meta-info-box div {
    margin-bottom: 5px;
}

.account-page .width-100.locationTickers, .account-page .width-100.groupTickers {
    background: white;
    padding: 13px;
    box-sizing: border-box;
    border: 1px solid #DDD;
    border-radius: 7px;
    padding-right: 8px;
}

.account-page .width-100.groupTickers {
    margin-top: 11px;
}

@media only screen and (max-width: 1200px) {

    .account-page .locationTickers .ticker {
        flex: 0 0 48%;
    }

}

.width-100.groupTickers label {
    display: none;
}

.sign-out-section {
    text-align: center;
    margin-top: -10px;
    background: #393937;
    color: white;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    border-bottom: 2px solid #FFF;
}

.sign-out-section a {
    color: white;
    text-decoration: auto;
}

.sign-out-section:hover {
    background: grey;
}

.screen.screen-notifications .alert-header {
    /* background: #FFF; */
    width: 99%;
    margin: 0 auto;
    /* padding: 10px; */
    margin-bottom: 25px;
    font-weight: 100;
    box-sizing: border-box;
    /* border: 10px solid #646869; */
    /* box-shadow: 2px 2px 2px #DDD; */
    color: #656869;
    font-size: 28px;
    font-family: sans-serif;
    max-width: 1000px;
    text-align: left;
}
form#subscriber-form {
    background: white;
    padding: 50px;
    border: 1px solid #DDD;
    margin-top: 20px;
    border-radius: 10px;
    box-sizing: border-box;
    width: 95% !important;
}

.address-panels {
    background: whitesmoke;
    padding: 20px;
    border-radius: 8px;
}

.account-page div#no-active-alert {
    flex-direction: column;
    width: 99% !important;
    height: auto !important;
    margin-bottom: 20px;
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid #74706f;
    border-radius: 0px;
    margin-bottom: 30px;
    margin-top: 10px;
    text-align: left;
    background: whitesmoke;
    border-radius: 10px;
}

.account-page .no-active-alert-lang {
    width: 100% !important;
    overflow: hidden;
    padding: 10px;
}

.list-container .notifiaction-item {
    width: 80% !important;
    max-width: 600px !important;
}

.list-container .notification-item {
    border: 2px solid #74706f;
    background: white;
}

.account-page div#no-active-alert h2 {
    font-size: 40px;
}

div#no-active-alert .fa-check {
    background: green;
    padding: 10px;
    box-sizing: border-box;
    font-size: 25px;
    color: white;
    border-radius: 25px;
    position: relative;
    top: -3px;
    margin-right: 5px;
}
.account-page form#subscriber-form {padding: 35px 25px;margin-bottom: 55px;padding-bottom: 35px;}

.public-feed-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex: 1;
    height: 100%;
    overflow: hidden;
}
.notifications-list::-webkit-scrollbar {
    width: 15px;
    display: block;
}

.notification-item .datetime.expires-soon {
    color: red;
}

.notification-item .datetime.expired {/* Base Styles */
    :root {
        --primary-color: #1e75bc;
        --secondary-color: #24667b;
        --accent-color: #dd4212;
        --header-bg: #3d4b5b78;
        --form-bg: #f7f7f7d9;
        --border-color: #DDD;
        --success-color: #690605;
      }
    
    html, body {
        width: 100% !important;
        height: 100% !important;
        /* overflow-y: hidden; */
        /* overflow-x: hidden; */
    }
      
    
    body {
        background: url(/public-assets/images/background2.jpg);
        background-position: 0 0;
        background-size: cover;
        width: 100%;
        height: 100%;
        box-sizing: content-box;
    }
    
    .user-portal {
        display: flex;
        flex-direction: column;
    }
    
    .citizen-email, .citizen-mobile {
        margin: auto;
        width: 100%;
    }
    
    .citizen-email input, .citizen-mobile input {
        
        /* reset padding so they are the same.*/
        width: 100% !important;
        height: 50px;
        padding: 10px !important;
        box-sizing: border-box;
    }
    
    .btn-findAccount {
        width: 100%;
        margin: auto;
        height: 50px;
    }
    
    .user-verify, .no-user-found {
        display: none;
    }
    
    .user-verify {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        justify-content: center;
        text-align: center;
    }
    
    .user-verify input#citizen-mobile-code {
        width: 95.5%;
        height: 40px;
    }
    
    
    .verify-code-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        text-align: center;
    }
    
    .no-user-found {
        width: 50%;
        margin: auto;
        text-align: center;
        background: #dedede;
        border-radius: 4px;
        padding: 10px;
        font-size: 2em;
    }
    
    @media (max-width: 768px) {
        .no-user-found {
            width: 90%;
        }
    }
    
    
    /* Mobile + Desktop User App */
    
    .subscriber-app {
        max-width: 1200px;
        margin: 0 auto;
        background: #ffffffc4;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        /* position: fixed; */
        width: 100%;
        height: 100%;
    }
    
    .app-header {
        padding: 20px;
        background: #f8f9fa;
        border-bottom: 1px solid #dee2e6;
        text-align: center;
    }
    
    .app-header h1 {
        margin: 0;
        font-size: 24px;
        color: #333;
    }
    
    .portal-app-toolbar {
        display: flex;
        border-bottom: 1px solid #dee2e6;
        background: white;
    }
    
    .portal-app-toolbar .menu-btn {
        flex: 1;
        padding: 15px;
        text-align: center;
        text-decoration: none;
        color: #6c757d;
        transition: all 0.3s ease;
    }
    
    .portal-app-toolbar .menu-btn i {
        display: block;
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .portal-app-toolbar .menu-btn.selected {
        color: #007bff;
        background: #f8f9fa;
        border-bottom: 2px solid #007bff;
    }
    
    .portal-app-body {
        flex: 1;
        overflow-y: auto;
        /* padding: 25px; */
        overflow-x: hidden;
        /* overflow: hidden !important; */
        /* overflow: hidden !important; */
    }
    
    .screen {
        min-height: 400px;
        height: 100%;
    }
    
    /* Notifications Styling */
    
    .screen-notifications {
        text-align: center;
        overflow: hidden;
    }
    
    .notifications-list {
        overflow-y: auto;
        height: 100%;
        width: 100%;
    }
    
    .notification-item {
        padding: 15px;
        padding-bottom: 30px;
        max-width: 1000px;
        margin: 0 auto;
        background: whitesmoke;
        border: 10px solid #646869;
        /* box-shadow: 2px 9px 9px 1px #DDD; */
        width: 99%;
        box-sizing: border-box;
        margin-bottom: 30px;
    }
    
    .notification-item .datetime {
        color: #6c757d;
        font-size: 1em;
        margin-bottom: 5px;
        font-weight: 800;
    }
    
    .notification-item .title {
        font-weight: bold;
        margin-bottom: 5px;
    }
    
    .notification-item .sender {
        color: #6c757d;
        font-size: 0.9em;
        margin-bottom: 5px;
        text-align: left;
        visibility: hidden;
    }
    
    .notification-item .message {
        margin-bottom: 15px;
        line-height: 1.4;
        text-align: left;
        font-size: 18px;
        margin-left: 5px;
        margin-right: 5px;
    }
    
    /* Bubbles Styling */
    .channels-bubble,
    .group-bubble,
    .location-bubble {
        display: inline-block;
        padding: 3px 8px;
        border-radius: 12px;
        margin: 2px;
        font-size: 0.85em;
    }
    
    .channels-bubble {
        background: #e3f2fd;
        color: #1976d2;
    }
    
    .group-bubble {
        background: #f3e5f5;
        color: #7b1fa2;
    }
    
    .location-bubble {
        background: #e8f5e9;
        color: #388e3c;
    }
    
    /* Profile Form Styling */
    .subscriber-form {
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .form-group {
        margin-bottom: 13px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 5px;
        color: #495057;
    }
    
    .form-group input {
        width: 100%;
        padding: 8px 12px;
        border: 1px solid #ced4da;
        border-radius: 4px;
        font-size: 17px;
        margin: 0 auto;
        height: 55px;
    }
    .form-group select {
        font-size: 17px;
    }
    
    .form-actions {
        margin-top: 30px;
        display: flex;
        gap: 10px;
    }
    
    .btn-update,
    .btn-unsubscribe {
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 17px;
    }
    
    .btn-update {
        background: #007bff;
        color: white;
        flex: 2;
    }
    
    .btn-unsubscribe {
        background: #dc3545;
        color: white;
        flex: 2;
    }
    
    .hidden {
        display: none;
    }
    
    /* Address Tabs */
    .address-tabs, .phones-tabs, .mobiles-tabs, .emails-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .address-tab, .phones-tab, .mobiles-tab, .emails-tab {
        padding: 0.5rem 1rem;
        background: var(--border-color);
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.2s;
        user-select: none; /* Prevents text selection when clicking */
    }
    
    .address-tab.active, .phones-tab.active, .mobiles-tab.active, .emails-tab.active {
        background: #000;
        color: white;
    }
    
    .address-panel, .phones-panel, .mobiles-panel, .emails-panel {
        display: none;
    }
    
    .address-panel.active, .phones-panel.active, .mobiles-panel.active, .emails-panel.active {
        display: block;
    }
    
    .addresses-section, .phones-section, .mobiles-section, .emails-section {
        margin-top: 10px;
        background: #ffffff;
        padding: 15px;
        border: 1px solid #DDD;
        border-radius: 5px;
        padding-top: 20px;
        box-sizing: border-box;
        width: 100%;
    }
    
    .unsubscribe-section {
        text-align: center;
        font-size: 1.5em;
    }div#map {
        display: block !important;
        overflow: hidden !important;
    }
    
    .screen.screen-map {
        overflow: hidden !important;
    }
    
    select#citizen-lang {
        width: 100% !important;
        height: 55px !important;
        background: white;
        border-radius: 4px !important;
        font-size: 17px;
    }
    
    div#toast {
        background: black;
        border-radius: 30px;
        color: white;
        min-width: 150px;
        text-align: center;
        bottom: 120px;
    }
    
    input, option {
        font-size: 17px;
        line-height: 17px;
        width: 98%;
        margin: 0 auto;
    }
    
    label {
        font-size: 17px;
        line-height: 17px;
        font-weight: bold;
    }
    

    @media screen and (max-width: 1200px) {
        .user-verify input#citizen-mobile-code {
            width: 91%;
        }
    }
    
    .account-page img.toolbar-logo {
        height: 70px !important;
        width: auto !important;
        padding: 10px;
    }
    
    .notice-banner {
        display: none;
        width: 99%;
        margin: 0 auto;
        text-align: center;
        margin-bottom: 25px;
        background: whitesmoke;
        padding: 10px;
        border-radius: 5px;
        font-weight: bold;
        box-sizing: border-box;
    }
    
    .notice-banner.success {
        background: green;
        color: white;
    }
    
    .notice-banner.warning {
        background: orange;
        color: white;
    }
    
    .notice-banner.notice {
        background: red;
        color: white;
    }
    
    .meta-info {
        background: whitesmoke;
        padding: 15px;
        border: 1px solid #DDD;
        border-radius: 5px;
        font-weight: bold;
        font-size: 17px;
        display: none;
    }
    
    .account-page .description-label {
        width: 98% !important;
        float: none !important;
        display: block;
        background: none;
        color: black !important;
        border: none;
        text-align: left;
        margin-left: -6px;
    }
    
    .account-page .languageTickers-header-box {
        margin-top: 28px;
        color: black !important;
    }
    
    .account-page .languageTickers-header-box label {
        color: #495057 !important;
    }
    
    .account-page .groupTickers-header-box {
        margin-top: 50px;
    }
    
    .account-page .locationTickers-header-box {
        margin-top: 45px;
    }
    
    .account-page .locationTickers-header-box hr {
        display: none;
    }
    
    .account-page .width-100.locationTickers hr {
        display: none;
    }
    
    .account-page .width-100.locationTickers label {
        display: none;
    }
    
    .account-page .width-100.groupTickers label {
        visibility: hidden;
    }
    
    .account-page .group-box i {
        margin-right: 10px;
    }
    
    .account-page div.county-warning {
        background: red;
        color: white;
        font-size: 18px;
        padding: 10px;
        box-sizing: border-box;
        width: 98%;
        margin: 0 auto;
        margin-top: 10px;
        margin-left: 0px;
        border-radius: 3px;
    }
    
    .account-page form#subscriber-form label {
        color: #495057;
    }
    
    .portal-app-container {
        max-width: 1200px;
        margin:  0 auto;
        width: 100%;
        overflow-y: scroll;
        overflow-x: hidden;
        padding-bottom: 25px;
    }
    
    .account-page .groupTickers .ticker {
        flex: 0 0 100%;
    }
    
    .account-page .meta-info-box {
        text-align: left;
        font-weight: bold;
        line-height: 20px;
        font-size: 16px;
    }
    
    .account-page .meta-info-box div {
        margin-bottom: 5px;
    }
    
    .account-page .width-100.locationTickers, .account-page .width-100.groupTickers {
        background: white;
        padding: 13px;
        box-sizing: border-box;
        border: 1px solid #DDD;
        border-radius: 7px;
        padding-right: 8px;
    }
    
    .account-page .width-100.groupTickers {
        margin-top: 11px;
    }
    
    @media only screen and (max-width: 1200px) {
    
        .account-page .locationTickers .ticker {
            flex: 0 0 48%;
        }
    
    }
    
    .width-100.groupTickers label {
        display: none;
    }
    
    .sign-out-section {
        text-align: center;
        margin-top: -10px;
        background: #393937;
        color: white;
        padding: 15px;
        cursor: pointer;
        font-size: 18px;
        border-bottom: 2px solid #FFF;
    }
    
    .sign-out-section a {
        color: white;
        text-decoration: auto;
    }
    
    .sign-out-section:hover {
        background: grey;
    }
    
    .screen.screen-notifications .alert-header {
        /* background: #FFF; */
        width: 99%;
        margin: 0 auto;
        /* padding: 10px; */
        margin-bottom: 25px;
        font-weight: 100;
        box-sizing: border-box;
        /* border: 10px solid #646869; */
        /* box-shadow: 2px 2px 2px #DDD; */
        color: #656869;
        font-size: 28px;
        font-family: sans-serif;
        max-width: 1000px;
        text-align: left;
    }
    form#subscriber-form {
        background: white;
        padding: 50px;
        border: 1px solid #DDD;
        margin-top: 20px;
        border-radius: 10px;
        box-sizing: border-box;
        width: 95% !important;
    }
    
    .address-panels {
        background: whitesmoke;
        padding: 20px;
        border-radius: 8px;
    }
    
    .account-page div#no-active-alert {
        flex-direction: column;
        width: 99% !important;
        height: auto !important;
        margin-bottom: 20px;
        max-width: 1000px;
        margin: 0 auto;
        border: 2px solid #74706f;
        border-radius: 0px;
        margin-bottom: 30px;
        margin-top: 10px;
        text-align: left;
        background: whitesmoke;
        border-radius: 10px;
    }
    
    .account-page .no-active-alert-lang {
        width: 100% !important;
        overflow: hidden;
        padding: 10px;
    }
    
    .list-container .notifiaction-item {
        width: 80% !important;
        max-width: 600px !important;
    }
    
    .list-container .notification-item {
        border: 2px solid #74706f;
        background: white;
    }
    
    .account-page div#no-active-alert h2 {
        font-size: 40px;
    }
    
    div#no-active-alert .fa-check {
        background: green;
        padding: 10px;
        box-sizing: border-box;
        font-size: 25px;
        color: white;
        border-radius: 25px;
        position: relative;
        top: -3px;
        margin-right: 5px;
    }
    .account-page form#subscriber-form {padding: 35px 25px;margin-bottom: 55px;padding-bottom: 35px;}
    
    .public-feed-wrapper {
        display: flex;
        flex-direction: row;
        width: 100%;
        flex: 1;
        height: 100%;
        overflow: hidden;
    }
    .notifications-list::-webkit-scrollbar {
        width: 15px;
        display: block;
    }
    
    .notification-item .datetime.expires-soon {
        color: red;
    }
    
    .notification-item .datetime.expired {
        color: #6c757d;
    }
    
    .notification-item .datetime.expires-later {
        color: green;
    }
    
    .notification-item .datetime.expires-middle {
        color: orange;
    }
    color: #6c757d;
}

.notification-item .datetime.expires-later {
    color: green;
}

.notification-item .datetime.expires-middle {
    color: orange;
}

#map {
    height:100%;
    margin-left:0;
    margin-top:0;
    background:rgba(21,36,53,.95);
    z-index:0;
}

#loader-wrapper{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:10000000
}
#loader{
    display:block;
    position:relative;
    left:50%;
    top:50%;
    width:150px;
    height:150px;
    margin:-75px 0 0 -75px;
    border-radius:50%;
    border:3px solid transparent;
    border-top-color:#3498db;
    -webkit-animation:spin 2s linear infinite;
    animation:spin 2s linear infinite;
    z-index:10000002
}
#loader:before{
    content:"";
    position:absolute;
    top:5px;
    left:5px;
    right:5px;
    bottom:5px;
    border-radius:50%;
    border:3px solid transparent;
    border-top-color:#e74c3c;
    -webkit-animation:spin 3s linear infinite;
    animation:spin 3s linear infinite
}
#loader:after{
    content:"";
    position:absolute;
    top:15px;
    left:15px;
    right:15px;
    bottom:15px;
    border-radius:50%;
    border:3px solid transparent;
    border-top-color:#f9c922;
    -webkit-animation:spin 1.5s linear infinite;
    animation:spin 1.5s linear infinite
}
@-webkit-keyframes spin{
    0%{
        -webkit-transform:rotate(0deg);
        -ms-transform:rotate(0deg);
        transform:rotate(0deg)
    }
    to{
        -webkit-transform:rotate(1turn);
        -ms-transform:rotate(1turn);
        transform:rotate(1turn)
    }
}
#loader-wrapper .loader-section{
    position:fixed;
    top:0;
    width:50%;
    height:100%;
    background:rgba(34,34,34,.72);
    z-index:10000001
}
#loader-wrapper .loader-section.section-left{
    left:0
}
#loader-wrapper .loader-section.section-right{
    right:0
}
.loaded #loader-wrapper .loader-section.section-left{
    -webkit-transform:translateX(-100%);
    -ms-transform:translateX(-100%);
    transform:translateX(-100%)
}
.loaded #loader-wrapper .loader-section.section-left,.loaded #loader-wrapper .loader-section.section-right{
    -webkit-transition:all .7s cubic-bezier(.645,.045,.355,1) .3s;
    transition:all .7s cubic-bezier(.645,.045,.355,1) .3s
}
.loaded #loader-wrapper .loader-section.section-right{
    -webkit-transform:translateX(100%);
    -ms-transform:translateX(100%);
    transform:translateX(100%)
}
.loaded #loader{
    opacity:0;
    -webkit-transition:all .3s ease-out;
    transition:all .3s ease-out
}
.loaded #loader-wrapper{
    visibility:hidden;
    -webkit-transform:translateY(-100%);
    -ms-transform:translateY(-100%);
    transform:translateY(-100%);
    -webkit-transition:all .3s ease-out 1s;
    transition:all .3s ease-out 1s
}
.loading-middle{
    background-image:url(assets/css/images/loading.gif);
    background-size:15%;
    background-repeat:no-repeat;
    background-position:50% 50%;
}
.loading-left{
    background-position:10% 53%;
    padding-left:33px
}
.loading-left,.loading-right{
    background-image:url(assets/css/images/loading.gif);
    background-size:10%;
    background-repeat:no-repeat;
}
.loading-right{
    background-position:91% 53%;
    padding-right:33px
}

/* Language Selection */
.ticker-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    background: white;
}

@media (max-width: 768px) {
    .ticker-group {
        grid-template-columns: repeat(1, 1fr);
    }
}
  
.ticker {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: #ccd6d6;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.2s;
    text-wrap: auto;
    overflow-wrap: break-word;
    text-wrap-style: pretty;
    min-width: 250px;
    font-size: 19px;
}

.ticker input[type="checkbox"] {
    width: auto;
    height: auto;
    margin: 0;
}

.ticker.selected {
    background: #d11332;
    color: white;
}

.ticker:hover {
    background: #4f4f4f;
    color: white;
}

.ticker input {
    width: 14px !important;
    text-align: left;
    margin-top: 6px;
    position: relative;
    top: 1px;
    margin-right: 10px !important;
    height: auto !important;
}

.ticker i {
    margin-right: 8px;
}


/* Header Styles */
.account-page .form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0px;
    z-index: 1000;
    top: 0px;
    border-bottom: 2px solid #DDD;
  }
  
  .account-page .form-header .title {
    text-align: center;
    font-weight: bolder;
    font-size: 20px;
    color: white;
    padding: 8px 10px;
    box-sizing: border-box;
    border-radius: 0;
    width: 200px;
    margin-right: -3px;
    color: black;
  }
  