/* GIS TOAST */
.gis-toast {
    position: fixed;
    bottom: 40px;
    right: 20px;
    background-color: #2f972f;
    width: 250px;
    height: 40px;
    border: 1px solid white;
    opacity: 0;
    z-index: 99999;
}

.gis-toast i {
    display: block;
    width: 40px;
    height: 100%;
    float: left;
    text-align: center;
    color: white;
    font-size: 20px;
    line-height: 40px;
    vertical-align: middle;
}

.gis-toast span {
    display: table-cell;
    width: calc(100% - 40px);
    height: 38px;
    vertical-align: middle;
    color: white;
    font-size: 14px;
    text-align: center;
}

.gis-toast-info {
    position: fixed;
    bottom: 40px;
    right: 20px;
    background-color: #ff9400;
    width: 250px;
    height: 40px;
    border: 1px solid white;
    opacity: 0;
    z-index: 99999;
}

.gis-toast-info i {
    display: block;
    width: 40px;
    height: 100%;
    float: left;
    text-align: center;
    color: white;
    font-size: 20px;
    line-height: 40px;
    vertical-align: middle;
}

.gis-toast-info span {
    display: table-cell;
    width: calc(100% - 40px);
    height: 38px;
    vertical-align: middle;
    color: white;
    font-size: 14px;
    text-align: center;
}

.gis-toast-show {
    opacity: 1;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}

.gis-toast-hide {
    opacity: 0;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}

.gis-toast--info {
    background-color: #ff9400;
}