.titleSection {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.subTitleSection {
    margin-top: 24px;
    margin-bottom: 16px;
}

.subTitleLayout {
    margin-top: -20px;
    margin-left: 32px;
}

.subTitleEmphasis {
    min-width: 30px; 
    height: 64px;
    background-color: #2899ff;
}

.titleFeatureEmphasis {
    color: #2899ff;
}

.featureEmphasis {
    color: #bda800;
}

.overlayImage {
    margin-top: -36px;
    align-self: center;
}

.layerTitle {
    font-weight: 600;
    line-height: 1.7;
}

.divider1 {
    margin-top: 0px;
}

#player {
    padding-left: 16px;
    padding-right: 16px;
}

/* Accordion */

/* Style the buttons that are used to open and close the accordion panel */

.accordionTitle {
    display: inline-block; 
    margin-left: 32px;
    font-size: 18px; 
    color: #f0e3e3; 
    line-height: 140%;
}

.accordion {
    border-radius: 3px;
    background-image: linear-gradient(#4a58cf, #2839cc);
    /*color: #444;*/
    cursor: pointer;
    padding: 18px;
    width: 100%;
    height: 97px;
    text-align: left;
    border: none;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
    background-image: linear-gradient(#5f6ad4, #5f6ad4);
}
  
  /* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 0px;
    margin-bottom: 16px;
    background-color: rgb(246, 241, 241);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panelContent {  
    display: flex;
    flex-wrap: wrap;
    height: auto;
    justify-content: center;
    align-items: top;
}

.panelContentText {
    margin: 16px;
    width: 320px;
    padding-top: 16px;
    display: inline-block;
    font-family: 'Open Sans'; 
    font-size: 17px;
    justify-content: center;
    align-items: center;
}

.panelContentIcons {
    width: 40px; 
    height: 30px;
    margin-right: 8px;
}

.panelVideo {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: transparent;  
    text-shadow: 0 0 0 white;
    float: right;
    margin-right: 32px;
}
  
.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
    color: transparent;  
    text-shadow: 0 0 0 white;
    margin-right: 32px;
}
