/* ------------------------------------------id's-------------------------------- */
#storyContainer
{
  display: flex;
  border: 2px solid gray;
  box-shadow: 2px 3px 5px grey;
  border-radius: 0.5vw;
}
#storyText
{
	  height: 65vh;
    line-height: 5vh;
    font-size: 2.1vw;
    overflow-x: hidden;
    overflow-y: auto;
    color: black;
    user-select: text !important;
    padding: 15px;
}
#musicIcon
{
  position: absolute;
  color: black;
  background: #feb300a6;
  display: none;
  width: 2.8vw;
  font-size: 2.5vw;
}

/* ------------------------------------------classes-------------------------------- */
.rightBtns{
  padding-left: 8px;
}
.rightBtns button{
  font-weight: bold;
    display: flex;
    justify-content: center;
    margin-top: 6.6vh;
}
.btnStyle
{
	margin-left:2.2vw !important;
	font-weight:bold !important;
}

/* ------------------------------------------scope resolution opr-------------------------------- */
::selection { background: #b3d4fc; }
input:focus
{
	border-bottom: 2px solid #3f51b5;
}
[contenteditable]:focus {
    outline: 0px solid transparent;
}
/* -----------------------------------------media query-------------------------------- */
@media screen and (max-width:600px){
  #storyText {
    height: 30vh;
    line-height: 2vh;
  }
  .btnStyle {
    margin-left: 4vw !important;
  }
}

.breadcrumb {
  background-color: unset;
  font-weight: 600;
  font-size: 1.4vw;
  margin: unset;
}
.breadcrumb-item+.breadcrumb-item::before
{
content: '-';
color: #6c757d;
}

.breadcrumb-item a{
color:white;
}
a:hover{
text-decoration: none;
}
.breadcrumb-item a:hover
{
color:black;
cursor: pointer;
}
.breadcrumb-item.active {
color: #6c757d;
}
.breadcrumbOpt .dropdown-item,a:not([href])
{
  color: #4990e2;
  font-weight: 700;
}
.breadcrumbOpt .dropdown-item:hover
{
  background-color: transparent;
  color:#2e6fb9!important;
  transition:all 0.4s ease-in-out;
}