.watchlist_parent {
	position: relative;
}
.dropdown-content {
    background-color: rgb(0 0 0 / 90%);
    margin: 0;
    display: none;
    min-width: 194px;
    overflow-y: auto;
    opacity: 0;
    position: relative;
    left: 0;
    top: 0;
    z-index: 9999;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    box-sizing: border-box;
    border-radius: 3px;
}
.dropdown-content li.dropdown-title {
    cursor: default;
    color: #fff;
    padding: 10px 20px;
}
.dropdown-content li {
    color: rgba(0,0,0,.87);
    cursor: pointer;
    text-align: left;
}
.dropdown-content li>a, .dropdown-content li>span {
    font-size: 16px;
    display: block;
    line-height: 20px;
    padding: 8px 20px;
    font-weight: 400;
}
.dropdown-content li>a:hover{
        background-color: #141519;
}
.super__watchlist-menu {
    display: flex;
}

.super__watchlist-btn {
-webkit-box-shadow: 0 1px 2px rgb(0 0 0 / 4%);
    box-shadow: 0 1px 2px rgb(0 0 0 / 4%);
    box-sizing: border-box;
    padding: 8px 9px;
    border: 1px solid rgba(0,0,0,.1);
    color: #fff;
    background: #25252d;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    cursor: pointer;
}

.super__watchlist-btn {
    display: flex;
    flex: 0 0 35px;
    justify-content: center;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
.super__watchlist-select i {
    color: #a9a9a9;
    margin-right: 8px;
    margin-left: 2px;
}
.dropdown-content li {
    margin: 0;
}
.watchlist_parent .dropdown-content li.delete-watchlist a {
    color:#ff2128;
}
.dropdown-title {
    font-weight: 500;
    padding: 14px 12px;
    font-size: 16px;
}

.page__watch-list--mobile--list .page__watch-list--mobile--item {
    position: relative;
    padding-left: 20px;
    width: 50%;
    margin-bottom: 10px;
}

.page__watch-list--mobile--list .page__watch-list--mobile--item div:nth-child(2){
    color: #fff;
    margin-left: 10px;
    font-weight: 500;
    font-size: 12px;
}

.page__watch-list--mobile--list .page__watch-list--mobile--item:nth-child(1)::before,
.page__watch-list--mobile--list .page__watch-list--mobile--item:nth-child(2)::before,
.page__watch-list--mobile--list .page__watch-list--mobile--item:nth-child(3)::before,
.page__watch-list--mobile--list .page__watch-list--mobile--item:nth-child(4)::before,
.page__watch-list--mobile--list .page__watch-list--mobile--item:nth-child(5)::before,
.page__watch-list--mobile--list .page__watch-list--mobile--item:nth-child(6)::before{
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    left: 0;
    background-color: #25252d;
    border-radius: 3px;
}


.page__watch-list--mobile--list .page__watch-list--mobile--item:nth-child(2)::before{
     background-color: #4a9d43;
}
.page__watch-list--mobile--list .page__watch-list--mobile--item:nth-child(3)::before{
     background-color: #c34aa5;
}
.page__watch-list--mobile--list .page__watch-list--mobile--item:nth-child(4)::before{
     background-color: #5e73e1;
}
.page__watch-list--mobile--list .page__watch-list--mobile--item:nth-child(5)::before{
     background-color: #f44336;
}
.page__watch-list--mobile--list .page__watch-list--mobile--item:nth-child(6)::before{
     background-color: #ff9800;
}
@media only screen and (max-width:768px) {
    .super__watchlist-select {
        flex-shrink: 0;
    }
    .super__watchlist-menu {
        justify-content: center;
    }
}
.watchlist_parent .dropdown-content li.active a {
    color: #8b1014;
}

.anime-item__watch-status {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background-color: #3687bfcf;
    color: white;
    font-size: 0.9em;
    transition: all 0.5s;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}
.anime-item__watch-status.watching {
    background-color: #009933ad;
}
.anime-item__watch-status.seen {
    background-color: #bf3643cf;
}
.anime-item__watch-status.will-watch {
    background-color: #3687bfcf;
}
.anime-item__watch-status.abandoned {
    background-color: #302f30cf;
}
.anime-item__watch-status.favourite {
    background-color: #db8d3dcf;
}
.new-profile__watch-list {
    margin-bottom: 20px;
    padding: 10px;
}
.page__watch-list--mobile{
    margin-bottom: 30px;
}
.new-profile__watch-bar {
height: 13px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 4px;
    display: flex;
    margin-bottom: 15px;
    overflow: hidden;
}
.new-profile__watch-bar div {
    height: 100%;
}
.new-profile__watch-bar div:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.new-profile__watch-bar div:last-child {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
.new-profile__watch-bar--watching,
.new-profile__watch-type:nth-child(1)::before {
    background-color: #4a9d43;
}
.new-profile__watch-bar--will-watch,
.new-profile__watch-type:nth-child(2)::before {
    background-color: #c34aa5;
}
.new-profile__watch-bar--seen,
.new-profile__watch-type:nth-child(3)::before {
    background-color: #5e73e1;
}
.new-profile__watch-bar--abandoned,
.new-profile__watch-type:nth-child(4)::before {
    background-color: #f44336;
}
.new-profile__watch-bar--favourite,
.new-profile__watch-type:nth-child(5)::before {
    background-color: #ff9800;
}
.new-profile__watch-types {
    display: flex;
    margin-top: 5px;
    font-size: 0.85em;
}
.new-profile__watch-type {
    margin-right: 15px;
    color: rgba(0,0,0,.87);
}
.new-profile__watch-type:hover {
    color: #f66600;
}
.new-profile__watch-type::before {
    content: '';
    display: inline-block;
    vertical-align: top;
    width: 8px;
    height: 8px;
    margin: 2px 7px 0 0;
    background-color: #79c2d0;
    border-radius: 50%;
}
.new-profile__watch-type span:first-child:after {
    content: '-';
    margin: 0 5px;
}
.show_it {
    display: block;
    width: 224px;
    left: -12px;
    height: auto;
    transform-origin: 100% 0;
    opacity: 1;
    transform: scaleX(1) scaleY(1);
    position: absolute;
    top: 35px;
}
@media (max-width: 700px) {
    .show_it {
    	width: 228px;
		left: -18px;
        height: auto;
	}

}
.watchlist__sort-types {
    display: flex;
    position: relative;
    background-color: #fff;
    box-shadow: 0 0 1px 0 rgb(24 94 224 / 15%), 0 6px 12px 0 rgb(24 94 224 / 15%);
    padding: 0.75rem;
    border-radius: 99px;
}
.box-body-s {
    background-color: #fff!important;
    position: relative;
    margin-bottom: 1rem!important;
    padding: 0.7rem 1rem!important;
    box-shadow: 0 1px 1px rgb(0 0 0 / 10%);
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,.14);
}
.single_tabs {
    border-bottom: solid 3px #f5f7fa;
}
.single_tabs {
    width: 100%;
    float: left;
    padding: 0 25px;
}
ul.smenu {
    float: left;
    padding: 12px 0;
    overflow: hidden;
}
ul.smenu li {
    float: left;
}
ul.smenu li a {
    color: #222d34;
}
ul.smenu li a {
    width: 100%;
    text-align: center;
    float: left;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    border-radius: 3px;
}
ul.smenu li a.selected {
    background: #00bcd4;
}
ul.smenu li a.selected, ul.smenu li a.selected:hover {
    color: #fff;
}
@media only screen and (max-width: 540px) {
	ul.smenu {
	    background: #f5f7fa;
	}
	ul.smenu li {
	    width: 50%;
	    padding: 2px;
	}
	ul.smenu li a {
	    text-shadow: none;
	    font-size: 14px;
	    font-weight: 500;
	    text-align: center;
	    padding: 10px 15px;
        background: rgba(0,0,0,.03);
	    color: #222d34;
	}
}
.new-profile__title {
    text-transform: uppercase;
    color: #505050;
    font-size: 1.1em;
    font-weight: 500;
    margin: 0 0 10px;
}
.new-profile__title a {
    color: #505050;
}
@media only screen and (max-width: 580px) {
	.new-profile__watch-types {
    	flex-direction: column;
	}
}