
/*for panel*/ 
.content .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);*/
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.1);
  border-radius: 4px;
}

.content a:focus,
.content a:hover,
.content a:active {
  outline: 0;
  text-decoration: none;
}

.content .panel {
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #fff;
  background: none;
  box-shadow: none;
}

.content .panel:last-child {
  border-bottom: none;
}

.content .panel-group > .panel:first-child .panel-heading {
  border-radius: 4px 4px 0 0;
}

.content .panel-group .panel {
  border-radius: 0;
}

.content .panel-group .panel + .panel {
  margin-top: 0;
}

.content .panel-heading {
  background-color: #fff;
  border-radius: 0;
  border: none;
  color: #484848;
  padding: 0;
}
.panel-default > .panel-heading a:focus {
    color: #484848 !important;
}
.content .panel-title a {
  display: block;
  color: #484848;
  padding: 15px;
  position: relative;
  font-size: 16px;
  font-weight: 700;
}

.content .panel-body {
  background: #fff;
}
.content .panel-body a{
  color: #333;
}


.content .panel:last-child .panel-body {
  border-radius: 0 0 4px 4px;
	font-weight: 700;
}

.content .panel:last-child .panel-heading {
  border-radius: 0 0 4px 4px;
  transition: border-radius 0.3s linear 0.2s;
}

.content .panel:last-child .panel-heading.active {
  border-radius: 0;
  transition: border-radius linear 0s;
}
/* #bs-collapse icon scale option */

.content .panel-heading a:before {
  content: '\e146';
  position: absolute;
  font-family: 'Material Icons';
  right: 5px;
  top: 10px;
  font-size: 24px;
  transition: all 0.5s;
  transform: scale(1);
}

.content .panel-heading.active a:before {
  content: ' ';
  transition: all 0.5s;
  transform: scale(0);
}

/* #accordion rotate icon option */

.content #accordion .panel-heading a:before {
  content: '\e316';
  font-size: 24px;
  position: absolute;
  font-family: 'Material Icons';
  right: 5px;
  top: 10px;
  transform: rotate(180deg);
  transition: all 0.5s;
}

.content #accordion .panel-heading.active a:before {
  transform: rotate(0deg);
  transition: all 0.5s;
}

 /*for checkbox*/
/* The customcheck */
.customcheck {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.customcheck input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
  	border: 1px solid #ccc;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.customcheck:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.customcheck input:checked ~ .checkmark {
    background-color: #00acc1;
  	border-color: #00acc1;
    border-radius: 50%;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.customcheck input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.customcheck .checkmark:after {
    left: 9px;
    top: 5px;
    width: 7px;
    height: 14px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


<!--STOP expand CSS-->