/*
 Theme Name:   Eventum Child
 Theme URI:    http://demo.themeum.com/wordpress/eventum
 Description:  Eventum Child Theme
 Author:       Themeum
 Author URI:   http://themeum.com/
 Template:     eventum
 Version:      1.0
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  eventum-child
*/


@import url("../eventum/style.css");

#seed-csp4-content {
    max-width: 700px !important;
    margin: auto !important;
}

#seed-csp4-page {
    display: flex !important;
}


/* Accordéon exposants 

input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}*/

.row {
  display: -webkit-box;
  display: flex;
}
.row .col {
  -webkit-box-flex: 1;
  flex: 1;
  max-width: 94%;
}
.row .col:last-child {
  margin: 10px;
}

/* Accordion styles */
.tabs {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
border:solid #ccc 1px;
}

.tab {
  width: 100%;
  overflow: hidden;
}
.tab-label {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 1em;
  font-weight: bold;
  cursor: pointer;
  /* Icon */
}
.tab-label:hover {
  background: #eee;
}
.tab-label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  -webkit-transition: all .35s;
  transition: all .35s;
}
.tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #2c3e50;
  background: white;
  -webkit-transition: all .35s;
  transition: all .35s;
  border-top:1px solid #ccc;
}
.tab-close {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}
.tab-close:hover {
  background: #1a252f;
}


input:checked + .tab-label::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
input:checked ~ .tab-content {
  max-height: 800vh;
  padding: 1em;
} 