
        .panel {
            border-width: 0 0 1px 0;
            border-style: solid;
            border-color: #c08a4b;
            background: none;
            box-shadow: none;
        }
        
        .panel:last-child {
            border-bottom: none;
        }
        
        .panel-group > .panel:first-child .panel-heading {
            border-radius: 4px 4px 0 0;
        }
        
        .panel-group .panel {
            border-radius: 0;
        }
        
        .panel-group .panel + .panel {
            margin-top: 0;
        }
        
        .panel-heading {
            /*background-color: #a4e3b4;*/
            border-radius: 0;
            border: none;
            color: #c08a4b;
            padding: 0;
        }

        h4.panel-title a span{
            display: inline-block;
            font-size: 13px;
            padding:5px;
            background:#f5003f;
            color:#fff;
            border-radius: 5px;
            margin-left:8px;
        }
        .panel-title a {
            display: block;
            color: #c08a4b;
            padding: 15px;
            position: relative;
            font-size: 20px;
            font-weight: 400;
            text-decoration: none;
        }
        
        .panel-body {
            /*background: #e4f6e8;*/
            color:#3a3a3a;
            line-height: 1.5em;
        }
        
        .panel:last-child .panel-body {
            border-radius: 0 0 4px 4px;
        }
        
        .panel:last-child .panel-heading {
            border-radius: 0 0 4px 4px;
            transition: border-radius 0.3s linear 0.2s;
        }
        
        .panel:last-child .panel-heading.active {
            border-radius: 0;
            transition: border-radius linear 0s;
        }
        /* #bs-collapse icon scale option */
        
        .panel-heading a:before {
            content: '\f107';
            font-family: "Font Awesome 5 Free"; 
            font-weight: 900; 
            position: absolute;
            right: 5px;
            top: 10px;
            font-size: 24px;
            transition: all 0.5s;
            transform: scale(1);
        }
        
        .panel-heading.active a:before {
            content: ' ';
            transition: all 0.5s;
            transform: scale(0);
        }
        
        #bs-collapse .panel-heading a:after {
            content: '\f103';
            font-family: "Font Awesome 5 Free"; 
            font-weight: 900; 
            position: absolute;
            right: 5px;
            top: 10px;
            transform: scale(0);
            transition: all 0.5s;
        }
        
        #bs-collapse .panel-heading.active a:after {
            content: '\f103';
            font-family: "Font Awesome 5 Free"; 
            font-weight: 900; 
            color:#fff;
            transform: scale(1);
            transition: all 0.5s;
            background: #70381c;
            padding:8px;
            border-radius: 3px;
        }
        /* #accordion rotate icon option */
        
        #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;
        }
        
        #accordion .panel-heading.active a:before {
            transform: rotate(0deg);
            transition: all 0.5s;
        }
        .panel-body .color-yellow{
            color:#ca6138;
        }
        .panel-body ul.notice-room{
            margin:0;
            padding:0;
        }
        .panel-body ul.notice-room li{
           list-style-type: square;
           list-style-position: inside;
           width: 100%;
           border-bottom: 1px dotted rgba(192,138,75,.5);
           margin-bottom: 8px;
           padding-bottom: 5px;
        }
        .panel-body h3{
            font-size: 20px;
        }

        @media (max-width:767px){
            h4.panel-title a span{                
                margin-left:0px;
                margin-top:10px;
            }
        }