section.reels {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
section.reels reel.item {
    width: 450px;
    position: relative;
    display: flex;
    margin-bottom: 20px;
}
section.reels reel.item .main {
    background: black;
    padding: 5px;
    position: relative;
    width: 400px;
}
section.reels reel.item video {
    width: 380px;
    height: 590px;
    border-radius: 5px;
}
section.reels reel.item button.playPause {
    background-color: #454545;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: 0;
    padding: 0;
    cursor: pointer;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 1000;
    box-shadow: 0px 0px 4px 2px rgba(46, 46, 46, 0.75);
}
section.reels reel.item button.playPause > svg {
    pointer-events: none;
    position: absolute;
    top: 8px;
    left: 9px;
    color: white; 
    fill: currentcolor;
    width: 22px;
}
section.reels reel.item button.playPause.pause > svg:first-child {
    display: none;
}
section.reels reel.item button.playPause.pause > svg:last-child {
    display: block;
    top: 9px;
}
section.reels reel.item button.playPause:hover {
    background-color: #5f5f5f;
}
section.reels reel.item button.mute {
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 4px 2px rgba(46, 46, 46, 0.35);
    position: absolute;
    top: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    right: 15px;
    z-index: 1000;
    border: 0;
    padding: 0;
    cursor: pointer;
}
section.reels reel.item button.mute:hover {
    background-color: rgba(0, 0, 0, 0.4);
}
section.reels reel.item button.mute svg {
    pointer-events: none;
    position: absolute;
    top: 8px;
    left: 9px;
    color: white; 
    fill: currentcolor;
    width: 22px;
}
section.reels reel.item button.mute.muted svg:first-child {
    display: none;
}
section.reels reel.item button.mute.muted svg:last-child {
    display: inherit;
}
section.reels reel.item .reels_title {
    font-size: 16px;
    padding: 5px;
    text-align: center;
}
section.reels reel.item a.listing_link {
    background: white;
    font-size: 20px;
    padding: 5px 10px;
    border-radius: 20px;
    color: #222222;
    font-weight: bold;
    text-decoration: none;
    position: absolute;
    white-space: nowrap;
    right: 15px;
    bottom: 90px;
}
section.reels reel.item .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
section.reels reel.item .info .account {
    display: flex;
    align-items: center;
}
section.reels reel.item .info .account .account_photo {
    width: 35px;
    border-radius: 50%;
    height: 35px;
    object-fit: cover;
}
section.reels reel.item .info .account .account_name {
    padding-left: 10px;
    font-size: 15px;
}
section.reels reel.item .info .date {
    font-size: 15px;
    color: white;
}
section.reels reel.item .control {
    background: #000;
    margin-left: 10px;
    width: 40px;
    padding: 10px 5px;
}
section.reels reel.item .control .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 30px;
}
section.reels reel.item .control .icon a {
    text-decoration: none;
}
section.reels reel.item .control .icon span:first-child {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #222;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}
section.reels reel.item .control .icon span:first-child:hover {
    background-color: #353535;
}
section.reels reel.item .control .icon span svg {
    pointer-events: none; 
    display: inherit; 
    position: absolute;
    top: 8px;
    left: 9px;
    color: white; 
    fill: currentcolor;
    width: 22px;
}
section.reels reel.item .control .icon span:last-child {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    color: #ababab;
    text-decoration: none;
}
/*section.reels reel.item .control .icon span:first-child:before {
    content: '';
    position: absolute;
    background: url(../img/control_reels_icons.png) top center no-repeat;
    background-size: 100%;
    width: 22px;
    height: 22px;
    top: 10px;
    left: 9px;
    filter: brightness(0.8);
}
section.reels reel.item .control .icon span.dislikes:before {
    background: url(../img/control_reels_icons.png) 0 -21px no-repeat;
    background-size: 100%;
}
section.reels reel.item .control .icon span.comments:before {
    background: url(../img/control_reels_icons.png) 0 -37px no-repeat;
    background-size: 83%;
    left: 11px;
    top: 11px;
}
section.reels reel.item .control .icon span.share:before {
    background: url(../img/control_reels_icons.png) 0 -73px no-repeat;
    background-size: 100%;
    left: 10px;
}
section.reels reel.item .control .icon span.add_reels:before {
    background: url(../img/control_reels_icons.png) 0 -101px no-repeat;
    background-size: 100%;
    top: 9px;
}*/
section.reels reel.item .control .icon:hover span:first-child:before {
    filter: brightness(1);
}

@media screen and (max-width: 991px) {
    section.reels reel.item {
        width: 300px;
    }
}
@media screen and (max-width: 768px) {
    section.reels reel.item {
        width: 90%;
    }
    section.reels reel.item video {
        width: 100%;
        height: auto;
        min-height: 440px;
    }
    section.reels reel.item .control {
        position: absolute;
        right: 10px;
        top: 70px;
        background-color: rgba(0, 0, 0, .5);
        opacity: 0.8;
    }
}
@media screen and (max-width: 400px) {
    section.reels reel.item a.listing_link {
        bottom: 60px;
    }
}