﻿/* SCROLL */

.scrolling-wrapper {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling:touch;
     width: 100%;
     box-shadow: 5px 5px 0 0 #6F6F6F !important; 
}

.scrolling-wrapper-2 {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: auto;
    width: 100%;
    /*box-shadow: 5px 5px 0px 0 #6F6F6F !important;*/
}

.scrolling-wrapper-all {
    overflow-x: scroll;
    overflow-y: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling:touch;
     width: 100%;
     box-shadow: 5px 5px 0 0 #6F6F6F !important; 
}

::-webkit-scrollbar {
    display: none;
}

/* COLLAPSIBLE PANEL */

/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: #6F6F6F;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
   font-family: 'Montserrat','Lato',Georgia;
   color:#fff;
}

/* 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, .collapsible:hover {
  background-color: #323232;
  color:#fff;
}

/* Style the collapsible content. Note: hidden by default */
.collapsiblecontent {
  padding: 0 10px;
  background-color: #f1f1f1;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  max-height:0;
}

.collapsible:after {
  content: '\002B'; /* Unicode character for "plus" sign (+)  */
  font-size: 16px;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212"; /* Unicode character for "minus" sign (-)  */
}

/* Style the button that is used to open and close the collapsible content */
.collapsible_2 {
    background-image: linear-gradient(to right, #9A76FF,#3700D6);
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: center;
    outline: none;
    font-size: 16px;
    font-family: 'Montserrat','Lato',Georgia;
    color: #fff;
}

    /* 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_2,.collapsible_2:hover  {
        color: #fff;
    }

/* Style the collapsible content. Note: hidden by default */
.collapsiblecontent_2 {
    padding: 0 10px;
    background-color: #ffffff;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    max-height: 0;
}

.collapsible_2:after {
    content: '\23F7'; /* Unicode character for "plus" sign (+)  \002B */
    font-size: 16px;
    float: right;
    margin-left: 5px;
}

.collapsible_2:before {
    content: '\23F7'; /* Unicode character for "plus" sign (+)  \002B */
    font-size: 16px;
    float: left;
    margin-right: 5px;
}

.active_2:after {
    content: "\23F6"; /* Unicode character for "minus" sign (-)  \2212*/
   
}

.active_2:before {
    content: "\23F6"; /* Unicode character for "minus" sign (-)  \2212*/
   
}