﻿/*body {
  margin: 0;
  font-family: 'Roboto';
  font-size: 14px;
  background: #455A64;
}

h3 {
  color: #fff;
  font-size: 24px;
  text-align: center;
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
  font-weight: 300;
}

.container {
  max-width: 970px;
}

div[class*='col-'] {
  padding: 0 30px;
}

.wrap {
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
}*/

/*a:focus,
a:hover,
a:active {
  outline: 0;
  text-decoration: none;
}*/

.panel-acc {
  border-width: 0 0 3px 0;
  border-style: solid;
  border-color: orange;
  background: none;
  box-shadow: none;
    /*padding: 0 !Important;
    margin: 0 !Important;
    height: 57px;*/
}

.panel-acc:last-child {
  border-bottom: none;
}

.panel-group-acc > .panel-acc:first-child .panel-heading-acc {
  border-radius: 4px 4px 0 0;
}

.panel-group-acc .panel-acc {
  border-radius: 0;
}

.panel-group-acc .panel-acc + .panel-acc {
  margin-top: 0;
}

.panel-heading-acc {
  background-color: #428bca; /*#009688;*/
  border-radius: 0;
  border: none;
  color: black;
  padding: 0;
}

.panel-title-acc {
    margin: 0;
}

.panel-title-acc a {
  display: block;
  color: white;
  padding: 15px;
  position: relative;
  font-size: 16px;
  font-weight: bold;
  padding-right: 30px;
  text-decoration: underline;
}

.panel-body-acc {
  background: #fff;
}

.panel-acc:last-child .panel-body-acc {
  border-radius: 0 0 4px 4px;
}

.panel-acc:last-child .panel-heading-acc {
  border-radius: 0 0 4px 4px;
  transition: border-radius 0.3s linear 0.2s;
}

.panel-acc:last-child .panel-heading-acc.active {
  border-radius: 0;
  transition: border-radius linear 0s;
}
   
/* #bs-collapse icon scale option */

.panel-heading-acc a:before {
  content: '\e146';
  position: absolute;
  font-family: 'Material Icons';
  right: 5px;
  top: 10px;
  font-size: 24px;
  transition: all 0.5s;
  transform: scale(1);
}

.panel-heading-acc.active a:before {
  content: ' ';
  transition: all 0.5s;
  transform: scale(0);
}

/* #accordion rotate icon option */

#accordion .panel-heading-acc a:before {
  content: '\e316';
  font-size: 24px;
  position: absolute;
  font-family: 'Material Icons';
  right: 5px;
  top: 10px;
  transform: rotate(180deg);
  transition: all 0.5s;
}

#accordion .panel-heading-acc.active a:before {
  transform: rotate(0deg);
  transition: all 0.5s;
}