/*=================================================
Class Definitions
=================================================*/
.sb {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -403px;
    margin-top: -150px;
    width: auto;
    height: auto;
    background: white;
    padding: 0px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.5);
    -moz-box-shadow: 0 2px 12px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0 2px 12px rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
}

.sb h2 {
    margin-top: 0;
    font-size: 22px;
    padding-bottom: 2px;
}
.sb .form-alert p.msgalert {
    font-size: 17px;
    margin: 0px;
    background: url("/images/ico_alertmail.png") no-repeat 0 0 transparent;
    padding: 10px 0 50px 148px;
    height: 100px;
}
.sb .form-alert p {
    margin: 0;
}

.sb .form-alert p span {
    font-size: 13px;
    font-weight: bold;
    line-height: 25px;
    margin-top: 10px;;
}

.sb .form-alert {
    padding: 15px 30px 30px 30px;
    color: #333333;
}

.sb .form-alert form#form_alertmail .critr{
    display:block;
    max-width: 600px;
    text-align: left !important;
}
.sb .form-alert form .critr span{
    display: inline-block;
    background: #efefef;
    font-size: 14px;
    padding: 5px;
    margin: 3px;
}

.sb form#form_alertmail  {
    text-align: center;
}
.sb form input[type='text'] {
    margin: 10px 0 0 0;
    height: 40px;
    border: 1px solid #ccc;
    line-height: 40px;
    padding:0 0 0 10px;
    font-size: 14px;
    width: 100%;
    color:#000;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin-bottom: 15px;
}
.sb form input[type='button'], .sb .form-alert a.btcreer, .lp_thxalertmail .form-alert a.btcreer{
    display: inline-block;
    margin:10px;
    height:40px;
    line-height: 40px;
    font-size: 14px;
    text-transform: uppercase;
    border: none;
    background: #980100;
    color: white;
    width: 30%;
    padding: 0 15px;
    text-align: center;
    margin: 15px 0;
    text-decoration: none;
}
.lp_thxalertmail .form-alert a.btcreer {
    width: 50%;
}
.sb .form-alert a.btcreer {
    width: auto !important;
}

.sb form input[type='button']:hover, .sb .form-alert a.btcreer:hover, .lp_thxalertmail .form-alert a.btcreer:hover {
    background:#E67300;
    transition: background 300ms ease-out 0s;
    cursor: pointer;
}

.sb .sb-close-btn {
    position: absolute;
    right: 12px;
    top: 8px;
}
.sb .form-alert p.cgu {
    text-align: center;
    font-size: 11px;
}
.sb .form-alert p.cgu a{
    text-decoration: none;
    color: #448ccb;
}

.sb.sb-withoverlay {
    position: absolute;
    top: 200px;
    left: 50%;
    margin-left: -250px;
}
.sb-open.sb-open-with-overlay {
    overflow: hidden;
}
.sb-open .sb-overlay {
    opacity: 1;
}
.sb-open .sb {
    opacity: 1;
}
.sb-overlay {
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    overflow: auto;
}
.sb-close-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
[class^="sb-animation-"], [class*=" sb-animation-"] {
    -webkit-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    -o-animation-duration: 500ms;
    animation-duration: 500ms;
}
.sb-animation-flyInRight {
    -webkit-animation-name: flyInRight;
    -moz-animation-name: flyInRight;
    -o-animation-name: flyInRight;
    animation-name: flyInRight;
}
.sb-animation-flyOutRight {
    -webkit-animation-name: flyOutRight;
    -moz-animation-name: flyOutRight;
    -o-animation-name: flyOutRight;
    animation-name: flyOutRight;
}
.sb-animation-flyInLeft {
    -webkit-animation-name: flyInLeft;
    -moz-animation-name: flyInLeft;
    -o-animation-name: flyInLeft;
    animation-name: flyInLeft;
}
.sb-animation-flyOutLeft {
    -webkit-animation-name: flyOutLeft;
    -moz-animation-name: flyOutLeft;
    -o-animation-name: flyOutLeft;
    animation-name: flyOutLeft;
}
.sb-animation-flyInUp {
    -webkit-animation-name: flyInUp;
    -moz-animation-name: flyInUp;
    -o-animation-name: flyInUp;
    animation-name: flyInUp;
}
.sb-animation-flyOutUp {
    -webkit-animation-name: flyOutUp;
    -moz-animation-name: flyOutUp;
    -o-animation-name: flyOutUp;
    animation-name: flyOutUp;
}
.sb-animation-flyInDown {
    -webkit-animation-name: flyInDown;
    -moz-animation-name: flyInDown;
    -o-animation-name: flyInDown;
    animation-name: flyInDown;
}
.sb-animation-flyOutDown {
    -webkit-animation-name: flyOutDown;
    -moz-animation-name: flyOutDown;
    -o-animation-name: flyOutDown;
    animation-name: flyOutDown;
}
/*=================================================
Animation Library
=================================================*/
@-webkit-keyframes flyInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(3000px);
    }
    100% {
        -webkit-transform: translateX(0);
    }
}
@-moz-keyframes flyInRight {
    0% {
        opacity: 0;
        -moz-transform: translateX(3000px);
    }
    100% {
        -moz-transform: translateX(0);
    }
}
@-o-keyframes flyInRight {
    0% {
        opacity: 0;
        -o-transform: translateX(3000px);
    }
    100% {
        -o-transform: translateX(0);
    }
}
@keyframes flyInRight {
    0% {
        opacity: 0;
        transform: translateX(3000px);
    }
    100% {
        transform: translateX(0);
    }
}
@-webkit-keyframes flyOutRight {
    0% {
        -webkit-transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(3000px);
    }
}
@-moz-keyframes flyOutRight {
    0% {
        -moz-transform: translateX(0);
    }
    100% {
        opacity: 0;
        -moz-transform: translateX(3000px);
    }
}
@-o-keyframes flyOutRight {
    0% {
        -o-transform: translateX(0);
    }
    100% {
        opacity: 0;
        -o-transform: translateX(3000px);
    }
}
@keyframes flyOutRight {
    0% {
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(3000px);
    }
}
@-webkit-keyframes flyInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-3000px);
    }
    100% {
        -webkit-transform: translateX(0);
    }
}
@-moz-keyframes flyInLeft {
    0% {
        opacity: 0;
        -moz-transform: translateX(-3000px);
    }
    100% {
        -moz-transform: translateX(0);
    }
}
@-o-keyframes flyInLeft {
    0% {
        opacity: 0;
        -o-transform: translateX(-3000px);
    }
    100% {
        -o-transform: translateX(0);
    }
}
@keyframes flyInLeft {
    0% {
        opacity: 0;
        transform: translateX(-3000px);
    }
    100% {
        transform: translateX(0);
    }
}
@-webkit-keyframes flyOutLeft {
    0% {
        -webkit-transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-3000px);
    }
}
@-moz-keyframes flyOutLeft {
    0% {
        -moz-transform: translateX(0);
    }
    100% {
        opacity: 0;
        -moz-transform: translateX(-3000px);
    }
}
@-o-keyframes flyOutLeft {
    0% {
        -o-transform: translateX(0);
    }
    100% {
        opacity: 0;
        -o-transform: translateX(-3000px);
    }
}
@keyframes flyOutLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-3000px);
    }
}
@-webkit-keyframes flyInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}
@-moz-keyframes flyInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(-2000px);
    }
    100% {
        -moz-transform: translateY(0);
    }
}
@-o-keyframes flyInUp {
    0% {
        opacity: 0;
        -o-transform: translateY(-2000px);
    }
    100% {
        -o-transform: translateY(0);
    }
}
@keyframes flyInUp {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }
    100% {
        transform: translateY(0);
    }
}
@-webkit-keyframes flyOutUp {
    0% {
        -webkit-transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }
}
@-moz-keyframes flyOutUp {
    0% {
        -moz-transform: translateY(0);
    }
    100% {
        opacity: 0;
        -moz-transform: translateY(-2000px);
    }
}
@-o-keyframes flyOutUp {
    0% {
        -o-transform: translateY(0);
    }
    100% {
        opacity: 0;
        -o-transform: translateY(-2000px);
    }
}
@keyframes flyOutUp {
    0% {
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}
@-webkit-keyframes flyInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}
@-moz-keyframes flyInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(2000px);
    }
    100% {
        -moz-transform: translateY(0);
    }
}
@-o-keyframes flyInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(2000px);
    }
    100% {
        -o-transform: translateY(0);
    }
}
@keyframes flyInDown {
    0% {
        opacity: 0;
        transform: translateY(2000px);
    }
    100% {
        transform: translateY(0);
    }
}
@-webkit-keyframes flyOutDown {
    0% {
        -webkit-transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
    }
}
@-moz-keyframes flyOutDown {
    0% {
        -moz-transform: translateY(0);
    }
    100% {
        opacity: 0;
        -moz-transform: translateY(2000px);
    }
}
@-o-keyframes flyOutDown {
    0% {
        -o-transform: translateY(0);
    }
    100% {
        opacity: 0;
        -o-transform: translateY(2000px);
    }
}
@keyframes flyOutDown {
    0% {
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(2000px);
    }
}
