/**
 * RSX Framework
 * Copyright 2015 Bell Canada
 * 
 * Accordion widget.
 * Reference: http://rsxdeployment.azurewebsites.net/docs/widgets.html#widgets-accordion
 */

.rsx-accordion-section {
    margin-top: 1px;
}

.rsx-accordion-section:first-of-type,
.rsx-accordion-section.rsx-first {
    margin-top: 0;
}

.rsx-accordion-header {
    padding: 25px 20px;
    background-color: #003778;
    cursor: pointer;
}

.rsx-accordion-section.rsx-active .rsx-accordion-header {
    background-color: #00549a;
}

.rsx-accordion-heading {
    display: inline-block;
    margin: 0;
    font-size: 20px;
    font-weight: normal;
    color: #fff;
    -webkit-user-select: none;      
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.rsx-icon-accordion-indicator {
    float: right;
    margin-top: -6px;
    padding: 8px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 15px;
    color: #fff;
}

.rsx-icon-accordion-indicator:before {
    content: '\e007';
}

.rsx-accordion-section.rsx-active .rsx-icon-accordion-indicator:before {
    content: '\e008';
}

.rsx-accordion-content-wrapper {
    overflow: hidden;
}

.rsx-accordion-content{
    padding: 20px;
    overflow: hidden;
}




 /* Expandable section, powered by the accordion widget */

.rsx-accordion-generic .rsx-expandable-section {
    border-top: 1px solid #d4d4d4;
    background-clip: padding-box;
}

.rsx-accordion-generic .rsx-expandable-section:first-child {
    border-top: none;
}

.rsx-expandable-section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(.55,0,.1,1);
    
}

.rsx-active > .rsx-expandable-section-content {
   max-height: 20000px;
   transition: max-height 0.7s cubic-bezier(.55,0,.1,1);
   padding: 3px;
   margin: -3px;
}

.rsx-expandable-section.rsx-expandable-section_collapsed .rsx-expandable-section-content {
    visibility: hidden;
}


/* Offer details flavour of expandable section*/
.rsx-offer-details {
    border-top: none;
}

.container .rsx-offer-details > .container {
    margin-bottom: 0;
}

.rsx-offer-details > .container .rsx-expandable-section-header {
    padding: 0 30px 0 40px;
}

.rsx-offer-details > .container .rsx-expandable-section-header:focus {
  outline: 2px solid #0075ff!important;
  border-radius: 2px;
  outline-offset: 2px;
  display: inline-flex;
  padding: 0 0px 0 40px;
}

.rsx-expandable-section-header_icon,
.rsx-offer-details .rsx-expandable-section-header {
    font-size: 18px;
    color: #00549a;
    padding: 0 30px 0 40px;
    cursor: pointer;
}

.rsx-expandable-section-header_icon {
    position: relative;
}

.rsx-offer-details-toggle-icon {
    width: 24px;
    height: 24px;
    border: 2px solid #00549a;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: 0;
}

.rsx-offer-details-toggle-icon:before, 
.rsx-offer-details-toggle-icon:after {
    content: "";
    position: absolute;
    background: #00549A;
    top: 0;
    left: 0;
}

.rsx-offer-details-toggle-icon:after {
    width: 12px;
    height: 2px;    
    left: 4px;
    top: 9px;
}

.rsx-offer-details-toggle-icon:before {    
    height: 12px;
    width: 2px;
    left: 9px;
    top: 4px;
    transition: 0.3s cubic-bezier(.55,0,.1,1);
    -webkit-transform:  scaleX(1);
        -ms-transform:  scaleX(1);
            transform:  scaleX(1);
}

.rsx-offer-details .rsx-expandable-section.rsx-active .rsx-offer-details-toggle-icon:before,
.rsx-expandable-section.rsx-active .rsx-expandable-section-header_icon .rsx-offer-details-toggle-icon:before {
    -webkit-transform:  scaleY(0);
        -ms-transform:  scaleY(0);
            transform:  scaleY(0);
}
/* Accordion List built on top of rsx-offer-details*/
.rsx-offer-details .rsx-accordion-list .rsx-expandable-section-content{
  padding: 0 30px;
}
.rsx-offer-details .rsx-accordion-list.rsx-accordion-icon-left .rsx-expandable-section-header{
  padding: 20px 50px;
}
.rsx-offer-details .rsx-accordion-list.rsx-accordion-icon-left .rsx-expandable-section-content{
  padding: 0 50px;
}

.rsx-offer-details .rsx-accordion-list.rsx-accordion-icon-right .rsx-expandable-section-header{
  padding: 20px 50px;
}
.rsx-offer-details .rsx-accordion-list.rsx-accordion-icon-right .rsx-expandable-section-content{
  padding: 0 50px;
}
.rsx-offer-details .rsx-accordion-list .rsx-offer-details-toggle-icon{
    width: 32px;
    height: 32px;
    margin: -4px 0;
}
.rsx-offer-details .rsx-accordion-list .rsx-offer-details-toggle-icon:before{
    height: 17px;
    left: 13px;
    top:6px;
}
.rsx-offer-details .rsx-accordion-list .rsx-offer-details-toggle-icon:after{
    width: 17px;
    top: 13px;
    left: 5px;
}
.rsx-offer-details .rsx-accordion-list.rsx-accordion-icon-left .rsx-offer-details-toggle-icon{
    left:20px;
}
.rsx-offer-details .rsx-accordion-list.rsx-accordion-icon-right .rsx-offer-details-toggle-icon{
    left:auto;
    right:20px;
}

/* Generic accordion */

.rsx-expandable-sections.rsx-accordion-generic .rsx-expandable-section-header{
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
}

.rsx-expandable-sections.rsx-accordion-generic .rsx-expandable-section-header:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: 1px;
}

.rsx-expandable-sections.rsx-accordion-generic .rsx-expandable-section-header > h3,
.rsx-expandable-sections.rsx-accordion-generic .rsx-expandable-section-header > h4,
.rsx-expandable-sections.rsx-accordion-generic .rsx-expandable-section-header > h5{
    color: #00549a;
    cursor: pointer;
    margin-right: 60px;
    line-height: 1.3;
}

.rsx-expandable-sections.rsx-accordion-generic .rsx-icon{
    position: absolute;
    top: 18px;
    right: 0;
    width: 34px;
    height: 34px;
    color: #00549a;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid  #00549a;
    font-size: 16px;
}

/*.rsx-expandable-sections.rsx-accordion-generic .rsx-expandable-section:first-child .rsx-icon {
    top: 0;
}*/

.rsx-expandable-sections.rsx-accordion-generic .rsx-icon:before{
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform:  translate(-50%, -50%);
    -ms-transform:  translate(-50%, -50%);
    transform:  translate(-50%, -50%);
}

.rsx-expandable-sections.rsx-accordion-generic .rsx-expandable-section .rsx-icon-plus:before {
    opacity: 1;
    transition: opacity 0.3s;
}
.rsx-expandable-sections.rsx-accordion-generic .rsx-expandable-section.rsx-active .rsx-icon-plus:before {
    opacity: 0;
}

.rsx-expandable-sections.rsx-accordion-generic .rsx-expandable-section:last-child .rsx-expandable-section-content{
    border-bottom: 0;
}

@media (max-width: 519px) {
    .rsx-expandable-sections.rsx-accordion-generic .rsx-icon{
        top: 24px;
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .rsx-expandable-sections.rsx-accordion-generic .rsx-expandable-section-header > h3,
    .rsx-expandable-sections.rsx-accordion-generic .rsx-expandable-section-header > h4,
    .rsx-expandable-sections.rsx-accordion-generic .rsx-expandable-section-header > h5{
        margin-right: 40px;
    }
}