/* ==================================================
   CSS Imports
================================================== */

@import url("buttons.css");

/* ==================================================
   Icon Fonts
================================================== */

@import url("fonts/fontawesome/font-awesome.css");

/* ==================================================
   Google Fonts
================================================== */

@import url("https://fonts.googleapis.com/css?family=Oxygen:300,400,700");
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700");

/* ==================================================
   Global Styles
================================================== */

*
{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.section{
	overflow:auto;
	width:100%;
}
h2 {
	font-size: 20px;
}

::-webkit-scrollbar-button { 
background-image:url(''); 
background-repeat:no-repeat; 
width:6px; 
height:0px 
} 

::-webkit-scrollbar-track { 
background-color:#fff; 
box-shadow:0px 0px 3px #000 inset; 
} 

::-webkit-scrollbar-thumb { 
-webkit-border-radius: 5px; 
border-radius: 5px; 
    background-color:#D4DAE6; 
box-shadow:0px 1px 1px #fff inset; 
background-position:center; 
background-repeat:no-repeat; 
} 

::-webkit-resizer{ 
background-image:url(''); 
background-repeat:no-repeat; 
width:7px; 
height:0px 
} 

::-webkit-scrollbar{ 
width: 16px; 
}

html
{
	height: 100%;
	overflow: auto;
	
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
    font-family: Arial, sans-serif;
    width: 100%;
    height: 100%;
    background: #f2f2f4;
    color: #555;
    font-size: 14px;
    padding: 0;
    margin: 0;
}

::selection
{
	background: #1695a3;
	color: #FFF;
}

::-moz-selection
{
	background: #1695a3;
	color: #FFF;
}

a
{
	color: #1695a3;
	text-decoration: none;
}

a:hover
{
	color: #222;
}

/* ==================================================
   Images
================================================== */

img
{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
}

	img.imgfull
	{
		float: left;
		width: 100%;
		max-width: 1000px;
		margin: 0 0 20px 0;
		border-top: 5px solid #1695a3;
	}

/* ==================================================
   Layout Styles
================================================== */
.main > .container{
	background: #f9f9f9;
    border: 1px solid #eee;
}

.container
{
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 0 30px;
	min-width: 280px;
	line-height: 26px;
}

	.container .bodycontainer
	{
		margin: 0 auto;
		width: 100%;
		max-width: 1000px;
	}
	
/* ==================================================
   Sections
================================================== */

#left
{
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	max-width: 280px;
	background: #225378;
	color: #FFF;
	z-index: 3;
	overflow-y: auto;
	
	-webkit-overflow-scrolling: touch;
}

	#left p#logo
	{
		margin: 0 0 20px 0;
	}
	
		#left p#logo a
		{
			float: left;
			display: block;
			padding: 30px 20px;
			width: 100%;
			color: #FFF;
			margin: 0 0 -10px 0;
		}
		
			#left p#logo a span.fa
			{
				float: left;
				display: block;
				padding: 25px;
				background: rgba(0,0,0,0.2);
				font-size: 48px;
				margin: 0 0 10px 0;
				
				-webkit-border-radius: 80px;
				-moz-border-radius: 80px;
				border-radius: 80px;
			}
			
			#left p#logo a span.text
			{
				float: left;
				width: 100%;
				font-size: 30px;
				line-height: 30px;
				font-weight: 700;
				font-family: "Montserrat";
				text-transform: uppercase;
			}

	#left #socialmedia ul
	{
		position: absolute;
		bottom: 30px;
		left: 30px;
		margin: 0;
	}

	#left #socialmedia ul li
	{
		display: inline-block;
		list-style-type: none;
		margin: 0 12px 0 0;
		padding: 0;
	}

		#left #socialmedia ul li a
		{
			font-size: 23px;
			color: #FFF;
			opacity: 0.4;
		}
		
			#left #socialmedia ul li a:hover
			{
				opacity: 1;
			}

#right
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 1240px;
	z-index: 2;
	padding: 40px 50px 40px 320px;
}

	#right p
	{
		margin: 0 0 20px 0;
	}
	
	#right p:last-child
	{
		margin: 0;
	}
	
#footercont
{
	color: rgba(0, 0, 0, 0.4);
	text-transform: uppercase;
	font-size: 14px;
}

	#footercont p
	{
		margin: 0;
		text-align: left;
		letter-spacing: 1.4px;
	}

.skroll_block{
	overflow-x: auto;
}
/* ==================================================
   Responsive Media Queries - Tablets
================================================== */

@media screen and (max-width: 768px)
{
	
	#left
	{
		max-width: 200px;
	}
	
		#left #socialmedia ul
		{
			bottom: 20px;
			left: 20px;
		}
	
			#left #socialmedia ul li
			{
				margin: 0 8px 0 0;
			}
		
				#left #socialmedia ul li a
				{
					font-size: 21px;
				}

	#right
	{
		padding: 20px 20px 20px 230px;
	}
	
}

/* ==================================================
   Responsive Media Queries - Mobiles
================================================== */

@media screen and (max-width: 480px)
{		
	
	#left
	{
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		max-width: 100%;
		padding: 20px;
	}
	
		#left p#logo a
		{
			padding: 0;
		}
	
		#left #socialmedia ul
		{
			position: relative;
			bottom: auto;
			left: auto;
			margin: 5px 0 0 0;
		}
		
			#left #socialmedia ul li a
			{
				font-size: 25px;
			}

	#right
	{
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		max-width: 100%;
		padding: 30px 20px;
	}
	
}
.text_center{
	text-align: center;
}
form legend{
	margin:0 0 15px;
}
a.delete,a.edit{
    text-decoration:none;
    margin-left:15px;
    margin-right: 15px;
    background: url(../img/del.png) no-repeat center;
    width: 17px;
    height: 17px;
    background-size: 16px;
    display: inline-block;
    position: relative;
    bottom: -2px;
}
a.edit{
    background: url(../img/edit.png) no-repeat center;
    background-size: 15px;
}

div.list {
	margin-bottom: 20px;
    background-color: #d5e2fc;
    overflow: hidden;
    padding: 10px;
}
.autorization_form .control-group .controls,
.registr_acc .control-group .controls{
	text-align: left;
	display: inline-block;
}
.menu {
    height: 50px;
    background: #364760;
    color: white;
}
.menu .container{
	z-index: 99;
}
.dropdown-toggle{
	text-decoration: none;
    background-color: #fff;
}
.menu .navbar .lenguage_drop{
	float: right;
    line-height: 20px;
    margin-top: 10px;
}

.menu .navbar .lenguage_drop .dropdown-menu a{
	color: #4468b1;
}
.menu .navbar .lenguage_drop .dropdown-menu a:hover,
.menu .navbar .lenguage_drop .dropdown-menu a:focus{
	color: white;
}
.menu li a{
	text-decoration: none;
	color: #fff;
    text-decoration: none;
    padding: 16px 10px;
    display: block;
    font-size: 12px;
    border-radius: 0;
}
.menu .navbar li.active,.menu .navbar li.active a{
    background: #2A394F;
    border-radius: 0;
    color: white;
}
.navbar .lenguage_drop .dropdown-menu{
	right: 0;
	left:auto;
	min-width: 70px;
	left: auto;
	right: 0;
	text-align: center;
}
.navbar .nav .lenguage_drop .dropdown-menu a{
	color: #4468b1;
	text-align: center;
}
.navbar .nav .lenguage_drop .dropdown-toggle{
	color: #4468b1;
	border-radius: 5px;
}
.navbar .nav .lenguage_drop .dropdown-toggle:hover,
.navbar .nav .lenguage_drop .dropdown-toggle:focus{
	background: white;
	color: #4468b1;
}
.nav li.dropdown.open .caret{
	border-top-color: #4468b1;
    border-bottom-color: #4468b1;
}
.navbar .nav > li{
	line-height: 29px;
}
.navbar .nav > li:not(.lenguage_drop) > a:hover,.navbar .nav > li:not(.lenguage_drop) > a:focus,
.navbar .nav > li.active > a:hover,.navbar .nav > li.active > a:focus{
    background: #2A394F !important;
	color:white;
}
.form_filtr select{
	max-width: 100%;
}
.form_filtr .control-group .controls{
	text-align: left;
}
.form_filtr label{
	display: block;
}
.add_leng select{
	width: 70%;
}
.add_leng button{
	width: 25%;
	float: right;
}
.desc_filtr ul{
	list-style: none;
	margin-left: 0;
}
.desc_filtr ul li .delete{
	margin-left: 10px;
}
.block_text_area ul,
.list_photo{
	list-style: none;
	margin:0;
}
.block_text_area ul li{
	display: inline-block;
}
.block_text_area ul li{
border-radius: 4px 4px 0 0;
    height: 100%;
    border-width: 1px 1px 0px 1px;
    border-color: #cccccc;
    border-style: solid;
    padding: 3px;
}
.block_text_area ul li.active{
	background: white;
}
.block_text_area ul li:hover a{
	text-decoration: none
}
.block_text_area ul li:hover{
	background: white;
}
.upload_photo input{
	line-height: 17px;
	padding-top: 7px;
	margin-left: 10px;
}
select{
	max-width: 100%;
}
.list_photo .delete{
	vertical-align: top;
}
.btn.btn-primary{
	margin-bottom: 15px;
	margin-top: 15px;
}
form .controls input{
	height: 30px;
}
form select.correction{
	margin-left:5px !important;
}
.block_text_area textarea{
	width: 100%;
}
div.list{
	text-align: left;
}
.list .radio.inline{
	padding-top: 0;
}
.registr_acc,
.recovery_pass{
	display: none;
}
.controls-number {
    margin-right: 10px;
    position: relative;
    top: 3px;
}
.ml10 {
    margin-left: 10px;
}
.clear {
    clear: both;
}
.btn-1 {
    margin-left: 15px;
/*    margin-top: 24px;*/
}
.contorls--flex .controls {
    align-items: flex-start;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.contorls--flex .controls select {
    flex-shrink: 0;
}
.checkbox {
    height: auto !important;
    margin-right: 15px !important;
}
.separator {
    border-bottom: 1px solid #e5e5e5;
    padding-top: 20px;
    padding-bottom: 20px;
}
.list_photo {
    margin-top: 10px;
}
.result {
    margin-bottom: 50px;
    margin-left: 30px;
}
.select-width select {
    max-width: 60px;
    width: 100%;
}
.line_client_r {
    list-style-type: none;
}
.select-80 {
    width: 80px;
}
.disabled {
    background: #ddd;
    cursor: not-allowed;
}
.row-btns {
    -ms-align-items: center;
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.desktop-hidden {
    display: none;
}
.lang-list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
}
.text {
    margin: 30px;
    line-height: 1.2;
}
.list_photo img {
    display: inline-block;
    margin-right: 10px;
}
.desc_filtr {
    margin-bottom: 30px;
}
.result .lang-list {
    list-style-type: none;
}
.result .delete {
    margin-left: 10px;
}
.controls--grid {
    display: grid;
    grid-column-gap: 15px;
    grid-template-columns: repeat(6, 1fr);
    margin-left: 30px;
    margin-right: 30px;
}
.upload_photo {
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .controls--grid {
        grid-template-columns: repeat(4, 1fr);    
    }
    .separator {
        margin-left: -10px;
    }
}
@media (max-width: 979px) {
	.navbar .btn-navbar{
		margin-top: 10px;
	}
	.menu .navbar .lenguage_drop{
		position: absolute;
		top: 0px;
		right: 0px;
	}
    .controls--grid {
        margin-left: 0px;
        margin-right: 0px;
        grid-template-columns: repeat(3, 1fr);    
    }
}
@media (max-width: 767px) {
	.nav-collapse .nav {
	    background: white;
	}
	form select.correction{
		margin-left: 0 !important;
	}
    .select-width select {
        max-width: 50px;
        width: 100%;
    }
    .controls--two-mobile {
       display: flex;
    }
    form .controls--two-mobile select.correction {
        margin-left: 20px !important;
        width: calc(50% - 20px);
    }
    .btn-1 {
        height: 30px;
        margin-top: 0;
    }
    .contorls--flex {
        display: grid;
        grid-column-gap: 15px;
        grid-template-columns: repeat(2, 1fr);
    }
    .contorls--flex::before, .contorls--flex::after {
        display: none;
    }
    .controls--mobile-row {
       -ms-align-items: center;
       align-items: center;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
    }
    .controls--mobile-row label {
        display: inline-block;
        margin-left: 15px;
    }
    .mobile-hidden {
        display: none;
    }
    .desktop-hidden {
        display: block;
    }
    .mobile-flex {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        flex-direction: column;
    }
    .mobile-flex .span--btns {
        order: 11;
    }
    .separator {
        margin-left: -30px;
        padding-left: 15px;
    }
}

@media (max-width: 600px) {
    .list .line_client_r {
        display: grid;
        grid-row-gap: 10px;
        grid-column-gap: 15px;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 430px) {
    .contorls--flex {
        display: block;
    }
    .list .line_client_r {
        grid-template-columns: repeat(2, 1fr);
    }
}
