/* css */

.toc-container {
  position: sticky;
  top: 13%;
  background-color: rgb(255, 255, 255);
  padding: 10px 0;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 10px;
  border-radius: 0px 16px 16px;
	display: none;
}

/* .toc-container {
	position: fixed;
	top: auto;
	bottom: auto;
	left: auto;
	right: auto;
	width: 12%;
	background-color: rgb(255, 255, 255);
  padding: 10px 0;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 10px;
  border-radius: 0px 16px 16px;
	display: none;
} */

.toc-container .title {
  padding-left: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.toc-fixed ul {
	list-style: auto!important;
}
.toc-fixed ul li {
	list-style: auto;
	list-style-position: inside;
	font-family: 'HelveBold';
    font-size: 14px;
    padding-left: 25px !important;
}
.toc-fixed li.active {
    background-color: rgb(159 117 185);
    color: rgb(255, 255, 255);
    padding: 5px 25px !important;
}

.toc-fixed li.active:before {
	top: 11px;
}

.toc-fixed li {
    cursor: pointer;
    list-style-position: inside;
    padding: 5px 5px 5px 8px;
    border-radius: 0px 16px 16px;
    margin-bottom: 10px !important;
    font-weight: normal;
    font-size: 15px;
    display: block;
    margin: 0 0 10px !important;
}

.toc-container-content {
    background: #fff;
    margin: 12px 0;
    padding: 10px 0;
    border-radius: 10px;
    max-width: 365px;
    margin: 20px auto;
    text-align: center;
    background: #fff;
    border: 2px solid #ffd7ec;
    cursor: pointer;
}



.single-post #article .toc-container-content .toc-fixed ul li:before {
	content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #efa9bd;
    border-radius: 50%;
    position: absolute;
    left: 12px;
    top: 7px;
}

.toc-container-content .toc-fixed ul {
    margin: unset !important;
    display: none;
    border-top: 1px solid #ccc;
    margin-top: 15px !important;
    padding: 15px 0 0;
}

.toc-container-content .title {
  
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'utm-he';
    color: #342040;
    position: relative;
}

.toc-container-content .title:before {
    content: '';
    display: inline-block;
    width: 26px;
    height: 32px;
    background: url(https://phathai.vn/wp-content/themes/pc/img/ic-tit-fixtoc.png) no-repeat top left;
    position: absolute;
    left: 45px;
    top: -2px;
}

.toc-container-content .title:after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 9px;
    background: url(https://phathai.vn/wp-content/themes/pc/img/af-tit-fixtoc.png) no-repeat top left;
    position: absolute;
    right: 25px;
    top: 10px;
}


.toc-container-content .toc-fixed li {

	padding: 6px 10px;
}


.toc-container-content .toc-toggle {
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.toc-toggle.active {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}