/*
Theme Name: Alert Ready
Theme URI: 
Author: Werner Jakobsmeier
Author URI: https://werner.jakobsmeier.com
Description: 
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alert-ready
Tags: 
*/

/*
// Small devices (landscape phones, 544px and up)
@media (min-width: 544px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
body {
	background: #efebe9;
	color: #616161;
}
*/

body {
    background-color: #ECEFF1;
    color: #616161;
    position: relative;
}

header {}

h2 {
    margin-top: 30px;
    margin-bottom: 20px;
}

.navbar {
    background: none;
    padding: 1em;
}

@media (min-width: 992px) {
    .navbar {
        padding: 0 1em;
    }
}

.navbar--isactive {
    background: #fff;
}

.navbar-toggler {
    border-color: #000 !important;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' x='0px' y='0px' width='30px' height='30px' viewBox='0 0 30 30' enable-background='new 0 0 30 30' xml:space='preserve'><rect width='30' height='6' fill='black'/><rect y='24' width='30' height='6' fill='black'/><rect y='12' width='30' height='6' fill='black'/></svg>") !important;
}

.navbar--isactive .navbar-toggler {
    border-color: #000 !important;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' x='0px' y='0px' width='30px' height='30px' viewBox='0 0 30 30' enable-background='new 0 0 30 30' xml:space='preserve'><rect width='30' height='6' fill='black'/><rect y='24' width='30' height='6' fill='black'/><rect y='12' width='30' height='6' fill='black'/></svg>") !important;
}

.navbar-brand {
    width: 50%;
}

@media (min-width: 768px) {
    .navbar-brand {
        width: 25%;
    }
}

.navbar-brand img {
    max-width: 75%;
}

nav {}

.navbar-nav {
    list-style: none;
}

.nav-item {
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    color: #616161;
}

.navbar--isactive .nav-item {
    color: #616161 !important;
}

@media (min-width: 992px) {
    .nav-item {
        margin-top: 30px;
    }
}

.nav-link {
    color: #616161 !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    display: inline-block !important;
}

.nav-link:hover {
    color: #c5161c !important;
}

.navbar--isactive .nav-link {
    color: #616161 !important;
}

.navbar--isactive .nav-link.active,
.navbar--isactive .nav-link:hover {
    border-bottom: 1px solid #c5161c;
}

h3 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.btn {
    transition: all 0.25s linear;
    padding: 10px 20px;
}

.btn--white {
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
}

.btn--white:hover {
    background: #c8171d;
    color: #fff;
}

.btn--black {
    border: 1px solid #616161;
    border-radius: 5px;
    color: #616161;
    font-size: 14px;
}

.btn--black:hover {
    border: 1px solid #c5161c;
    color: #c5161c;
}

.btn img {
    margin-right: 10px
}

.btn--centered {
    margin: 0 auto;
    display: block;
}

.btn__text {
    position: relative;
    top: 1px;
}

.intro {
    text-align: center;
    margin: 100px 0;
}

.intro img {
    max-width: 250px;
    margin-top: 50px;
}

.intro .btn {
    margin-top: 10px;
}

.warning {
    background: #F26522;
    padding: 35px 30px;
    margin-top: -30px;
    color: #fff;
    font-size: 20px;
}

.container {
    width: 100%;
}

.container--content {
    background: #fff;
    border-bottom: 6px solid #CFD8DC;
    border-right: 3px solid #CFD8DC;
    padding-bottom: 25px;
    padding-top: 25px;
}

.types {
    list-style: none;
    margin: 0;
    padding: 0;
}

.type {
    float: left;
    width: 25%;
    height: 70px;
    position: relative;
    margin-bottom: 30px;
}

.type.isActive {}

@media (min-width: 768px) {
    .type {
        height: 80px;
        width: 12.5%;
        height: 100px;
    }
    .type.isActive {
        box-shadow: none;
    }
    .type.isActive:after {
        position: absolute;
        display: block;
        content: "";
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 10px 10px 10px;
        border-color: transparent transparent #546E7A transparent;
    }
}

.type__trigger-parent {
    display: block;
    height: 100%;
}

.type__icon {
    max-width: 60px;
    display: block;
    margin: 0 auto;
    opacity: 0.5;
}

.isActive .type__icon {
    opacity: 1;
}

@media (min-width: 768px) {
    .type__icon {
        max-width: 70%;
        max-height: 100px;
        display: block;
        margin: 0 auto;
    }
}

.type__title {
    text-align: center;
    position: absolute;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    font-size: 12px;
}

@media (min-width: 768px) {
    .type__title {
        bottom: -5px;
    }
}

.container--types-explanations {
    position: relative;
    min-height: 200px;
    overflow: hidden;
}

.types-explanations {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #546E7A;
    overflow-x: scroll;
    white-space: nowrap;
    position: absolute;
    width: 100%;
}

.types-explanation {
    width: 100%;
    color: #fff;
    padding: 25px;
    display: inline-block;
    white-space: normal;
    vertical-align: top;
}

@media (min-width: 768px) {
    .types-explanation {
        width: 25%;
    }
    .types-explanations--shifted25 .types-explanation:first-child {
        margin-left: 25%;
    }
    .types-explanations--shifted375 .types-explanation:first-child {
        margin-left: 37.5%;
    }
}

.roles {
    list-style: none;
    margin: 0;
    padding: 0;
}

.role {
    float: left;
    width: 100%;
    padding: 0 2.5%;
    position: relative;
    margin-top: 25px;
}

@media (min-width: 768px) {
    .role {
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .role {
        width: 25%;
    }
    .role:after {
        display: block;
        content: "";
        background: url(./assets/images/Proof-Arrow@2x.png) no-repeat center;
        width: 50px;
        height: 50px;
        position: absolute;
        top: 20px;
        right: -5px;
        background-size: 100%;
    }
    .role:last-child:after {
        display: none;
    }
}

.role__icon {
    margin: 0 auto;
    display: block;
    width: 100px;
    height: auto;
}

.role__title {
    text-align: center;
}

.role ul {
    padding-left: 5%;
}

.select-faq {
    margin: 0 auto 20px;
    display: block;
    max-width: 100%;
}

.container--faq-answers {
    position: relative;
    padding: 25px;
    background: #546E7A;
    height: 0;
    padding: 0;
}

.container--faq-answers:after {
    position: absolute;
    display: block;
    content: "";
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #546E7A transparent;
    opacity: 0;
}

.container--faq-answers.active:after {
    opacity: 1;
}

.faq-answer {
    position: absolute;
    color: #fff;
    width: calc(100% - 50px);
    display: none;
}

.faq-answer h4 {
    margin-bottom: 20px;
}

/* MAP SELECT STYLES */

.select-map {
    margin: 0 auto 20px;
    display: block;
    max-width: 100%;
}

.container--map-regions {
    position: relative;
    padding: 25px;
    background: #546E7A;
    height: 0;
    padding: 0;
    overflow-x: scroll;
    /*overflow: hidden;*/
}

.container--map-regions:after {
    position: absolute;
    display: block;
    content: "";
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #546E7A transparent;
    opacity: 0;
}

.container--map-regions.active:after {
    opacity: 1;
}

.map-region {
    position: absolute;
    color: #fff;
    width: calc(100% - 50px);
    display: none;
}

.map-region h4 {
    margin-bottom: 20px;
}

/* MAP SELECT STYLES END*/

.deemphasized {
    font-size: 0.75em;
    opacity: 0.75;
}

.bg--widthFull {
    width: 100%;
}

img[usemap] {
    border: none;
    height: auto;
    max-width: calc(100% - 30px);
    width: auto;
}

.maps {
    position: absolute;
}

.maps+.maps {
    opacity: 0;
}

.container--footer {
    margin-top: 50px;
    background: #263238;
    color: #fff;
}

.form-group--half {
    width: 50%;
    float: left;
    margin-bottom: 1rem !important;
}

.form-control--full {
    width: 100% !important;
}

textarea {
    width: 100%;
    height: 100px;
    resize: none;
}

.file-upload {
    position: relative;
    overflow: hidden;
    margin: 10px;
}

.file-upload input.upload {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

.submit {
    background: transparent;
}

footer a {
    color: #fff;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030
}

#waveform {
    height: 100px !important;
    position: relative;
    top: 25px;
    overflow: hidden;
}

wave {
    height: 200px !important;
    bottom: 100px !important;
}

#types,
#roles,
#schedule,
#faq,
#alerts,
#contact {
    padding-top: 80px;
}

@media (max-width: 1199px) {
    .clearfix-lg {
        clear: both;
    }
}

@media (min-width: 992px) {
    .radio {
        float: left;
        margin-right: 10px;
    }
}

.radio input {
    margin-right: 5px;
}

/* Accordion  */

/* Style the buttons that are used to open and close the accordion panel */

.accordion-container {
    width: 100%;
    margin: 30px auto;
}

.accordion {
    background-color: #263238;
    color: #FFF;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    position: relative;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */

.accordion-container .active,
.accordion:hover {
    background-color: #546E7A;
}

/* Style the accordion panel. Note: hidden by default */

.panel {
    padding: 10px 18px;
    background-color: white;
    display: none;
    overflow: hidden;
    text-align: left;
}

.accordion:after {
    /*content: '\02795'; !* Unicode character for "plus" sign (+) *!*/
    content: '+';
    font-size: 20px;
    color: #fff;
    float: right;
    position: absolute;
    right: 20px;
    top: 10px;
}

.category-accordion .active:after {
    content: "-" !important;
    /* Unicode character for "minus" sign (-) */
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.faq-search input {
    width: 30%;
    margin-bottom: 20px;
}

/* Category Accordion */

/*.category-accordion > .accordion {*/

/*background-color: #E9041D;*/

/*}*/

.category-accordion>.accordion {
    background-color: #E9041D;
}

.category-accordion>.accordion:hover,
.category-accordion>.active .accordion {
    background-color: #FF8F91;
}

.category-accordion .accordion:after {
    /*content: '\02795'; !* Unicode character for "plus" sign (+) *!*/
    content: '+';
    font-size: 40px;
    color: #fff;
    float: right;
    position: absolute;
    right: 20px;
    top: -5px;
    font-weight: bold;
}

.category-accordion .panel>.accordion {
    background-color: #fff;
    color: #000;
}

.category-accordion .panel>.accordion:after {
    /*content: '\02795'; !* Unicode character for "plus" sign (+) *!*/
    content: '+';
    font-size: 40px;
    color: #000;
    float: right;
    position: absolute;
    right: 20px;
    top: -5px;
    font-weight: bold;
}

/* Map Dropdown and Table Styles*/

.map-table th:nth-of-type(1) {
    background-color: #FFBDBD;
    color: #000;
}

.map-table th:nth-of-type(2) {
    background-color: #B7B7B7;
    color: #000;
}

.map-table th:nth-of-type(3) {
    background-color: #D7D7D7;
    color: #000;
}

.map-table th:nth-of-type(4) {
    background-color: #B7B7B7;
    color: #000;
}

/* Odd rows */

.map-table tr:nth-of-type(odd) td:nth-of-type(even) {
    background-color: #EBEBEB;
    color: #000;
}

.map-table tr:nth-of-type(odd) td:nth-of-type(odd) {
    background-color: #E1E1E1;
    color: #000;
}

/* Even rows */

.map-table tr:nth-of-type(even) td:nth-of-type(even) {
    background-color: #E1E1E1;
    color: #000;
}

.map-table tr:nth-of-type(even) td:nth-of-type(odd) {
    background-color: #EBEBEB;
    color: #000;
}

/* First Col */

.map-table tr:nth-of-type(even) td:nth-of-type(1) {
    background-color: #FFDADA;
    color: #000;
}

.map-table tr:nth-of-type(odd) td:nth-of-type(1) {
    background-color: #FFEFEF;
    color: #000;
}

.map-table th,
.map-table td {
    border-top: 0;
}

.map-region {
    z-index: 5;
}

.map-region h2 {
    color: #E81118;
    text-align: center;
    text-transform: uppercase;
    padding-top: 25px;
}

@media screen and (max-width: 768px) {
    .map-region h2 {
        margin-top: 70px;
    }
}

/* Alerts Broadcast Select*/

.alerts-dropdown {
    background: #E81118;
    padding: 12px 15px;
}

.select-map {
    border: 0;
    background: #fff;
    border-style: none;
}

.alerts-dropdown .input-group-addon {
    background: pink;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 0;
    border: 0;
    padding: 0 25px;
}

.alerts-dropdown .input-group {
    background: #fff;
}

.resized-region {
    width: calc(100% - 30px);
}

.resized-region p {
    /*background: #eceff1;*/
    background: #B7B7B7;
    color: #000;
    padding: 15px;
    text-align: center;
    font-size: 18px;
}

.container--map-regions {
    margin-bottom: 50px;
    background: #fff;
}

header {}

.navbar {
    background: #fff;
}

@media screen and (max-width: 991px) {
    header {}
}

.media-icon {
    display: inline-block;
}

.alerts-dropdown a {
    text-decoration: none;
    color: #000;
}

.wireless-td {
    background: #FF8F91 !important;
}