/*!**********************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[3]!./src/stylesheets/modules/m-regulations.scss ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************/
/**
 * ==============================================
 * Dot Pulse
 * ==============================================
 */
/* 
    Created on : 2019-01-22, 20:47:20
    Author     : l.kobus
*/
/**
 * ==============================================
 * Dot Pulse
 * ==============================================
 */
.m-regulations {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .m-regulations {
    margin-bottom: 55px;
  }
}
.m-regulations__title-box {
  border-top: 1px solid #eaeaea;
  padding-top: 15px;
  cursor: pointer;
  text-align: left;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .m-regulations__title-box {
    padding-top: 25px;
  }
}
.m-regulations__title-box.open .m-regulations__title:before {
  transform: translateY(-50%) rotate(180deg);
}
.m-regulations__title-box:hover, .m-regulations__title-box:focus {
  outline: none;
}
.m-regulations__title {
  padding-left: 45px;
  position: relative;
  font-size: 18px;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}
.m-regulations__title:before {
  content: "";
  display: block;
  position: absolute;
  background: url("/Assets/images/angle-arrow-down.svg");
  background-size: 100% 100%;
  width: 22px;
  height: 20px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: center center;
  transition: transform 0.3s cubic-bezier(0.66, 0.32, 0.22, 0.96);
}
@media (min-width: 768px) {
  .m-regulations__title {
    font-size: 24px;
  }
}
.m-regulations__content {
  display: block;
  height: 0;
  opacity: 0;
  transition: opacity 0s cubic-bezier(0.66, 0.32, 0.22, 0.96);
  padding-left: 15px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .m-regulations__content {
    padding-left: 60px;
  }
}
.m-regulations__content.show {
  opacity: 1;
  height: auto;
  transition: opacity 0.5s cubic-bezier(0.66, 0.32, 0.22, 0.96);
}
