.models-list_video {
	display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    color: var(--color-white);
    gap: 10px;
}

.models-list_video .item {
    display: flex;
    align-items: center;
}

.models-list_video .item .avatar {
    background: var(--bg-darkness);
    color: var(--color-second);
    font-size: 20px;
	width: 60px;
    height: 60px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 10px 0 0;
	display: flex;
    align-items: center;
    justify-content: center;
}

.models-list_video .item .avatar img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
}

.models-list_video .name {
    color: var(--color-white);
    margin: 0 0 10px;
    display: inline-block;
	transition: color .3s;
}

@media screen and (min-width: 1024px) {
	.models-list_video .name:hover {
		color: var(--color-active);
	}
}

.models-list_video .subscriptions_holder .btn {
	color: var(--color-active);
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    padding: 6px 11px;
    box-shadow: inset 0 0 0 2px var(--color-active); 
    display: inline-block;
	transition: all .3s;
}

.models-list_video .subscriptions_holder .btn.hidden {
	display: none;
}
 
@media screen and (min-width: 1024px) {
	.models-list_video .subscriptions_holder .btn:hover {
		background-color: var(--bg-active);
		box-shadow: inset 0 0 0 2px var(--bg-active);
		color: var(--color-white);
	}
}

.models-list_video .blockUI {
	display: none !important;
}

.user-inform .ava.no-ava {
    box-shadow: 0 0 0 2px inset var(--color-tools);
}

@media screen and (min-width: 1025px) {
    .user-inform a.ava.no-ava:hover {
        transition: box-shadow .3s;
        box-shadow: 0 0 0 2px inset var(--color-active);
    }
}

.user-inform .ava.no-ava img {
    object-fit: contain;
    width: 84%;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

.download_holder .btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-second);
    min-width: 40px;
    height: 40px;
    box-shadow: inset 0 0 0 2px var(--color-tools);
    border-radius: 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 10px;
}

@media screen and (min-width: 1025px) {
    .download_holder .btn:hover {
        color: var(--color-white);
        box-shadow: inset 0 0 0 2px var(--color-active);
    }
}

.player-holder .no-player::after,
.th.premium .card-image::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.70);
    backdrop-filter: blur(10px);
}

.th.premium .card-image .img {
    border-radius: 22px;
}

.th.premium .premium_holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    flex-direction: column;
    gap: 10px;
}

.th.premium .premium_holder .text {
    color: #FFF;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    text-transform: capitalize;
}

.player-holder .no-player img {
    filter: blur(0);
}

.player-holder .no-player .message {
    z-index: 1;
    line-height: 1.4;
}

.player-holder .no-player .message form .submit {
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    padding: 11px 20px;
    border: none;
    background: none;
    font-family: inherit;
    background-color: var(--bg-active);
    box-shadow: inset 0 0 0 2px var(--bg-active);
    color: var(--color-white);
    transition: background-color .3s, box-shadow .3s, color .3s;
    margin: 10px auto 0;
    text-transform: capitalize;
    cursor: pointer;
}

@media screen and (min-width: 1025px) {
    .player-holder .no-player .message form .submit:hover {
        color: var(--color-white);
        box-shadow: inset 0 0 0 2px var(--color-active);
        background-color: var(--bg-black);
    }
}

.player-holder .no-player img.premium_img {
    position: static;
    width: auto;
    height: auto;
    margin: 0 auto 10px;
}

.modal-holder .btn.login {
    width: 100%;
    display: block;
}

.modal-holder .captcha-control,
.modal-main .captcha-control {
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 480px) {
    .modal-holder .btn.login {
        min-width: 384px;
    }
}

@media screen and (max-width: 1160px) {
    .headline + .twocolumns {
        flex-direction: column;
    }

    .twocolumns .content {
        width: 100%;
    }

    .aside-spot {
        display: flex;
        width: 100%;
        flex-direction: column;
        max-width: 100%;
        margin-top: 25px;
    }

    .aside-spot center {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
}









