*, *:before, *:after {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    position: relative;
    background-color: #5d5d5d;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.age-cont {
    position: absolute;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background-color: #d4d4d4f5;
    opacity: 1;
    overflow: auto;
}
.age-banner {
    max-width: 800px;
    width: 90%;
    background-color: white;
    margin: 10px auto;
    padding: 10px;
    box-shadow: 1px 7px 20px 2px rgb(0 0 0 / 40%);
    text-align: center;
    border-radius: 10px;
    left: 50%;
    overflow: hidden;
    pointer-events: all;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
}
.age-only {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    cursor: pointer;
}
.age-ok {
    display: inline-block;
    padding: 10px;
    background-color: green;
    color: white;
    margin-right: 5px;
    margin-top: 10px;
    cursor: pointer;
}
.age-leave {
    display: inline-block;
    padding: 10px;
    background-color: red;
    color: white;
    cursor: pointer;
}
.header-container {
    position:relative;
    display: flex;
    background-color: cadetblue;
    background-image: url("https://www.noshamevideos.com/img/header_bg.png");
    background-size: cover;
}
.footer-container {
    text-align: center;
    background-color: cadetblue;
    padding: 20px;
}
.last-update {
    position: absolute;
    color: white;
    top: 5px;
    right: 5px;
    font-size: 14px;
}
.site-name-container img {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
}
.black-line {
    min-height: 5px;
    padding: 5px;
    background-color: #333333;
    color: white;
    font-size: 18px;
    text-align: center;
}
.found-container {
    width: max-content;
    margin: 10px auto;
    padding: 5px;
    background-color: white;
    color: orangered;
    font-size: 20px;
    border-radius: 5px;
}
.sx-container {
    overflow: hidden;
}
.all_posts_container {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.all_posts_container_related {
    padding: 5px;
    padding-top: 10px;
    display: block !important;
    text-align: center;
}
.post_container_flex {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}
.post_container_flex_related {
    display: inline-block !important;
    flex: none;
    margin-right: 10px;
}
.post_container {
    width: 300px;
    height: 528px;
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
    cursor: pointer;
}
.post_container_related {
    width: 200px !important;
    height: 352px !important;
}
.post_img {
    width: 300px;
    display: block;
}
.post_img_related {
    width: 200px;
    display: block;
}
.post_info_container {
    background-color: white;
    position: absolute;
    inset: 0;
    background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0)
    );
    color: #fff;
    display: flex;
    align-items: flex-end;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.post_container:hover .post_info_container {
  transform: translateY(0);
  opacity: 1;
  cursor: pointer;
}
.post_info_text {
    background: linear-gradient(to top, rgb(247 7 7 / 80%), rgb(227 23 23 / 20%), rgb(255 24 24 / 0%));
    position: absolute;
    bottom: 0;
    width: 300px;
}
.post_info_text_related {
    width: 200px !important;
}
.post_info_title {
    padding: 5px;
    text-align: center;
}
.post_info_likes_container {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background-color: #f44336;
}
.post_info_likes_container_related {
    font-size: 16px;
}
.post_info_likes_container img {
    vertical-align: middle;
    margin: 0px 10px;
}
.related_title {
    background-color: #3d3d3d;
    font-size: 20px;
    font-weight: bold;
    color: white;
    padding: 10px;
    text-align: left;   
}
.likes_related {
    width: 30px;
}
a.tmbLink:link, a.tmbLink:active, a.tmbLink:visited {
	color: white;
	text-decoration: none;
}
a.tmbLink:hover {
	color: white;
	text-decoration: none;
}
.tag_link {
    background-color: white;
    border-radius: 5px;
    padding: 5px;
    font-size: 16px;
    margin: 5px;
    display: inline-block;
}
a.tag_link:link, a.tag_link:active, a.tag_link:visited {
	color: black;
	text-decoration: none;
}
a.tag_link:hover {
	color: black;
	text-decoration: none;
    background-color: rgb(190, 190, 190);
}
.video_tags {
    text-align: center;
    padding: 10px;;
}
.paginationContainer {
	text-align: center;
	padding: 5px;
	overflow: auto;
	display: flex;
    align-items: center;
    justify-content: center;
	margin: 10px;
    flex-wrap: wrap;
}
.paginationLink, .paginationThis, .paginationDisabled, .paginationDots {
	margin: 2px;
	width: 40px;
	height: 40px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.paginationThis {
	font-weight: bold;
	background-color: #E0E4E8;
	border-radius: 20px;
}
.paginationLink:link, .paginationLink:active, .paginationLink:visited {
	position: relative;
	background-color: #7FC1FF;
	color: white;
	border-radius: 20px;
	text-decoration: none;
}
.paginationLink:hover {
	background-color: #7FE1FF;
	cursor: pointer;
}
.paginationArrowLeft {
	-webkit-transform:rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
	height: 24px;
}
.paginationArrowRight {
	height: 24px;
}
.deleted_title {
    text-align: center;
    padding: 20px;
    color: white;
}
.video_container {
    display: flex;
    align-items: center;
}
.video_player {
	width: 100%;
    position: relative;
}
.add_like, .add_like_ok {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    z-index: 2;
}
.add_like:hover {
    cursor: pointer;
}
.liked_ok {
    position: absolute;
    top: 20px;
    left: 15px;
    width: 20px;
    z-index: 3;
}
#liked_zoom {
    display: none;
    position: absolute;
    top: 20px;
    left: 15px;
    width: 20px;
    z-index: 3;
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
    cursor: pointer;
}
.video_n {
    position: absolute;
    top: 5px;
    right: 5px;
    color: rgb(85, 85, 85);
    font-size: 12px;
    z-index: 2;   
}
.video_tag {
	width: 100%;
    height: auto;
    display: block;
    max-height: calc(100vh - 200px);
    background-color: black;
}
.video_sx {
    padding: 5px;
    width: 100%;
}
.video_title {
    background-color: #3d3d3d;
    font-size: 24px;
    font-weight: bold;
    color: white;
    padding: 20px;
    text-align: center;
}
.video_dx {
    width: 336px;
}
.video_wolf_1, .video_wolf_2, .video_wolf_3 {
    display: block;
}
.video_wolf_1, .video_wolf_2 {
    margin-bottom: 5px;
}
.cookieBanner {
    background-color: #00b7c1;
    color: white;
    font-size: 14px;
    padding: 10px;
    position: fixed;
    bottom: 0px;
    z-index: 999;
	width: 100%;
    left: 0px;
	box-sizing: border-box
}
.closeCookie {
    padding: 5px 10px;
    background-color: #103c51;
    color: white;
    font-size: 14px;
    display: inline-block;
    cursor: pointer;
}
a.contactLink:link, a.contactLink:active, a.contactLink:visited {
	color: #ffffff;
	text-decoration: none;
}
a.contactLink:hover {
	color: #525252;
	text-decoration: underline;
}
.tosCont {
    padding: 30px 10px;
    background-color: #313131;
    color: white;
    text-align: left;
    max-width: 900px;
    margin: 10px auto;
}
.tosDescr {
    margin-bottom: 10px;
}
.tosTitle, .tosDescr {
    padding: 5px;
}
.contact-cont {
	max-width: 900px;
	margin: 20px auto;
	color: white;
	text-align: left;
	font-size: 16px;
    background-color: #414141;
    padding: 20px;
	border-radius: 10px;
}
.contact-title {
	 font-size: 32px;
	 font-weight: bold;
	 margin-bottom: 10px;
}
.contact-descr {
	line-height: 24px;
	 margin-bottom: 10px;
}
.contact-form {
	border: 1px solid #d7d7d7;
	padding: 15px;
	width: 100%;
    font-family: Helvetica;
    font-size: 16px;
}
.contact-row-1 {
	margin-bottom: 20px;
	display: flex;
}
.contact-row-1sx {
    width: 50%;
    margin-right: 10px;
}
.contact-row-1dx {
    width: 50%;
    float: left;
    margin-left: 10px;
}
.contact-row-2 {
	width: 100%;
	margin-bottom: 10px;
}
.contact-actions {
    background-color: #58a3bb;
    color: white;
    padding: 10px;
    display: inline-block;
	cursor: pointer;
}
.contact-button {
	margin-top: 20px;
	text-align: center;
}
.check-privacy-text, .controllo-spam {
	font-size: 14px;
}
.link-checkbox {
	color: #ffffff;
}
.link-checkbox:link {
	text-decoration: underline;
}
.link-checkbox:visited {
	text-decoration: underline;
}
.link-checkbox:hover {
	text-decoration: none;
}
.link-checkbox:active {
	text-decoration: underline;
}
#check-contact {
	margin: 0;
	margin-right: 5px;
}
.spam-input {
	width: 50px;
	text-align: center;
	padding: 5px;
}
#error-cont {
    left: 50%;
    overflow: hidden;
    pointer-events: all;
    position: fixed;
    bottom: -100px;
    transform: translate(-50%);
    margin-top: 0px;
    color: white;
  	width: -webkit-max-content;
  	width: -moz-max-content;
 	width: max-content;
    background-color: #202124;
    z-index: 100000;
    padding: 10px 30px;
    margin: 0px auto;
    box-shadow: 1px 7px 20px 2px rgb(0 0 0 / 40%);
    text-align: left;
    display: none;
    border-radius: 10px;
	opacity: 0;
}
.error-row {
	margin: 5px;
}
.error-x {
	width: 24px;
	vertical-align: text-bottom;
	margin-right: 5px;
}
.sent-ok {
	background-color: white;
	padding: 10px;
	color: green;
}
.sent-ok img {
	vertical-align: middle;
	margin-right: 10px;
}
.made-img {
    height: 35px;
    margin-top: 10px;
}
.fixed-footer {
    position: fixed;
    bottom: 0px;
    width: 100%;
}
@media only screen and (max-width: 950px) {
    .post_info_container {
        background-color: white;
        position:static;
        inset:inherit;
        display:block;
        transform:none;
        opacity: 1;
        transition:none;
    }
    .post_container:hover .post_info_container {
        transform: none;
        opacity: 1;
        cursor: pointer;
    }
    .video_container {
        display: block;
    }
    .video_sx {
        padding: 0px;
    }
    .video_dx {
        margin-top: 5px;
        width: 100%;
        text-align: center;
    }
    .video_wolf_1, .video_wolf_2, .video_wolf_3 {
        display: inline-block;
    }
    .wolf_dx {
        display: inline-block;
    }
}
@media only screen and (max-width: 620px) {
    .post_container_flex {
        display: block;
        margin: 0px 10px;
    }
    .post_img {
        width: 100%;
    }
    .post_container {
        width: 100%;
    }
    .all_posts_container {
        display: block;
    }
    .post_info_text {
        width: 100%;
    }
    .contact-row-1 {
        margin-bottom: 20px;
        display: block;
        overflow: auto;
    }
    .contact-row-1sx {
        width:100%;
        margin-right: 0px;
        margin-bottom: 20px;
    }
    .contact-row-1dx {
        width: 100%;
        margin-left: 0px;
    }
    .fixed-footer {
        position:relative;
    }
}