@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:wght@300;400;500&display=swap');
@import url(fontawesome-all.css);

:root {
    --main-width: calc(100% / 12);
}

* {
	margin: 0;
	padding: 0;
	border: 0;
    box-sizing: border-box;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
    background: transparent;

    font-size: 100%;
    text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

input {   
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

html, body {
	height: 100%;

    font-size: 100%;
    text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Fira Sans Condensed', sans-serif;
    background-color: #ffffff;
    overflow: hidden;

    /*background-image: url(../images/template/bg.jpg) !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;*/
}

#MenuIcon {
    /*cursor: pointer;*/
}

#MenuIconMini {
    /*cursor: pointer;*/
    display: none;
}

.Chat .Messages .Blue .avatar {
    border-radius: 25px;
    width: 50px;
    height: 50px;
    margin-right: 10px;
    float: left;
    background-color: rgb(239,239,239);
    transition: transform .2s;
}

.Chat .Messages .Red .avatar {
    border-radius: 25px;
    width: 50px;
    height: 50px;
    margin-left: 10px;
    float: right;
    background-color: rgb(239,239,239);
    transition: transform .2s;
}

.Chat .Messages .avatar:hover {
    box-shadow: 2px 2px 5px rgb(239,239,239), -2px -2px 5px rgb(239,239,239);
    transform: scale(2);
}

.PhotoPrev {
    width: 36px;
    height: 36px;
    border 0px;
}

#TimeBG {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 300;

    /*background-image: url(../images/template/bg.jpg) !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;*/
}

#TimeCounter {
    width:100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #235e80;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
}

#TimeCounter .head {
    display: block;
    margin-bottom: 10px;
}

#TimeCounter .head2 {
    display: block;
    margin-top: 10px;
    color: #000000;
    font-size: 16px;
}

#TimeCounter .circle {
    display: inline-block;
    margin: 5px 5px;
    color: #235e80;
}

#TimeCounter .circle span {
    display: table-cell;
    margin: 105px 105px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    border: 2px solid rgb(35, 94, 128);
    text-align: center;
    vertical-align: middle;
    font-size: 32px;
    color: #235e80;

    border: 5px solid rgba(35, 94, 128, 0.1);
    /*border-left-color: rgb(238, 127, 0);*/
    background: transparent;
    animation: rotate-s-loader 20s linear infinite;
}

@keyframes rotate-s-loader {
    0% {
        border-left-color: rgba(35, 94, 128, 0.1);
        border-top-color: rgba(35, 94, 128, 0.1);
        border-right-color:  rgba(35, 94, 128, 0.1);
        border-bottom-color: rgba(35, 94, 128, 0.1); 
    }
    20% {
        border-left-color: rgb(35, 94, 128);
        border-right-color:  rgb(35, 94, 128);
    }
    40% {
        border-left-color: rgba(35, 94, 128, 0.1);
        border-right-color:  rgba(35, 94, 128, 0.1);
    }
    60% {
        border-top-color: rgb(35, 94, 128);
        border-bottom-color: rgb(35, 94, 128);
    }
    80% {
        border-top-color: rgba(35, 94, 128, 0.1);
        border-bottom-color: rgba(35, 94, 128, 0.1);
    }
    100% {
        border-left-color: rgba(35, 94, 128, 0.1);
        border-top-color: rgba(35, 94, 128, 0.1);
        border-right-color:  rgba(35, 94, 128, 0.1);
        border-bottom-color: rgba(35, 94, 128, 0.1);
    }
  }
  
#TimeCounter span h2 {
    font-size: 20px;
    font-weight: 400;
}

#DownButton {
	position: fixed;
	right: 0px;
	top: calc(15% + 160px);
    z-index: 399;
}

#DownButton a {
    width: 140px;
    height: 140px;
    border-radius: 50%;
	display: block;
	background: none repeat scroll 0% 0% #235e80;
	margin-right: -60px;
	padding: 25px 25px 25px 25px;
	vertical-align: middle;
    cursor: pointer;
    color: #ffffff;
    opacity: 0.7;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

#DownButton a:hover {
    opacity: 1;
    margin-right: -50px;
}

#DownButton a span {
    position: absolute;
    top: 50%;
    transform: translate(-10%, -50%);
}

#MentiButton {
	position: fixed;
	right: 0px;
	top: 15%;
    z-index: 400;
}

#MentiButton a {
    width: 140px;
    height: 140px;
    border-radius: 50%;
	display: block;
	background: none repeat scroll 0% 0% #F0AB00;
	margin-right: -60px;
	padding: 25px 25px 25px 25px;
	vertical-align: middle;
    cursor: pointer;
    color: #ffffff;
    opacity: 0.7;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

#MentiButton a:hover {
    opacity: 1;
    margin-right: -50px;
}

#MentiButton a span {
    position: absolute;
    top: 50%;
    transform: translate(-10%, -50%);
}

#KalendariumButton {
	position: fixed;
	right: 0px;
	top: 15%;
    z-index: 400;
}

#KalendariumButton a {
    width: 140px;
    height: 140px;
    border-radius: 50%;
	display: block;
	background: none repeat scroll 0% 0% #f1304d;
	margin-right: -60px;
	padding: 25px 25px 25px 25px;
	vertical-align: middle;
    cursor: pointer;
    color: #ffffff;
    opacity: 0.7;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

#KalendariumButton a:hover {
    opacity: 1;
    margin-right: -50px;
}

#KalendariumButton a span {
    position: absolute;
    top: 50%;
    transform: translate(-10%, -50%);
}

#CircleButton {
	position: fixed;
	right: 0px;
	top: 15%;
    z-index: 400;
}

#CircleButton a {
    width: 140px;
    height: 140px;
    border-radius: 50%;
	display: block;
	background: none repeat scroll 0% 0% #F0AB00;
	margin-right: -60px;
	padding: 25px 25px 25px 30px;
	vertical-align: middle;
    cursor: pointer;
    color: #ffffff;
    opacity: 1;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

#CircleButton a:hover {
    opacity: 1;
    margin-right: -50px;
}

#CircleButton a span {
    position: absolute;
    top: 50%;
    transform: translate(-10%, -50%);
}

#Menti {
    position: fixed;
    right: 0px;
    height: 100%;
    padding-top: 73px;
    z-index: 300;
}

#Menti iframe {
    width: 100%;
    height: 100%;
    /*padding-left: 100%;*/
    overflow: hidden;
}

.col-1 { width: calc(var(--main-width)); }
.col-2 { width: calc(var(--main-width) * 2); }
.col-3 { width: calc(var(--main-width) * 3); }
.col-4 { width: calc(var(--main-width) * 4); }
.col-5 { width: calc(var(--main-width) * 5); }
.col-6 { width: calc(var(--main-width) * 6); }
.col-7 { width: calc(var(--main-width) * 7); }
.col-8 { width: calc(var(--main-width) * 8); }
.col-9 { width: calc(var(--main-width) * 9); }
.col-10 { width: calc(var(--main-width) * 10); }
.col-11 { width: calc(var(--main-width) * 11); }
.col-12 { width: 100%; }

[class*="col-"] {
    float: left;
    overflow: hidden;
}

.Vertical {
    display: flex;
    align-items: center;
}

.FullHeight {
    min-height: 100%;
}

.Fixed {
    position: fixed;
}

.Wrapper {
    width: 100%;
    height: 100%;
}

.Navigation {
    height: 75px;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    background: linear-gradient(0deg, rgb(252,252, 252) 0%, rgb(227,227, 227) 100%);
}

.Logo, .Logo a {
    display: inline-flex;
    align-items: center;
    float: left;
    height: 75px;
}

.Logo a {
    padding: 0 30px;
    padding-left: 10px;
}

.Logo img {
    width: auto;
    height: 46px;
}

.Menu a {
    display: inline-flex;
    align-items: center;
    float: left;
    height: 75px;
    background-color: darkseagreen;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.User {
    float: right;
    display: inline-flex;
}

.User a {
    text-decoration: none; 

    color: #235e80;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.User a:hover {
    color: #183e54;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.User span {
    display: inline-flex;
    align-items: center;
    height: 75px;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #f96908;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.User span:hover {
    color: #e64415;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.User span img {
    width: 36px;
    height: 36px;
    margin-right: 0px;
    border: 2px solid rgb(239,239,239);
    border-radius: 50%;
    background-color: rgb(239,239,239);

    width: auto;
    height: 50px;
    border-radius: 5px;
}

.User span i {
    font-size: 16px;
    margin-left: 8px;
}


.User ul {
    position: fixed;
    top: 75px;
    right: 15px;
    background-color: #ffffff;
    border: 1px solid #efefef;
    border-top: 0px;
    border-radius: 10px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    padding: 17px 32px;
    list-style: none;
    font-size: 15px;
    font-weight: 300;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.User ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.User ul li:last-child {
    border-bottom: none;
}

.User ul li a {
    display: block;
    padding: 15px 5px;
    color: #235e80;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.User ul li a:hover {
    color: #e94d09;
}

.User ul li i {
    font-size: 14px;
    margin-left: 0;
    width: 20px;
}

.Content {
    width: 100%;
    height: 100%;
    padding-top: 75px;
}

.Player {

}

.videoWrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.Chat {
    height: 100%;
    background-color: #ffffff;
    border-left: 1px solid #e5e5e6;  
}

.Chat .Messages {
    height: calc(100% - 40px - 30px);
    overflow-y: scroll;
    word-wrap: break-word;
    overflow: hidden;
}

.Chat .Messages .Message {
    border-left: solid 3px transparent;
    font-size: 13px;
    margin: 10px 5px;
    padding: 5px 5px 7px;
    color: #333333;

   

    /*border-bottom: 1px solid #281536;*/
    /*margin-right: 0px;*/ /*CHK WITH IMAGES ??? */

    clear: both;
}

.Chat .Messages .emoticon {
    width: 32px;
    height: 32px;
    vertical-align: middle;
}

.Chat .Messages .photo {
    display: block;
    width: 100%;
    margin: 5px 0px;
    border-radius: 15px;
}

.Chat .Messages .Red {
    /*border-left: solid 1px rgb(40,40,40);*/


    text-align: right;
}

.Chat .Messages .Red strong {
    color: #e64415;
    color: #ea650d;
    font-size: 15px;
    font-weight: 400;

    padding: 5px;
}

.Chat .Messages .Moderate {

}

.Chat .Messages .Moderate strong {
    color: #235e80;
    font-size: 15px;
    font-weight: 400;

    padding: 5px;
}

.Chat .Messages .Blue {

}

.Chat .Messages .Blue strong {
    color: #285178;
    color: #335a7f;
    color: #384ae5;
    color: #235e80;
    font-size: 15px;
    font-weight: 400;

    padding: 5px;
}

.Chat .Messages .Message span {
    background-color: rgb(40,40,40);
    padding: 7px 10px;
    border-radius: 15px;
    margin: 2px 2px;
    display: inline-block;
    max-width: calc(100% - 70px);
    text-align: left;

    /*background-color: rgba(0,0,0,0.04);*/
    background-color: rgb(239,239,239);
}

.Chat .form input[type="text"] {
    width: calc(100% - 82px);
    height: 40px;
    margin: 15px 10px 15px 15px;
    display: inline-block;
    background-color: #ffffff;
    border: solid 1px #dcdfdf;
    border-radius: 2px;
    font-size: 13px;
    padding: 0 10px;
    color: #235e80;
    box-sizing: border-box;
    font-family: 'Fira Sans Condensed', sans-serif;

    /*background-color: rgb(15, 15, 15);
    border: solid 1px rgb(60, 60, 60);*/
    background-color: transparent;
    color: #000000;
    border-radius: 7px;

    /* MOD FOR IMG */
    width: calc(100% - 125px);



    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.DisableInput {
    background-color: rgba(60, 60, 60,0.2) !important;
}

.Chat .form input[type="text"]::placeholder {
    color: rgb(100,100,100);
}

.Chat .form button  {
     display: block;
    float: right;
    width: 40px;
    height: 40px;
    margin: 15px 10px 15px 0;
    font-size: 20px;
    background-color: transparent;
    border: solid 1px #dcdfdf;
    color: #235e80;
    border-radius: 7px;
    cursor: pointer;
    font-family: 'Fira Sans Condensed', sans-serif;

    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.Chat .form button:hover {
    background-color: #235e80;
    border: solid 1px #235e80;
    color: #ffffff;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.Chat .quiz  {
    display: block;
    text-align: center;
}

.Chat .quiz button  {
    width: 38px;
    height: 38px;
    margin: 15px 15px 15px 0;
    font-size: 20px;
    background-color: transparent;
    border: solid 1px #f0ab00;
    color: #f0ab00;
    border-radius: 2px;
    cursor: pointer;

    width: 50px;
    height: 38px;
    margin: 15px 7.5px 15px 7.5px !important;
}

.Chat .quiz button:hover {
    background-color: #f0ab00;
    border: solid 1px #f0ab00;
    color: #ffffff;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.Footer {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.Footer [class*="col-"] {
    padding: 30px 15px;
}

.Footer span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
}

.Footer a {
    display: block;
    padding: 0 5px;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
}

.Footer .Language {
    text-align: right;
}

@media only screen and ( max-width:1400px ) {
    
.col-3 { width: calc(var(--main-width) * 4); }
.col-9 { width: calc(var(--main-width) * 8); }
    
}

@media only screen and ( max-width:1000px ) {

    #MenuIcon {
 
    }

    .User span img {
        width: auto;
        height: 24px;
    }
    
    #MenuIconMini {
        display: inline-flex;
    }

    #TimeCounter {
        font-size: 20px;
    }
    
    #TimeCounter .head {
        margin-bottom: 10px;
    }
    
    #TimeCounter .circle {
        margin: 5px 5px;
    }
    
    #TimeCounter .circle span {
        width: 100px;
        height: 100px;
    }
    
    #TimeCounter span h2 {
        font-size: 14px;
    }
    
    [class*="col-"] {
        width: 100% !important;
    }
    
    .Vertical {
        display: block;
        align-items: center;
    }

    .FullHeight {
        min-height: 1%;
    }
    
    .Welcome {
        position: inherit;
    }
    
    .FormWrapper {
        width: 80%;
        margin: 0 auto;
        padding: 25px 0;
        text-align: center;
        margin-bottom: 45px;
    }
    
    .Footer {
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: rgba(233, 236, 239, 1);
    }
    
    .PlayerWrapper .Chat {
        margin-top: 0;
        height: 60%;
        background-color: #fafafa;
    }
    
    .PlayerWrapper .Player {
        margin-top: 50px;
        height: calc((100vw / 16) * 9 + 50px);
        background: rgb(35,31,32);
    }

    #DownButton {
        left: 0px;
        top: 15%;
        right: auto;
    }
    
    #DownButton a {
        margin-left: -60px;
        text-align: center;
    }
    
    #DownButton a:hover {
        margin-left: -50px;
    }
    
    #DownButton a span {
        transform: translate(10%, -50%);
    }
    
}


@media only screen and ( max-width:480px ) {


    
    #TimeCounter {
        font-size: 14px;
    }

    #TimeCounter .head {
        margin-bottom: 10px;
    }

    #TimeCounter .circle {
        margin: 5px 5px;
    }

    #TimeCounter .circle span {
        width: 75px;
        height: 75px;
        font-size: 18px;
    }

    #TimeCounter span h2 {
        font-size: 10px;
    }

    .Chat {
        border-left: 0px;  
    }
}