body {
    font-family: 'Myriad Pro', 'Helvetica', sans-serif;
}

header {
    background-color: #25af9b;
    padding: 15px;
}
.panel-heading{
    width: 100%;
}

/* CSS for Credit Card Payment form */
.credit-card-box .panel-title {
    display: inline;
    font-weight: bold;
}

.credit-card-box .form-control.error {
    border-color: red;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 0, 0, 0.6);
}

.credit-card-box label.error {
    font-weight: bold;
    color: red;
    padding: 2px 8px;
    margin-top: 2px;
}

.credit-card-box .payment-errors {
    font-weight: bold;
    color: red;
    padding: 2px 8px;
    margin-top: 2px;
}

.credit-card-box label {
    display: block;
}

/* The old "center div vertically" hack */
.credit-card-box .display-table {
    display: table;
}

.credit-card-box .display-tr {
    display: table-row;
}

.credit-card-box .display-td {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
}

/* Just looks nicer */
.credit-card-box .panel-heading img {
    min-width: 180px;
}

h2 {
    font: 33px sans-serif;
    margin-top: 30px;
    text-align: center;
    text-transform: uppercase;
}
h2.background {
    position: relative;
    z-index: 1;
}
h2.background:before {
    border-top: 2px solid #dfdfdf;
    content: "";
    margin: 0 auto;
    /* this centers the line to the full width specified */
    position: absolute;
    /* positioning must be absolute here, and relative positioning must be applied to the parent */
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 95%;
    z-index: -1;
}
h2.background span {
    /* to hide the lines from behind the text, you have to set the background color the same as the container */
    background: #fff;
    color:#25af9b;
    padding: 0 20px;
    font-size: 25px;
    font-weight: bold;
}
h2.double:before {
    /* this is just to undo the :before styling from above */
    border-top: none;
}
h2.double:after {
    border-bottom: 1px solid #c0c0c0;
    content: "";
    margin: 0 auto;
    /* this centers the line to the full width specified */
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 95%;
    z-index: -1;
}

h1.title-primary {
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 700;
    color: #eab269;
}

.hebergement, .maintenance {
    color: white;
}
.hebergement p, .maintenance p {
    padding: 0;
    margin: 0;
}

.hebergement .h-desc, .maintenance .m-desc {
    padding: 40px;
    margin-top: 30px;
    text-align: center;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hebergement .h-desc {
    background-color: #25af9b;
}

.hebergement .h-title, .maintenance .m-title {
    margin-bottom: 15px;
    font-size:18px;
}

.maintenance .m-desc {
    background-color: #25af9b;
}

#payment-form {
    margin-top: 40px;
}

.mt-15 {
    margin-top: 15px;
}
.mt-30 {
    margin-top: 30px;
}
.inactive {
    background-color: #ccc !important;
}
.textactive{
    font-weight: bold;
    color: #25af9b;
}
.click{
    cursor: pointer;
}

.col-centered{
    float: none;
    margin: 0 auto;
}
