/* ========================================================================
 * bootstrap-switch - v3.3.2
 * http://www.bootstrap-switch.org
 * ========================================================================
 * Copyright 2012-2013 Mattia Larentis
 *
 * ========================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ========================================================================
 */

.bootstrap-switch {
  display: inline-block;
  direction: ltr;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid;
  border-color: #cccccc;
  position: relative;
  text-align: left;
  overflow: hidden;
  line-height: 8px;
  z-index: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.bootstrap-switch .bootstrap-switch-container {
  display: inline-block;
  top: 0;
  border-radius: 4px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-handle-off,
.bootstrap-switch .bootstrap-switch-label {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block !important;
  height: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 20px;
}
.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-handle-off {
  text-align: center;
  z-index: 1;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
  color: #fff;
  background: #337ab7;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info {
  color: #fff;
  background: #5bc0de;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success {
  color: #fff;
  background: #5cb85c;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning {
  background: #f0ad4e;
  color: #fff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger {
  color: #fff;
  background: #d9534f;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default {
  color: #000;
  background: #eeeeee;
}
.bootstrap-switch .bootstrap-switch-label {
  text-align: center;
  margin-top: -1px;
  margin-bottom: -1px;
  z-index: 100;
  color: #333333;
  background: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.bootstrap-switch .bootstrap-switch-handle-off {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.bootstrap-switch input[type='radio'],
.bootstrap-switch input[type='checkbox'] {
  position: absolute !important;
  top: 0;
  left: 0;
  margin: 0;
  z-index: -1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
}
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {
  padding: 6px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.bootstrap-switch.bootstrap-switch-disabled,
.bootstrap-switch.bootstrap-switch-readonly,
.bootstrap-switch.bootstrap-switch-indeterminate {
  cursor: default !important;
}
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label {
  opacity: 0.5;
  filter: alpha(opacity=50);
  cursor: default !important;
}
.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {
  -webkit-transition: margin-left 0.5s;
  -o-transition: margin-left 0.5s;
  transition: margin-left 0.5s;
}
.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.bootstrap-switch.bootstrap-switch-focused {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

@keyframes marquee1{0%{transform:translateX(100%)}100%{transform:translateX(-100%)}}@keyframes marquee2{0%{transform:translateX(100%)}100%{transform:translateX(-200%)}}@keyframes marquee3{0%{transform:translateX(100%)}100%{transform:translateX(-300%)}}@keyframes marquee4{0%{transform:translateX(100%)}100%{transform:translateX(-400%)}}@keyframes marquee5{0%{transform:translateX(100%)}100%{transform:translateX(-500%)}}.noselect{cursor:default;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.hidden{display:none!important}.audio_player{display:flex;flex-direction:row;height:50px;background-color:#333;width:100%}.audio_player .spacer{width:10px}.audio_player .audio_progress_container{position:relative;height:100%;flex-grow:1}.audio_player .audio_progress{background-color:#4a4a4a;height:100%;width:0;will-change:width}.audio_player .audio_progress_overlay{position:absolute;top:0;bottom:0;left:0;right:0;display:flex;flex-direction:row;justify-content:space-between}.audio_player .audio_info_marquee{overflow:hidden;width:calc(100% - 180px);display:flex;flex-direction:row;align-items:center;margin-left:10px}.audio_player .audio_info{display:none;width:100%;white-space:nowrap;word-break:break-all;margin:0;font-size:19.2px;color:#fff}.audio_player .audio_time_progress{margin-right:20px;align-self:center;color:#fff;font-size:23px}.audio_player .audio_button{padding-left:11px;padding-right:11px;margin-left:4px;margin-right:4px;cursor:pointer;align-self:center;display:flex;justify-content:center;flex-direction:column;height:50px}.audio_player .play_pause_button .play_pause_inner{height:30px;width:30px;overflow:hidden;position:relative}.audio_player .play_pause_button .left{height:100%;float:left;background-color:#fff;width:36%;transition:all .25s ease;overflow:hidden}.audio_player .play_pause_button .triangle_1{transform:translate(0,-100%)}.audio_player .play_pause_button .triangle_2{transform:translate(0,100%)}.audio_player .play_pause_button .triangle_1,.audio_player .play_pause_button .triangle_2{position:absolute;top:0;right:0;background-color:transparent;width:0;height:0;border-right:30px solid #333;border-top:15px solid transparent;border-bottom:15px solid transparent;transition:transform .25s ease}.audio_player .play_pause_button .right{height:100%;float:right;width:36%;background-color:#fff;transition:all .25s ease}.audio_player .play_pause_button.paused .left{width:50%}.audio_player .play_pause_button.paused .right{width:50%}.audio_player .play_pause_button.paused .triangle_1{transform:translate(0,-50%)}.audio_player .play_pause_button.paused .triangle_2{transform:translate(0,50%)}.audio_player .skip_button.back{transform:rotate(180deg)}.audio_player .skip_button .skip_button_inner{display:flex;flex-direction:row}.audio_player .skip_button .right_facing_triangle{width:0;height:0;border-left:16px solid #fff;border-top:16px solid transparent;border-bottom:16px solid transparent}@media screen and (min-width:370px){.audio_player .audio_info{display:initial;animation:marquee5 10s cubic-bezier(0,.23,.6,-.09) infinite}}@media screen and (min-width:450px){.audio_player .audio_info{animation:marquee4 10s cubic-bezier(0,.23,.7,-.09) infinite}}@media screen and (min-width:550px){.audio_player .audio_info{animation:marquee3 10s cubic-bezier(0,.23,.85,-.09) infinite}}@media screen and (min-width:650px){.audio_player .audio_info{animation:marquee2 10s cubic-bezier(0,.23,1,-.09) infinite}}@media screen and (min-width:720px){.audio_player .audio_info{animation:initial}}@keyframes a{0%{transform:translateX(100%)}to{transform:translateX(-200%)}}@keyframes b{0%{transform:translateX(100%)}to{transform:translateX(-300%)}}@keyframes c{0%{transform:translateX(100%)}to{transform:translateX(-400%)}}@keyframes d{0%{transform:translateX(100%)}to{transform:translateX(-500%)}}.noselect{cursor:default;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.hidden{display:none!important}.audio_player{display:flex;flex-direction:row;height:50px;background-color:#333;width:100%}.audio_player .spacer{width:10px}.audio_player .audio_progress_container{position:relative;height:100%;flex-grow:1}.audio_player .audio_progress{background-color:#4a4a4a;height:100%;width:0;will-change:width}.audio_player .audio_progress_overlay{position:absolute;top:0;bottom:0;left:0;right:0;display:flex;flex-direction:row;justify-content:space-between}.audio_player .audio_info_marquee{overflow:hidden;width:calc(100% - 180px);display:flex;flex-direction:row;align-items:center;margin-left:10px}.audio_player .audio_info{display:none;width:100%;white-space:nowrap;word-break:break-all;margin:0;font-size:19.2px;color:#fff}.audio_player .audio_time_progress{margin-right:20px;align-self:center;color:#fff;font-size:23px}.audio_player .audio_button{padding-left:11px;padding-right:11px;margin-left:4px;margin-right:4px;cursor:pointer;align-self:center;display:flex;justify-content:center;flex-direction:column;height:50px}.audio_player .play_pause_button .play_pause_inner{height:30px;width:30px;overflow:hidden;position:relative}.audio_player .play_pause_button .left{height:100%;float:left;background-color:#fff;width:36%;transition:all .25s ease;overflow:hidden}.audio_player .play_pause_button .triangle_1{transform:translateY(-100%)}.audio_player .play_pause_button .triangle_2{transform:translateY(100%)}.audio_player .play_pause_button .triangle_1,.audio_player .play_pause_button .triangle_2{position:absolute;top:0;right:0;background-color:transparent;width:0;height:0;border-right:30px solid #333;border-top:15px solid transparent;border-bottom:15px solid transparent;transition:transform .25s ease}.audio_player .play_pause_button .right{height:100%;float:right;width:36%;background-color:#fff;transition:all .25s ease}.audio_player .play_pause_button.paused .left,.audio_player .play_pause_button.paused .right{width:50%}.audio_player .play_pause_button.paused .triangle_1{transform:translateY(-50%)}.audio_player .play_pause_button.paused .triangle_2{transform:translateY(50%)}.audio_player .skip_button.back{transform:rotate(180deg)}.audio_player .skip_button .skip_button_inner{display:flex;flex-direction:row}.audio_player .skip_button .right_facing_triangle{width:0;height:0;border-left:16px solid #fff;border-top:16px solid transparent;border-bottom:16px solid transparent}@media screen and (min-width:370px){.audio_player .audio_info{display:initial;animation:d 10s cubic-bezier(0,.23,.6,-.09) infinite}}@media screen and (min-width:450px){.audio_player .audio_info{animation:c 10s cubic-bezier(0,.23,.7,-.09) infinite}}@media screen and (min-width:550px){.audio_player .audio_info{animation:b 10s cubic-bezier(0,.23,.85,-.09) infinite}}@media screen and (min-width:650px){.audio_player .audio_info{animation:a 10s cubic-bezier(0,.23,1,-.09) infinite}}@media screen and (min-width:720px){.audio_player .audio_info{animation:initial}}.DraftEditor-editorContainer,.DraftEditor-root,.public-DraftEditor-content{height:inherit;text-align:initial}.public-DraftEditor-content[contenteditable=true]{-webkit-user-modify:read-write-plaintext-only}.DraftEditor-root{position:relative}.DraftEditor-editorContainer{background-color:rgba(255,255,255,0);border-left:.1px solid transparent;position:relative;z-index:1}.public-DraftEditor-block{position:relative}.DraftEditor-alignLeft .public-DraftStyleDefault-block{text-align:left}.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root{left:0;text-align:left}.DraftEditor-alignCenter .public-DraftStyleDefault-block{text-align:center}.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root{margin:0 auto;text-align:center;width:100%}.DraftEditor-alignRight .public-DraftStyleDefault-block{text-align:right}.DraftEditor-alignRight .public-DraftEditorPlaceholder-root{right:0;text-align:right}.public-DraftEditorPlaceholder-root{color:#9197a3;position:absolute;z-index:1}.public-DraftEditorPlaceholder-hasFocus{color:#bdc1c9}.DraftEditorPlaceholder-hidden{display:none}.public-DraftStyleDefault-block{position:relative;white-space:pre-wrap}.public-DraftStyleDefault-ltr{direction:ltr;text-align:left}.public-DraftStyleDefault-rtl{direction:rtl;text-align:right}.public-DraftStyleDefault-listLTR{direction:ltr}.public-DraftStyleDefault-listRTL{direction:rtl}.public-DraftStyleDefault-ol,.public-DraftStyleDefault-ul{margin:16px 0;padding:0}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR{margin-left:1.5em}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL{margin-right:1.5em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR{margin-left:3em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL{margin-right:3em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR{margin-left:4.5em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL{margin-right:4.5em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR{margin-left:6em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL{margin-right:6em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR{margin-left:7.5em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL{margin-right:7.5em}.public-DraftStyleDefault-unorderedListItem{list-style-type:square;position:relative}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0{list-style-type:disc}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1{list-style-type:circle}.public-DraftStyleDefault-orderedListItem{list-style-type:none;position:relative}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before{left:-36px;position:absolute;text-align:right;width:30px}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before{position:absolute;right:-36px;text-align:left;width:30px}.public-DraftStyleDefault-orderedListItem:before{content:counter(ol0) ". ";counter-increment:ol0}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before{content:counter(ol1) ". ";counter-increment:ol1}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before{content:counter(ol2) ". ";counter-increment:ol2}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before{content:counter(ol3) ". ";counter-increment:ol3}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before{content:counter(ol4) ". ";counter-increment:ol4}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset{counter-reset:ol0}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset{counter-reset:ol1}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset{counter-reset:ol2}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset{counter-reset:ol3}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset{counter-reset:ol4}
