
/*=====================================================================*
 *  BLUMEI.ORG                                                         *
 *  Mathieu Dellon                                                     *
 *                                                                     *
 *  blumeibox.css
 *  all css for the box
 *=====================================================================*
 *                                                                     *
 *  >>> v0.1: june 17, 2021
 *                                                                     *
 *=====================================================================*/



.bb-bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -10000;
    width: 100%;
    height: 110%;
    background-color: #000000;
    opacity: 0;
}
.bb-box-container {
    position: fixed;
    z-index: 10001;
    min-width: 400px;
    min-height: 80px;
    background-color: #fff;
    border-left: 1px solid #494D59;
    border-right: 2px solid #7C8397;
    border-bottom: 2px solid #7C8397;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
}

.bb-box-title {
    margin-bottom: 8px;
    padding: 15px 10px;
    color: #ffffff;
    font-family: "Leon";
    font-size: 1.4em;
/*
    font-weight: bold;
*/
    font-variant: small-caps;
    text-align: center;
    border-bottom: 1px solid #535A73;
    background-image: url("../images/doublegradient_black.png");
}
.bb-box-content {
    padding: 10px 30px;
    font-family: Cicle;
    font-size: 1em;
}
.bb-box-inputs {
    width: 92%;
    margin: 0 auto;
    overflow: hidden;
}
textarea.bb-input {
    width: 98%;
    resize: none;
    background-color: #EDEDF7;
    border-top: 1px solid #3D4355;
    border-left: 1px solid #3D4355;
    border-right: 2px solid #3D4355;
    border-bottom: 2px solid #3D4355;
}
.bb-box-inputs {

}
.bb-box-errors {

}
.bb-box-actions {
    padding: 10px 25px;
    text-align: right;
}
input.bb-btn {
    margin-left: 10px;
    padding: 5px 10px 3px 10px;
    color: #ffffff;
    font-size: 0.9em;
    font-family: "Leon", "Cicle";
    font-variant: small-caps;
    background-color: #4683B2;
    border-top: 1px solid #B9B9B9;
    border-left: 1px solid #B9B9B9;
    border-bottom: 2px solid #B9B9B9;
    border-right: 2px solid #B9B9B9;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px
}
input.bb-btn:hover {
    color: #000;
    cursor: pointer;
    background-color: #F2F2F2;
}

.bb-box-container .quote {
	margin-top: 7px;
	margin-left: 15px;
	padding: 7px;
	font-style: italic;
	border-left: 1px solid #cccccc;
}

