@import "color.css";

/*border-color: var(--title);*/


.videos_rss_container {
	width: 100%;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}
.uploaded_video_section {
	width: 60%;
	overflow: hidden;
}
.top_uploaded_video_title {
	font-size: 25px;
	font-weight: bold;
	color: var(--title);
}
.top-submitted-swiper {
	width: 100%;
	height: auto;
	padding-bottom: 0px;
}
.swiper-wrapper {
	width: 100%;
	height: 100%;
}
.oneTopUploadedVideoContainer {
	width: 100%;
	height: 100%;
	position: relative;
}
.oneTopUploadedVideoTitle {
	font-size: 18px;
	color: white;
	padding-bottom: 10px;
}
.oneTopUploadedVideo {
	width: 100%;
	height: 400px;
	position: relative;
}
.uploadedVideoPlayContainer {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 2;
	cursor: pointer;
	background-color: rgba(0,0,0,0.3);
	transition: all 0.6s;
}
.uploadedVideoPlayCircle {
	width: 50px;
	height: 50px;
	border-radius: 50px;
	background-color: rgba(255,255,255,0.8);
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	transition: all 0.6s;
}
.uploadedVideoPlayTriangle {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12.5px 0 12.5px 15px;
	border-color: transparent transparent transparent var(--title);
	line-height: 0px;
	_border-color: #000000 #000000 #000000 var(--title);
	_filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
	position: absolute;
	left: 55%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.uploadedVideoPlayContainer:hover {
	background-color: rgba(0,0,0,0.2);
}
.uploadedVideoPlayContainer:hover .uploadedVideoPlayCircle {
	background-color: rgba(255,255,255,1);
}
.swiper-button-next, .swiper-button-prev {
	color: var(--title)!important;
	margin-top: 0;
}









.videoOfTheWeekContainer {
	width: 100%;
	overflow: hidden;
}
.videoOfTheWeekTitleContainer {
	width: 100%;
	display: flex;
	margin-bottom: 10px;
	align-items: center;
}
.videoOfTheWeekTitle {
	color: var(--title);
	font-size: 18px;
}
.videoOfTheWeekRegister {
	color: white;
    font-size: 12px;
    text-align: center;
	background-color: var(--title);
	line-height: 0.9;
    padding-top: 3px;
    padding-bottom: 2px;
    padding-left: 7px;
    padding-right: 7px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
    margin-right: 10px;
    border: 2px solid var(--title);
}
.videoOfTheWeekRegister:hover {
	background-color: transparent;
	color: var(--title);
}
.viewAllUploaded {
	padding-left: 5px;
	padding-right: 5px;
}
.viewAllUploaded:hover {
	color: white;
	text-decoration: underline;
}
.next-week-videos-swiper {
	width: 100%;
    height: 452px;
    padding-bottom: 0;
    margin-bottom: 23px;
    overflow: visible;
}
.next-week-videos-swiper-double {
	height: 910px;
}
.oneNextWeekVideoContainer {
	height: 200px!important;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}


.shareVideo {
	position: absolute;
	z-index: 3;
	right: 10px;
	top: 10px;
	background-color: var(--title);
	width: 30px;
    height: 30px;
    border-radius: 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
}
.shareVideo svg{
	width: 60%;
	fill: white;
}
.shareVideo:hover {
	width: 35px;
    height: 35px;
    border-radius: 10px;
    top: 6px;
    right: 6px;
}
.shareVideo path{
	fill: white;
}


.likeButton {
	position: absolute;
	z-index: 3;
	left: 30px;
	bottom: -10px;
	background-color: var(--title);
	width: 30px;
    height: 30px;
    border-radius: 30px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
}
.likeButton svg{
	width: 60%;
}
.likeButton:hover {
	width: 35px;
    height: 35px;
    border-radius: 35px;
    bottom: -15px;
    left: 28px;
}
.likeButton path{
	fill:none;
	stroke-linecap:round;
	stroke-linejoin:round;
}
.likeButton .likeHand {
	stroke:white;
}
.likeButton .likeRect {
	stroke:white;
	fill:var(--title);
}
.likeButton .likeButton {
	stroke:white;
}
.dislikeVideo {
	width: 33px;
	height: 33px;
	bottom: -14px;
    left: 29px;
	-webkit-transform: rotate3d(0, 0, -1, 180deg);
	-moz-transform: rotate3d(0, 0, -1, 180deg);
	-ms-transform: rotate3d(0, 0, -1, 180deg);
	transform: rotate3d(0, 0, -1, 180deg);
}

.likeCount{
	padding-left: 6px;
    padding-right: 6px;
	height: 22px;
	background-color: white;
	position: absolute;
	right: 15px;
    bottom: -10px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}
.likeCountIn {
	bottom: 10px!important;
}
.likeCountNumber{
	color: black;
	font-size: 10px;
	font-weight: bold;
	line-height: 0.9;
	padding-left: 2px;
    padding-right: 2px;
}
.likeCount svg{
	width: 15px;
	padding-left: 1px;
	padding-right: 1px;
}
.likeCount path{
	fill:none;
	stroke-linecap:round;
	stroke-linejoin:round;
}
.likeCount .likeHand {
	stroke:var(--title);
}
.likeCount .likeRect {
	stroke:var(--title);
	fill:white;
}
.likeCount .likeButton {
	stroke:var(--title);
}




.rss_section {
	width: calc(40% - 15px);
}
.rss_section_full {
	width: 100%;
}
.rss_title {
	font-size: 20px;
	color: white;
	font-weight: bold;
	line-height: 0.9;
	padding-bottom: 45px;
}
.rss_container {
	width: 100%;
	padding: 10px;
	background-color: var(--background);
	height: 100%;
    max-height: 907px;
    overflow: auto;
}
.oneRss {
	width: 100%;
	margin-bottom: 20px;
	position: relative;
}
.oneRssTop {
	width: 100%;
	height: 60px;
	display: flex;
	margin-bottom: 5px;
}
.oneRssImg {
	width: 60px;
	height: 60px;
	background-color: grey;
}
.oneRssTitleDate {
	width: calc(100% - 60px);
	padding-left: 8px;
}
.oneRssTitleDate_ar {
	padding-left: 0px;
	padding-right: 8px;
}
.oneRssTitle {
	font-size: 12px;
	font-weight: bold;
	color: var(--title);
	line-height: 1.2;
	padding-bottom: 3px;
}
.oneRssDate {
	font-size: 10px;
	color: white;
	line-height: 0.9;
}
.oneRssContent {
	font-size: 13px;
	color: white;
	width: 100%;
	line-height: 1.1;
}



.uploadYourVideoButtonContainer {
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 30px;
    margin-bottom: 30px;
}
.uploadYourVideoButtonTitle {
	font-size: 23px;
	text-align: center;
	line-height: 0.9;
	padding-bottom: 10px;
	color: white;
}
.uploadYourVideoButton {
	font-size: 25px;
	background-color: white;
	border-radius: 20px;
	cursor: pointer;
	border: 2px solid white;
	color: var(--title);
	padding-left: 25px;
    padding-right: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.uploadYourVideoButton:hover {
	background-color: transparent;
	border: 2px solid var(--title);
	color: var(--title);
}
#uploadYourVideoMobile {
	display: none;
}









/*///////////////////////// share modal /////////////////////////*/
.modelShareLinkContainer {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
  left: 0px;
  top: 0px;
}
#shareLinkModal {
  display: flex;
  align-items: center;
  justify-content: center;
}
.closeShareModal {
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 19px;
}
.closeShareModal svg {
  width: 30px;
  height: 30px;
}
.modalInShare {
  width: 452px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  background: white;
}
.shareTitleContainer {
  margin: 0 0 30px;
    line-height: 1;
    display: flex;
    align-items: center;
}
.shareTitleIcon {
  width: 19px;
  height: 19px;
}
.shareTitleIcon svg {
  width: 19px;
  height: 19px;
}
.shareTitle {
  margin-left: 12px;
  font-size: 16px;
}
.shareLinkInput {
  margin-bottom: 30px;
  width: 332px;
  height: 54px;
  border: 1px solid rgba(0,0,0,0.2);
  /*font-family: Avenir Next;*/
  font-size: 14px;
  padding: 0 15px
}
.shareLinkInput:focus {
  outline: none;
  outline: 0px solid transparent;
  outline-offset: 0px;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: transparent;
  --tw-ring-color: transparent;
  --tw-ring-offset-shadow: none;
  --tw-ring-shadow: none;
  box-shadow: none;
  border-color: transparent;
  border: 1px solid rgba(0,0,0,0.2);
}
.shareLinkInput_ar{
	text-align: left;
}
.shareModalButtons {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: flex-end;
}
.shareModalButtons_ar{
	direction: ltr;
}
.shareModalCancel {
  border-color: var(--title);
  color: var(--title);
  font-size: 14px;
  border-style: solid;
  border-width: 1px;
  width: auto;
  padding: 0 24px;
  cursor: pointer;
  height: 40px;
  margin-right: 24px;
}
.shareModalCancel:active {
  opacity: 0.8;
}
.shareModalCancel:hover {
	opacity: 0.8;
}
.shareModalCopy {
  background-color: var(--title);
  color: white;
  font-size: 14px;
  border-width: 0px;
  width: auto;
  padding: 0 24px;
  cursor: pointer;
  height: 40px;
}
.shareModalCopy:active {
  opacity: 0.8;
}
.shareModalCopy:hover {
	opacity: 0.8;
}
/*///////////////////////// share modal /////////////////////////*/










@media all and (max-width: 991px) {
	.videos_rss_container {
		justify-content: unset;
    	flex-direction: column;
	}
	.uploaded_video_section {
		width: 100%;
	}
	.rss_title {
		padding-bottom: 20px;
	}
	.rss_section {
		width: 100%;
	}
	.rss_container {
		max-height: 500px;
	}
}

@media all and (max-width: 640px) {
	#uploadYourVideoDesktop {
		display: none;
	}
	#uploadYourVideoMobile {
		display: flex;
	}
	.uploadYourVideoButtonContainer {
		margin-top: 20px;
    	margin-bottom: 40px;
	}
	.uploadYourVideoButtonTitle {
		font-size: 21px;
	}
	.uploadYourVideoButton {
		font-size: 23px;
	}

	.top-submitted-swiper {
		padding-top: 0px;
	}
	.top_uploaded_video_title {
		font-size: 18px;
	}
	.oneTopUploadedVideoTitle {
		font-size: 15px;
		padding-bottom: 6px;
	}
	.videoOfTheWeekTitleContainer {
		margin-bottom: 0px;
	}
	.videoOfTheWeekTitle {
		font-size: 14px;
    	line-height: 1;
	}
	.videoOfTheWeekRegister {
		font-size: 10px;
	}
	.next-week-videos-swiper {
		height: 160px;
	}
	.next-week-videos-swiper-double {
		height: 160px;
	}
	.oneNextWeekVideoContainer {
		height: 140px!important;
		width: 220px;
	}
	.oneTopUploadedVideo {
		height: 200px;
	}
	.uploadedVideoPlayCircle {
		width: 30px;
	    height: 30px;
	    border-radius: 30px;
	}
	.uploadedVideoPlayTriangle {
		border-width: 6.5px 0 6.5px 8px;
	}
	.likeButton {
		left: 5px;
	}
	.likeButton:hover {
	    left: 3px;
	}
	.likeCount {
		right: 10px;
	}
	.rss_title {
		font-size: 18px;
		padding-bottom: 15px;
		text-align: center;
	}
	.oneRssContent {
		font-size: 12px;
	}
	.rss_container {
		max-height: 400px;
	}
	.videoOfTheWeekRegister {
		padding-top: 2px;
	}
}


.popupUploadedVideo video {
	max-height: 80vh;
}
.popupUploadedYoutube {
    height: 500px;
}
@media all and (max-width: 685px) {
    .popupUploadedYoutube {
        height: 200px;
    }
}

@media all and (max-width: 600px) {
	.modalInShare {
		width: 95%;
		padding: 20px;
	}
	.shareTitleContainer {
		margin: 0 0 10px;
	}
	.shareLinkInput {
		margin-bottom: 15px;
    	width: 100%;
    	height: 40px;
    	font-size: 12px;
    	padding: 0 10px;
	}
	.shareModalButtons {
		height: 30px;
	}
	.shareModalCancel {
		font-size: 12px;
		height: 30px;
    	margin-right: 15px;
	}
	.shareModalCopy {
		font-size: 12px;
		height: 30px;
	}
}

.viewAllUploadedBottom {
	display: none;
}
@media all and (max-width: 420px) {
    .viewAllUploadedTop {
        display: none;
    }
    .viewAllUploadedBottom {
		display: block;
		padding-left: 0px;
		padding-right: 0px;
	}
}