/*!
 * Bootoast CSS
 * @author odahcam
 */
.alert-danger {
    color: #fff;
    background-color: #ed1b24;
    border-color: #f5c6cb;
}

.alert-success {
    color: #fff;
    background-color: #3c763d;
    border-color: #d6e9c6;
}

.alert-dismissable,
.alert-dismissible {
    padding-right: 35px;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    background: transparent;
    border: none;
    color: #fff;
    opacity: 1;
    cursor: pointer;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.bootoast {
    opacity: 0;
    filter: alpha(opacity=0)
}

.bootoast>.glyphicon {
    display: inline-block;
    /* yeah, this float is a "hack" */
    float: left;
    font-size: 20px;
    margin-right: 14px;
}

.bootoast>.bootoast-alert-container {
    display: block;
    max-width: 100%;
    overflow: auto;
}

.bootoast>.bootoast-alert-container>.bootoast-alert-content {
    display: table;
    width: 100%;
    height: 100%
}

.bootoast.alert-default {
    background: #eee;
}

.bootoast>.progress.progress-bottom {
    width: auto;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
}

.bootoast>.progress.progress-bottom {
    margin-bottom: -.75rem;
}

.bootoast>.progress.progress-top {
    margin-top: -.75rem;
}

.bootoast>.progress.progress-background {
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .35;
}

.bootoast-container {
    position: fixed;
    left: 20px;
    right: 20px;
    top: initial;
    bottom: initial;
    width: 390px;
    max-width: 95%;
    z-index: 999999
}

.bootoast-container.top {
    top: 20px
}

.bootoast-container.bottom {
    bottom: 20px
}

.bootoast-container.right {
    left: initial
}

.bootoast-container.left {
    right: initial
}

.bootoast-container.center {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%)
}

#confirm_modal a {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}

#confirm_modal a:hover {
    opacity: 1;
}

#confirm_modal .cancelbtn,
#confirm_modal .deletebtn {
    float: left;
    width: 50%;
    font-weight: 100 !important;
    text-shadow: none !important;
    font-size: inherit !important;
    line-height: inherit !important;
}

#confirm_modal .cancelbtn {
    background-color: #ccc;
    color: black;
}

#confirm_modal .deletebtn {
    background-color: #f44336;
}

@media screen and (max-width: 300px) {

    #confirm_modal .cancelbtn,
    #confirm_modal .deletebtn {
        width: 100%;
    }
}

.required {
    color: red;
}