/* Global */
h1 {
    font-size: 14px;
    font-weight: bold;
    color: black;
}

.subscription-container {
    height: 100%;
    width: 100%;
    display: block;
    font-family: calibri,sans-serif,arial;
    background: white;
}

.panel-container {
    padding: 20px;
}

.no-padding {
    padding: 0;
}

.back-btn {
    text-align: center;
    cursor: pointer;
    position: relative;
    margin-top: -20px;
    margin-left: -20px;
    width: 100%;
    display: block;
    padding: 10px 20px 0 20px;
    height: 35px;
    background: #f0f0f0 url(../../App_Themes/BlueIdeaTheme/subscription/images/back.png) no-repeat 20px 10px;
    margin-bottom: 20px;
}

    .back-btn p {
        font-size: 17px;
        color: #828282;
        padding-top: -45px;
        height: 17px;
        position: relative;
    }

p.description {
    font-size: 19px;
    line-height: 22px;
    margin-bottom: 20px;
    color: #000000
}

.btn {
    width: 100%;
    cursor: pointer;
    border: 0px solid;
    display: block;
    padding: 15px;
    text-align: center;
    background: #414141;
    color: white;
    font-size: 17px;
    -webkit-appearance: none;
}

#ajax-loader {
    width: 100%;
    cursor: pointer;
    border: 0px solid;
    display: block;
    padding: 18px 0 17px 0;
    text-align: center;
    background: #6a6a6a;
    color: white;
    font-size: 17px;
}

.btn:hover {
    background: #6a6a6a;
    color: white;
}

.btn-green {
    background: #40ad43
}

    .btn-green:hover {
        background: #7bbc7d
    }

.scroll-list {
    height: 200px;
    overflow-y: scroll;
    margin-bottom: 20px;
    border-top: 1px solid #f0f0f0;
    border-left: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

#masterBack {
    text-align: center;
    cursor: pointer;
    position: relative;
    margin-left: -20px;
    width: 100%;
    display: block;
    padding: 10px 20px 0 20px;
    height: 35px;
    background: #f0f0f0;
    font-size: 18px;
    background-image: none;
    padding-top: 14px
}

.endSession, div.endSession {
    height: 22px;
    width: 26px;
    color: #414141;
    border: 0px solid #414141;
    text-align: center;
    position: absolute;
    top: 10px;
    right: 40px;
    font-size: 20px;
    padding-top: 4px;
    z-index: 999
}

/* Initital buttons */
.initial-btn {
    height: 100px;
    width: 100%;
    text-align: center;
    display: block;
    padding-top: 145px;
    cursor: pointer
}

    .initial-btn p {
        margin: auto;
        width: auto;
        font-size: 21px;
    }

.subscribe {
    background: url(../../App_Themes/BlueIdeaTheme/subscription/images/subscribe.png) no-repeat center 65px;
}

    .subscribe:hover {
        background: #f0f0f0 url(../../App_Themes/BlueIdeaTheme/subscription/images/subscribe-green.png) no-repeat center 65px;
    }

.cancel {
    background: url(../../App_Themes/BlueIdeaTheme/subscription/images/cancel.png) no-repeat center 65px;
}

    .cancel:hover {
        background: #f0f0f0 url(../../App_Themes/BlueIdeaTheme/subscription/images/cancel-red.png) no-repeat center 65px;
    }

/* Confirmation */
.confirmation-icon {
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

/* Forms */
ul.form-fields {
}

    ul.form-fields li {
        margin-bottom: 20px;
    }

        ul.form-fields li label {
            font-size: 19px;
        }

        ul.form-fields li p {
            display: block;
            padding: 10px;
            border: 1px solid #414141;
        }

            ul.form-fields li p input, ul.form-fields li p select, ul.form-fields li p textarea {
                width: 100%;
                border: 0px solid #f0f0f0;
            }

            ul.form-fields li p input, ul.form-fields li p textarea {
                padding-top: 2px;
            }

            ul.form-fields li p textarea {
                height: 48px
            }

/* Table */
.table-adress-form {
    width: 100%;
}

table#GridViewAdressList {
    width: 100%;
}

    table#GridViewAdressList tr td {
        background: #f0f0f0;
        padding: 8px 3px;
        text-align: left;
        overflow: hidden;
        vertical-align: middle;
    }

        table#GridViewAdressList tr td a {
            background: #414141;
            padding: 8px;
            display: block;
            text-align: center;
            overflow: hidden;
            vertical-align: middle;
            min-width: 35px;
        }

            table#GridViewAdressList tr td a:hover {
                background: #6a6a6a;
                cursor: pointer;
            }

        table#GridViewAdressList tr td:first-child {
            display: none;
        }

        table#GridViewAdressList tr td a {
            color: white;
        }

    table#GridViewAdressList tr {
        border-bottom: 5px solid white;
    }

/* NOTIFICATION MESSAGES */

#StatusContainer {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    float: left;
    width: 100%;
    margin-top: 45px;
    margin-bottom: 10px;
    height: 51px;
}

.notification {
    overflow: hidden;
    z-index: 1;
    display: block;
}

    .notification p {
        margin: 13px 10px 0px 24px;
        font-size: 16px;
        color: white;
    }

    .notification a.close {
        position: absolute;
        width: 14px;
        height: 14px;
        top: 7px;
        right: 5px;
        background-image: url(https://beredskabsalarm.dk/images/close.png);
        background-repeat: no-repeat;
    }

        .notification a.close:hover {
            cursor: pointer;
        }

.msgalert {
    background: #dfd56a;
}

.msginfo {
    background: #4b8bbd;
}

.msgsuccess {
    background: #67bf78;
}

.msgerror {
    background: #cb2020;
}

@media only screen and (max-width: 959px) {
    #masterBack {
        font-size: 14px;
    }

    #LabelCode {
        display: none
    }

    #LabelCode2 {
        display: inline-block !important
    }
}