.cbalink{
	display: none;
}

*{
	margin: 0;
	padding: 0;
	color: #363636;
}

a{
	text-decoration: none;
	color: #fff;
}

li{
	list-style-type: none;
}

hr{
	border: none;
}

body{
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	min-height: 80vh;
}

::-moz-scrollbar{
	width: 0;
	background-color: transparent;
}

::-webkit-scrollbar {
    width: 0px;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}

.header{
	width: 100%;
	height: 100vh;
	background-image: url(../img/analyst.png);
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	box-sizing: border-box;
}

.disabled {
	display: none;
}

.menu{
	width: 100%;
	height: 15vh;
	background-color: rgb(0,0,0);
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	padding-left: 50px;
	padding-right: 50px;
	color: #fff;
	box-sizing: border-box;
}

.logo{
	text-transform: uppercase;
}

.menu-item{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	width: 40%;
	justify-content: space-between;
	text-decoration: none;
	/* text-transform: uppercase; */
}

.menu-item a:hover{
	color: #ffa200;
	transition: 0.3s;
}

.logo a .logoImage{
	/*width: 7.2vw;*/
	width: 80px;
    height: auto;
}

.menu-item li:last-child/*, .menu-item li:first-child*/{
	display: none;
}




.title/*, .title p*/{
	margin: auto auto;
	padding-top: 35vh;
	text-align: center;
	text-transform: uppercase;
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 120px;
	color: #fff;
}

.title p {
	font-size: 17px;
	padding-top: 30px;
	font-weight: normal;
	color: #fff;
}

.title1 {
	margin: auto auto;
	padding-top: 35vh;
	text-align: center;
	text-transform: uppercase;
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 120px;
	color: #0072bc;
}

.button{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
}

.button-title{
	width: 300px;
	height: 50px;
	background-color: #ffa200;
	text-transform: uppercase;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	font-weight: bold;
}

.button-title:hover{
	background-color: #0072bc;
	transition: 0.5s;
}


/* CATEGORY PAGE */

.category{
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: space-around;
	-ms-align-items: center;
	align-items: center;
	width: 100%;
	height: 85vh;
}

.catigory-title{
	color: #363636;
	text-transform: uppercase;
	/* font-weight: bold; */
	font-size: 25px;
}

.category-item{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-around;
	-ms-align-items: center;
	align-items: center;
}

.category-item a{
	text-transform: uppercase;
	font-size: 20px;
	/* font-weight: bold; */
	/* letter-spacing: 30px; */
	line-height: 30px;
}

/*.student, .teacher, .programmer{
	width: 250px;
	height: 250px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-background-size: contain;
	background-size: contain;
}

.category-item a:hover{
	font-size: 25px;
	color: #ffa200;
	transition: 0.2s;
}

.student{
	background-image: url(../img/students.png);
}

.teacher{
	background-image: url(../img/teacher.png);
}

.programmer{
	background-image: url(../img/programmer.png);
}*/

/* /CATEGORY PAGE */


/* STUDENT PAGE */



/* /STUDENT PAGE */


/* THANKS */
.thanks{
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #363636;
    margin-bottom: 10px;
}

.thanks img{
	max-width: 12vw;
    height: auto;
    margin-bottom: 20px;
}


/* ADMIN OF USER */

.user{
	height: 30vh;
	width: 60%;
	margin-left: 20%;
	margin-top: 40px;
	margin-bottom: 50px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-around;
	-ms-align-items: center;
	align-items: center;
}

.user-avatar{
	max-width: 30%;
	max-height: 40vh;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.user-avatar img{
	max-width: 90%;
}

.user-info{
	width: 40%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
}

.user-mail, .user-type{
	width: 100%;
	padding: 5px 20px;
	border-bottom: 2px solid #42A5F5;
	margin-bottom: 30px;
}

.user-type{
	margin-bottom: 0;
}

.user-profile{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	text-align: center;
	-ms-align-items: center;
	align-items: center;
}

.user-profile__title{
	margin-bottom: 20px;
	font-family: inherit;
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 20px;
}

.user-profile__table{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 33px 30px;
}

.wrap-table100{
	width: 80vw;
    border-radius: 10px;
    overflow: hidden;
}

.table, .row-table{
	width: 100% !important;
}

.table{
	width: 100%;
	display: table;
    margin: 0;
    margin-bottom: 50px;
}

.row-table{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}

/*.table-teach{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
}*/

.row-table.table-header .cell-teach{
	width: 100%;
	font-family: inherit;
    font-size: 18px;
    color: #fff;
    line-height: 1.2;
    font-weight: unset !important;
    padding-top: 19px;
    padding-bottom: 19px;
}


.row-table.table-header .cell {
    font-family: inherit;
    font-size: 18px;
    color: #fff;
    line-height: 1.2;
    font-weight: unset !important;
    padding-top: 19px;
    padding-bottom: 19px;
    width: 50%;
}

.row-table.table-header{
	color: #ffffff;
    background: #6c7ae0;
}

.row-table .cell-pr{
	width: 100%;
	font-family: inherit;
    font-size: 16px;
    color: #666666;
    line-height: 1.2;
    font-weight: unset !important;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f2f2f2;
}

.row-table .cell{
    font-family: inherit;
    font-size: 16px;
    color: #666666;
    line-height: 1.2;
    font-weight: unset !important;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f2f2f2;
    width: 50%;
}

/* ANALITICS PAGE */

.main-analytics{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-around;
}

.analytics{
	width: 100%;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	text-align: center;
	/*margin-left: 10px;*/
	padding-left: 10px;
	box-sizing: border-box;
}

.main-analytics h2{
	font-size: 25px;
}

.analytics hr, .recom hr{
	background-color: #1E88E5;
	height: 2px;
	width: 100%;
	margin-top: 30px;
}

.analytics-chart{
	width: 90%;
}


.recom{
	width: 35%;
	padding-right: 10px;
	display: flex;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	/*border-left: 2px solid #1E88E5;*/
	/*background-color: #000;*/
}

/*.recom hr{
	background-color: #1E88E5;
	width: 80%;
	margin-top: 0;
	margin-bottom: 10px;
}*/

.recom-link{
	text-transform: uppercase;
	font-size: 14px;
	font-weight: bold;
	margin-top: 15px;
}

.recom-link a{
	color: #363636;
	border-bottom: 1px solid #ffa200;
	padding: 8px 5px;
	transition: 0.5s ease-out;
}

.recom-link a:hover{
	cursor: pointer;
	border-bottom: 1px solid transparent;
	background-color: #ffa200;
	transition: 0.5s ease-out;
	color: #fff;
}

.recom-content{
	width: 100%;
	height: auto;
	margin-top: 20px;
}

.recom-content__item{
	width: 100%;
	padding: 15px 4px;
	font-size: 14px;
	border-bottom: 2px solid #1E88E5;
}

.recom-content__item:last-child{
	border-bottom: 2px solid transparent;
}

.recom-content__item p{
	padding: 5px 0;
}

.comment-nik{
	color: #4D5058;
	font-weight: bold;
}

.comment-date{
	color: #767892;
}



/* RECOMENDED PAGE */

.main{
	min-height: 75vh;
	box-sizing: border-box;
}

.main h2{
	text-align: center;
}

.recomendet{
	width: 50%;
	margin-left: 25%;
}

.recomendet .recom-content__item{
	margin: 0 15px;
}

[data-pagination],
[data-pagination] *,
[data-pagination] *:before,
[data-pagination] *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: auto;
}
[data-pagination] {
  font-size: 5pt;
  line-height: 1;
  font-weight: 400;
  /*font-family: 'Open Sans', 'Source Sans Pro', Roboto, 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', 'Myriad Pro', 'Segoe UI', Myriad, Helvetica, 'Lucida Grande', 'DejaVu Sans Condensed', 'Liberation Sans', 'Nimbus Sans L', Tahoma, Geneva, Arial, sans-serif;*/
  -webkit-text-size-adjust: 100%;
  margin: 1em auto;
  text-align: center;
  transition: font-size .2s ease-in-out;
}
[data-pagination] ul {
  list-style-type: none;
  display: inline;
  font-size: 100%;
  margin: 0;
  padding: .5em;
}
[data-pagination] ul li {
  display: inline-block;
  font-size: 100%;
  width: auto;
  border-radius: 20px;
  padding: 5px 5px;
}
[data-pagination] > a {
  font-size: 140%;
}
[data-pagination] a {
  color: #777;
  font-size: 100%;
  padding: .5em;
}
[data-pagination] a:focus,
[data-pagination] a:hover {
  /*color: #f60;*/
  color: #ffa200;
}
[data-pagination] li.current {
  background: rgba(0,0,0,.1)
}
/* Disabled & Hidden Styles */
[data-pagination] .disabled,
[data-pagination] [hidden],
[data-pagination] [disabled] {
  opacity: .5;
  pointer-events: none;
}
@media (min-width: 350px) {
  [data-pagination] {
    font-size: 10pt;
  }
}
@media (min-width: 500px) {
  [data-pagination] {
    font-size: 12pt;
  }
}
@media (min-width: 700px) {
  [data-pagination] {
    font-size: 14pt;
  }
}
@media (min-width: 900px) {
  [data-pagination] {
    font-size: 16pt;
    margin-bottom: 50px;
  }
}

/* FOOTER */
footer{
	width: 100%;
	height: 10vh;
	background-color: #000;
	/*color: #CFD8DC;*/
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	font-family: inherit;
	font-size: 13px;
}

.text{
	color: #8e8e8e;
	align-items: justify;
}

.text1{
	textAlign: justify;
}

footer span a{
	color: #607D8B;
	text-transform: uppercase;
	transition: 0.5s ease;
	padding-left: 5px;
}

footer span a:hover{
	color: #fff;
	transition: 0.5s ease;
}



/* PRELOADER */
#preloader {
    position: fixed;
    top: 50%;
    left: 47%;
    /*width: 100%;
    height: 100%; */
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 140px;
    height: 140px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9370DB;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #BA55D3;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #FF00FF;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}




@media only screen and (max-width : 1000px) {

	.header{
		background-position: 98%;
	}

	.logo{
		/*height: 100%;
		max-height: 100%;
		width: auto;*/
	    height: 30%;
	    max-height: 40%;
	    width: auto;
	    /*top: 280px;*/
	    top: 530px;
	    position: absolute;
	}

	.title{
	    font-size: 3.3vh;
	    line-height: 1.5;
	}

	.title p{
		font-size: 2vh;
	}

	.logo a .logoImage{
		height: 85%;
		max-height: 100%;
		width: auto;
		margin-top: 15%;
	}

	.logo-page{
		display: none;
	}

	.menu-item{
		justify-content: center;
	}

	.menu-item li{
		display: none;
	}
	.menu-item li:last-child{
		display: inline-flex;
	    font-size: 75px;
	    position: absolute;
	    right: 10%;
	    top: 12%;
	    margin-left: 40%;
	}

	.button-title{
		width: 500px;
		height: 150px;
		font-size: 28px;
	}


	/* LIST */
	#main .center{
		top: 37%;
		margin-top: 20%;
	}

	/*AUTORIZ*/

	.autoriz-wrapper{
		max-height: 60vh;
	}

	.autoriz-wrapper__item{
		min-width: 90%;
		max-width: 100%;
		max-height: 100%;
   		box-sizing: border-box;
	}

	.main_label{
		min-width: 100%;
	}

	.modal_main{
		height: 800px;
		/*display: flex;
	    flex-direction: column;
	    justify-content: space-around;*/
	}

	.form_check{
		min-height: 650px;
	}
	.form_check input:first-child{
		margin-top: 50px;
	}

	.form_check input, .choice{
		min-width: 90%;
	    min-height: 80px;
	    font-size: 1.8vh;
	    margin-bottom: 20px;
	    background-color: transparent;
	}
	/*.form_check input:first-child{
		margin-top: 260px;
	}
*/
	/* PROFILE */
	.wrapper-list{
		min-width: 80%;
		max-width: 100%;
	}

	/*.wrapper-list ul li label{
		border-top-left-radius: 40px;
    	border-bottom-left-radius: 40px;
	}*/

	.option-input{
		min-width: 70px;
		min-height: 70px;
	}

	.list4a li{
		font-size: 30px;
	}

	.wrapper-list ul li select, .enother{

	}


	/*USERS Prof*/
	.user{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}

	.user-avatar{
		min-width: 60%;
	}

	.user-info{
		width: 80%;
	    margin-top: 40px;
	    font-size: 2vh;
	}

	.row-table .cell-pr{
		font-size: 2vh;
	}


	/* PROFILE */
	.send{
		max-width: 100%;
		font-size: 45px;
		/*margin-left: 0;*/
	}


	THANKS

	.adaptive-main{
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		justify-content: center;
	}


	/* ANALITICS PAGE */
	.main-analytics{
		width: 100%;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		-ms-align-items: center;
		align-items: center;
		margin-bottom: 50px;
	}

	.analytics, .analytics-chart{
		width: 100%;
	}

	.recom, .recom-link{
		width: 80%;
	}

	.recom-link{
		font-size: 30px;
		margin: 50px;
	}

	.main-analytics h2{
		/*font-size: initial;*/
	}

	.main{
		margin-bottom: 50px;
	}

	.recomendet{
		width: 90%;
		width: 80%;
    	margin-left: 10%;
	}


	/* FOOTER */

	footer{
		text-align: center;
		margin: 0;
	}

	.text{
		font-size: 35px;
	    padding: 20px 40px;
	    line-height: 55px;
	    color: #C9D6DC;
	}

}

@media only screen and (max-width : 1000px) {

	.menu{
		/*position: relative;*/
	    top: 0;
	    display: flex;
	    flex-direction: column;
	    justify-content: center;
	    align-items: center;
	    width: 100vw;
	    font-size: 40px;
	    height: 30vh;
	    /*font-size: 40px;*/
	}

	.menu-item .responsive{
		position: relative;
	}

	.menu-resp{
		width: 80%;
		height: 100%;
	    display: flex;
	    flex-direction: column;
	    justify-content: space-evenly;
	    align-items: flex-end;
	}

	.menu-item .responsive li{
		float: none;
		display: inline;
		position: relative;
	    top: 0;
	    display: flex;
	    flex-direction: column;
	    width: 100vw;
	    margin-top: 20px;
	}

	.menu-item .responsive li a{
		text-align: right;
	}
}

