@charset "UTF-8";
.btn {
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    font-family: Frutiger,Arial,Sans serif;
    font-weight: normal;
    border: none;
    cursor: pointer;
    background-image: none;
    height: 45px;
    min-height: 40px;
    max-height: 60px;
    font-size: 16px;
    line-height: 17px;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-sizing: border-box;
}

.btn.contour {
    border: 2px solid transparent;
}

.btn-lg {
    min-height: 60px;
}

.btn-md {
    min-height: 50px;
}

.btn .btn-content {
    height: 100%;
    border-radius: 4px;
    padding-right: 15px;
    padding-left: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn .btn-content .txt {
    padding-right: 10px;
    padding-left: 10px;
}

/* effets au click */
.btn:active .btn-content, .btn.active .btn-content,
.btn:active:hover .btn-content, .btn.active:hover .btn-content {
    box-shadow: inset 0 2px 0 1px rgba(0, 0, 0, 0.2);
}

/* effets hover */
.btn:active, .btn.active,
.btn:active:hover, .btn.active:hover,
.btn:hover {
    color: #fff;
    box-shadow: inset 0 0 0 99999px rgba(0, 0, 0, 0.2);
}

/* Cas bouton activ├® */
.btn.activated .btn-content {
    box-shadow: inset 0 2px 0 1px rgba(0, 0, 0, 0.2);
}

.btn.activated {
    color: #fff;
    box-shadow: inset 0 0 0 99999px rgba(0, 0, 0, 0.2);
}

.btn.activated.contour .btn-content,
.btn.contour:active .btn-content, .btn.contour.active .btn-content,
.btn.contour:hover .btn-content, .btn.contour:focus .btn-content,
.btn.contour:active:hover .btn-content, .btn.contour.active:hover .btn-content,
.btn.contour:active:focus .btn-content, .btn.contour.active:focus .btn-content,
.btn.contour.focus:active .btn-content, .btn.contour.active.focus .btn-content {
    box-shadow: none;
}

/* disabled btn generic */
.btn.disabled, .btn[disabled],
fieldset[disabled] .btn,
.btn.disabled:hover, .btn[disabled]:hover,
fieldset[disabled] .btn:hover, .btn.disabled:focus,
.btn[disabled]:focus, fieldset[disabled] .btn:focus,
.btn.disabled.focus, .btn.focus[disabled],
fieldset[disabled] .btn.focus, .btn.disabled:active,
.btn[disabled]:active, fieldset[disabled] .btn:active,
.btn.disabled.active, .btn.active[disabled],
fieldset[disabled] .btn.active {
    color: #aaaaaa;
    background-color: #d8d8d8;
    cursor: not-allowed;
    box-shadow: none;
}

/**********************************************************************************/
/*********BLEU**********/
.btn-primary {
    color: #fff;
    background-color: #005bbb;
}

.btn-primary.contour {
    color: #005bbb;
    background-color: transparent;
    border: solid 2px #005bbb;
}

.btn-primary.contour.activated,
.btn-primary.contour:active, .btn-primary.contour.active,
.btn-primary.contour:hover,
.btn-primary.contour:active:hover, .btn-primary.contour.active:hover {
    color: #fff;
    background-color: #005bbb;
    box-shadow: none;
}

/**********************************************************************************/
/*********GRIS*********/
.btn-secondary {
    color: #fff;
    background-color: #666666;
}

.btn-secondary.contour {
    color: #666666;
    background-color: transparent;
    border: solid 2px #666666;
}

.btn-secondary.contour.activated,
.btn-secondary.contour:active, .btn-secondary.contour.active,
.btn-secondary.contour:hover,
.btn-secondary.contour:active:hover, .btn-secondary.contour.active:hover {
    color: #fff;
    background-color: #666666;
    box-shadow: none;
}

/**********************************************************************************/
/*********VERT*********/
.btn-success {
    color: #fff;
    background-color: #509e2f;
}

.btn-success.contour {
    color: #509e2f;
    background-color: transparent;
    border: solid 2px #509e2f;
}

.btn-success.contour.activated,
.btn-success.contour:active, .btn-success.contour.active,
.btn-success.contour:hover,
.btn-success.contour:active:hover, .btn-success.contour.active:hover {
    color: #fff;
    background-color: #509e2f;
    box-shadow: none;
}

/**********************************************************************************/
/*********VERT CLAIRE*********/
.btn-info {
    color: #fff;
    background-color: #c4d600;
}

.btn-info.contour {
    color: #c4d600;
    background-color: transparent;
    border: solid 2px #c4d600;
}

.btn-info.contour.activated,
.btn-info.contour:active, .btn-info.contour.active,
.btn-info.contour:hover,
.btn-info.contour:active:hover, .btn-info.contour.active:hover {
    color: #fff;
    background-color: #c4d600;
    box-shadow: none;
}

/**********************************************************************************/
/*********ORANGE CLAIR*********/
.btn-warning {
    color: #fff;
    background-color: #ffa02f;
}

.btn-warning.contour {
    color: #ffa02f;
    background-color: transparent;
    border: solid 2px #ffa02f;
}

.btn-warning.activated,
.btn-warning.contour:active, .btn-warning.contour.active,
.btn-warning.contour:hover,
.btn-warning.contour:active:hover, .btn-warning.contour.active:hover {
    color: #fff;
    background-color: #ffa02f;
    box-shadow: none;
}

/**********************************************************************************/
/*********ORANGE*********/
.btn-danger {
    color: #fff;
    background-color: #fe5815;
}

.btn-danger.contour {
    color: #fe5815;
    background-color: transparent;
    border: solid 2px #fe5815;
}

.btn-danger.contour.activated,
.btn-danger.contour:active, .btn-danger.contour.active,
.btn-danger.contour:hover,
.btn-danger.contour:active:hover, .btn-danger.contour.active:hover {
    color: #fff;
    background-color: #fe5815;
    box-shadow: none;
}

/**********************************************************************************/
/*********BLANC*********/
.btn-white {
    color: #4a4a4a;
    background-color: #fff;
}

.btn-white.contour {
    color: #fff;
    background-color: transparent;
    border: solid 2px #fff;
}

.btn-white.contour.activated,
.btn-white.contour:active, .btn-white.contour.active,
.btn-white.contour:hover,
.btn-white.contour:active:hover, .btn-white.contour.active:hover {
    color: #4a4a4a;
    background-color: #fff;
    box-shadow: none;
}

/**********************************************************************************/
.link {
    font-size: 16px;
    line-height: 20px;
    color: #005bbb;
    text-decoration: none;
}
.link:hover {
    cursor: pointer;
    color: #fe5815;
}

/* reload buttton */
@media only screen and (max-width: 767px) {
    #reloadBtn .btn-content {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 14px;
    }
    #reloadBtn .btn-content .ico-before {
        display: none;
    }
}
#reloadBtn .hover-ico {
    display: none;
}
#reloadBtn:hover .hover-ico {
    display: block;
}
#reloadBtn:hover .default-ico {
    display: none;
}
#reloadBtn .txt {
    white-space: nowrap;
}
@media only screen and (max-width: 767px) {
    #reloadBtn .txt {
        display: none;
    }
}
#reloadBtn .txt-mobile {
    display: none;
    padding-left: 5px;
}
@media only screen and (max-width: 767px) {
    #reloadBtn .txt-mobile {
        display: block;
        padding-left: 0;
    }
}

/* green highlighted text */
.highlight {
    color: #509e2f;
}

/* text block with icon */
.info-msg {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    color: #666666;
}
.info-msg .ico {
    display: block;
    min-width: 20px;
    min-height: 20px;
    background: url("clientlibs/img/ico_info@2x.png") no-repeat center center;
    background-size: 20px 20px;
}
.info-msg span + span {
    display: block;
    margin-left: 6px;
    text-align: left;
}

.loading-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 99999;
    opacity: 1;
    -webkit-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
}
.loading-overlay .animation {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -40px;
    margin-top: -40px;
}

.main-content.extended-header .template-container {
    padding-top: 158px;
}
@media only screen and (max-width: 1023px) {
    .main-content.extended-header .template-container {
        padding-top: 176px;
    }
}
@media only screen and (max-width: 767px) {
    .main-content.extended-header .template-container {
        padding-top: 196px;
    }
}

.template-container {
    /* background color specific for this subscription tunnel */
}
.template-container.assurance-bg {
    background: -webkit-linear-gradient(top, #509e2f, rgba(80, 158, 47, 0));
    background: linear-gradient(to bottom, #509e2f, rgba(80, 158, 47, 0));
}
.template-container.adc-bg {
    background: -webkit-linear-gradient(top, #509e2f, #deeba4);
    background: linear-gradient(to bottom, #509e2f, #deeba4);
}

.tunnel-container {
    font-family: "Frutiger", Arial, sans-serif;
}
.tunnel-container .container {
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    max-width: 1000px;
}
@media only screen and (max-width: 767px) {
    .tunnel-container .container {
        padding: 0;
    }
}
.tunnel-container .container .step-description {
    margin-top: 10px;
    padding: 0 30px;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #ffffff;
}
@media only screen and (max-width: 767px) {
    .tunnel-container .container .step-description {
        margin-top: 5px;
        padding: 0 15px;
        font-size: 14px;
        line-height: 18px;
    }
}
.tunnel-container .secondary-header {
    position: fixed;
    top: 77px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid rgba(155, 154, 155, 0.5);
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
    z-index: 100;
    /*&.active {
      box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.4);
    }*/
}
@media only screen and (max-width: 1023px) {
    .tunnel-container .secondary-header {
        top: 95px;
    }
}
@media only screen and (max-width: 767px) {
    .tunnel-container .secondary-header {
        /*padding: 0 15px;*/
        top: 117px;
    }
}
.tunnel-container .secondary-header .client-header-container {
    margin-top: 0px;
    padding: 15px 0;
    height: 80px;
    box-shadow: none;
}
@media only screen and (max-width: 767px) {
    .tunnel-container .secondary-header .client-header-container {
        padding: 15px;
    }
}
.tunnel-container .secondary-header .client-header-container .info {
    font-size: 20px;
    line-height: 24px;
    color: #666666;
}
@media only screen and (max-width: 767px) {
    .tunnel-container .secondary-header .client-header-container .info {
        font-size: 14px;
        line-height: 18px;
        color: #666666;
    }
    .tunnel-container .secondary-header .client-header-container .info .client-name {
        font-weight: bold;
    }
}
.tunnel-container .secondary-header .client-header-container .info > span {
    display: block;
}
.tunnel-container .tunnel-content {
    /* common background and shadow to all blocks */
}
.tunnel-container .tunnel-content h1 {
    margin: 20px 15px 0;
    font-family: 'Frutiger-light', sans-serif;
    font-size: 50px;
    line-height: 54px;
    text-align: center;
    color: #ffffff;
}
@media only screen and (max-width: 767px) {
    .tunnel-container .tunnel-content h1 {
        margin-top: 25px;
        font-size: 24px;
        line-height: 30px;
    }
}
.tunnel-container .tunnel-content .bloc {
    background-color: #ffffff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
}
.tunnel-container .tunnel-content .content {
    margin-top: 30px;
}

.ui-selectmenu-button.ui-state-default {
    display: block;
    padding: 16px 24px 16px 14px;
    width: 100% !important;
    border: none;
    border-radius: 0;
    background: #eff2f4;
    font-size: 16px;
    line-height: 16px;
    font-family: "frutiger";
    overflow: hidden;
}
.ui-selectmenu-button.ui-state-default .ui-icon {
    display: inline-block;
    margin-top: 5px;
    height: 8px;
    width: 14px;
    vertical-align: middle;
    float: right;
    background: url("clientlibs/img/select_arrow_down@2x.png") no-repeat center center;
    background-size: 14px 8px;
}

.ui-selectmenu-text {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    font-size: 16px;
    line-height: 16px;
    font-family: "frutiger";
    text-align: left;
    color: #4a4a4a;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media only screen and (max-width: 767px) {
    .ui-selectmenu-text {
        font-size: 14px;
    }
}

.ui-selectmenu-open .ui-widget.ui-widget-content {
    border: 0;
    background: #eff2f4;
}
.ui-selectmenu-open .ui-menu-item {
    padding: 5px 5px 5px 10px;
    font-size: 16px;
    line-height: 16px;
    font-family: "frutiger";
}
@media only screen and (max-width: 767px) {
    .ui-selectmenu-open .ui-menu-item {
        font-size: 14px;
    }
}

.mfp-content {
    padding: 24px;
}

.responsive-popup {
    font-family: "Frutiger";
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    /* corrects ie10/ie11 bug regarding min-height and flex */
}
.responsive-popup.white-popup {
    position: relative;
    background: #FFF;
    width: auto;
    max-width: 500px;
    margin: 0px auto;
    border-radius: 4px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.5);
}
.responsive-popup.no-close-icon .mfp-close {
    display: none;
}
.responsive-popup .mfp-close {
    width: 40px;
    height: 40px;
    right: -20px;
    top: -20px;
    font-size: 0;
    opacity: 1;
    background: url("../../../../../etc/designs/EDF_RC/assets/img/icons/ico_close_popup@2x.png") no-repeat center center;
    background-size: 40px 40px;
}
.responsive-popup .mfp-close:active {
    top: -20px;
}
.responsive-popup .popup-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    /* corrects ie10/ie11 bug regarding min-height and flex */
    text-align: center;
    min-height: 200px;
}
.responsive-popup .popup-container .popup-header {
    padding: 40px 0;
}
.responsive-popup .popup-container .popup-header img {
    margin: 0 auto;
}
.responsive-popup .popup-container .popup-header.light-green {
    background-color: #c4d600;
}
.responsive-popup .popup-container .popup-header.green {
    background-color: #509e2f;
}
.responsive-popup .popup-container .popup-header.light-orange {
    background-color: #ffa02f;
}
.responsive-popup .popup-container .popup-header.orange {
    background-color: #fe5815;
}
.responsive-popup .popup-container .popup-header.blue {
    background-color: #005bbb;
}
.responsive-popup .popup-container .popup-header.gray {
    background-color: #9b9b9b;
}
.responsive-popup .popup-container .popup-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 40px 40px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.responsive-popup .popup-container .popup-content .title {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    font-size: 32px;
    font-weight: bold;
    line-height: 36px;
    color: #666666;
}
@media only screen and (max-width: 767px) {
    .responsive-popup .popup-container .popup-content .title {
        font-size: 24px;
        line-height: 28px;
    }
}
.responsive-popup .popup-container .popup-content .description {
    margin-top: 30px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    font-size: 16px;
    line-height: 20px;
    color: #666666;
}
.responsive-popup .popup-container .popup-content .description:only-child {
    margin-top: 0;
}
@media only screen and (max-width: 767px) {
    .responsive-popup .popup-container .popup-content .description {
        font-size: 14px;
        line-height: 18px;
    }
}
.responsive-popup .popup-container .popup-content .btn-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px;
    margin-bottom: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
.responsive-popup .popup-container .popup-content .btn-container .btn{
    padding: 13.5px 20px;
}
.responsive-popup .popup-container .popup-content .btn-container .btn + .btn {
    margin-left: 10px;
}
.responsive-popup .popup-container .popup-content .btn-container .btn.close {
    width: auto;
  	max-width: none;
}

@media screen and (max-width: 575px) {
  .responsive-popup .popup-container .popup-content .btn-container {
    flex-direction: column;
  }

  .responsive-popup .popup-container .popup-content .btn-container .btn.close {
    max-width: inherit;
  }

  .responsive-popup .popup-container .popup-content .btn-container .btn+.btn {
    margin-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .responsive-popup .popup-container .popup-content .btn-container .btn+.btn {
    margin-left: 0px;
  }
}
