*{
	margin: 0px;
}
*::-webkit-scrollbar {
    display: none;
    width: 0px;
    height: 0px;
}
body{
	background: #e6e6e6;
}
body::-webkit-scrollbar{
	display: none;
}
body *{
	overflow: hidden;
}

div.hiddenBlock{
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: #303030;
    z-index: 10000;
    opacity: 0.7;
    display: none;
	cursor: pointer;
}

div.moduleWindow{
    position: absolute;
    width: 300px;
    background: white;
    border-radius: 5px;
    left: calc(50% - 150px);
    z-index: 10001;
}
div.moduleWindow div.header{
    position: relative;
    background: steelblue;
    padding: 10px;
    box-sizing: border-box;
    color: white;
    display: block;
}
div.moduleWindow div.header span{
    position: relative;
    float: left;
    font-weight: bold;
    top: 4px;
}
div.moduleWindow div.header img{
    position: relative;
    width: 25px;
    height: 25px;
    float: right;
    right: 0px;
    cursor: pointer;
}
div.moduleWindow div.main{
    position: relative;
    display: block;
    padding: 10px;
    box-sizing: border-box;
}
div.moduleWindow div.main img{
    position: relative;
    width: 30px;
    height: 30px;
    display: inline-block;
    padding: 0px 5px;
}
div.moduleWindow div.main span{
    position: relative;
    float: right;
    right: 0px;
    width: calc(100% - 50px);
}
div.moduleWindow a{
    position: relative;
    padding: 10px;
    background: steelblue;
    color: white;
    display: inline-block;
    float: right;
    right: 10px;
    margin: 10px 0px 0px 0px;
    border-radius: 5px;
    text-decoration: none;
}

header{
	position: relative;
    width: 720px;
    left: calc(50vw - 360px);
    margin: 10px 0px;
    box-sizing: border-box;
	z-index: 9998;
}
header div.logo_text{
	position: relative;
    text-decoration: none;
    background: white;
    display: block;
    width: calc(100% - 60px);
    float: right;
    right: 0px;
    height: auto;
    padding: 12px 10px;
    box-sizing: border-box;
    border-radius: 5px;
	color: black;
	cursor: pointer;
}
header img{
	position: relative;
    width: 50px;
    height: 50px;
    vertical-align: top;
}
header img#logo{
	border-radius: 5px;
	object-fit: cover;
}
header div.logo_text div.name{
	position: relative;
    font-weight: bold;
    font-size: 140%;
    width: calc(100% - 40px);
    display: inline-block;
    float: left;
    white-space: nowrap;
	border-radius: 5px;
	box-sizing: border-box;
	outline: none;
}
header div.logo_text img#addCompany{
	position: relative;
    width: 15px;
    height: 15px;
    padding: 5px;
    float: right;
    right: 0px;
    border-radius: 5px;
}
header div.logo_text img#addCompany:hover{
	background: #e6e6e6;
}

div.additionalInfoCompany{
	position: relative;
    width: 720px;
    left: calc(50vw - 360px);
    box-sizing: border-box;
	display: none;
	margin: 0px 0px 20px 0px;
	z-index: 9998;
}
div.additionalInfoCompany span#nameSection{
	position: relative;
    font-weight: bold;
    display: block;
    padding: 10px 0px;
}
div.additionalInfoCompany div.description{
	position: relative;
    background: white;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    outline: none;
}
div.additionalInfoCompany input{
	position: relative;
    padding: 10px;
    border: none;
    border-radius: 5px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    outline: none;
}

div.continueCreate{
	position: relative;
    width: 720px;
    left: calc(50vw - 360px);
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    background: steelblue;
    color: white;
    border-radius: 5px;
    padding: 10px 0px;
    margin: 10px 0px;
	display: none;
	z-index: 9998;
}
div.continueCreate img#load{
	position: relative;
    width: 30px;
}

div.back{
	position: absolute;
    width: 720px;
    left: calc(50vw - 360px);
}
div.back div.button{
	position: relative;
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
    float: left;
	cursor: pointer;
	opacity: 0.6;
}
div.back div.button:hover{
	opacity: 1;
}
div.back div.button img#iconBack{
	position: relative;
    width: 20px;
    height: 20px;
    float: left;
}
div.back div.button span#name{
	position: relative;
    top: 1px;
    margin: 0px 10px;
    font-weight: bold;
}

main{
	position: relative;
    width: 720px;
    left: calc(50vw - 360px);
    padding: 10px 0px;
    box-sizing: border-box;
	background: #e6e6e6;
	z-index: 9999;
}
main span#nameSection{
	position: relative;
	padding: 10px 0px;
	display: block;
	box-sizing: border-box;
	font-weight: bold;
}
main div.daughterCompanies{
	position: relative;
    display: block;
    box-sizing: border-box;
    border-radius: 5px;
    margin: 0px 0px 10px 0px;
    overflow-x: scroll;
    max-height: 200px;
    width: 100%;
    white-space: nowrap;
    border-radius: 5px;
}
main div.daughterCompanies span#notDaughterCompanies{
	position: relative;
    display: block;
    background: white;
    padding: 10px;
    border-radius: 5px;
}
main div.daughterCompanies div.daughterCompany{
	position: relative;
    width: 200px;
    height: 200px;
    border-radius: 5px;
    box-sizing: border-box;
    display: inline-block;
    padding: 10px;
    background: white;
    user-select: none;
    cursor: pointer;
    margin: 0px 10px 0px 0px;
}
main div.daughterCompanies div.daughterCompany:first-child{
	float: left;
}
main div.daughterCompanies div.daughterCompany img#imageDaughterCompany{
	position: relative;
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: white;
    border-radius: 5px;
}
main div.daughterCompanies div.daughterCompany span#nameDaughterCompany{
	position: relative;
    font-weight: bold;
    text-align: center;
    top: 6px;
    display: block;
}

main div.goods{
    position: relative;
    /* margin: 0px 0px 20px 0px; */
    padding: 10px;
    box-sizing: border-box;
    background: white;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}
main div.goods div.goodCompany{
    position: relative;
    width: calc((100% / 3) - 10px);
    /* border: 2px solid #303030; */
    border-radius: 10px;
    /* background: #f1f1f1; */
    padding: 5px 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
main div.goods div.goodCompany img{
    position: relative;
    width: 100%;
    object-fit: cover;
    height: 150px;
    border-radius: 10px;
    margin: 0px 0px 10px 0px;
}
main div.goods div.goodCompany div.price{
    position: relative;
    font-size: 110%;
    font-weight: bold;
}
main div.goods div.goodCompany a{
    position: relative;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    background: steelblue;
    color: white;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    /* overflow: hidden; */
    box-sizing: border-box;
    margin: 10px 0px 0px 0px;
}

main div.company{
    position: relative;
    width: 100%;
    box-sizing: border-box;
    /* border-radius: 5px; */
    /* padding: 10px; */
    /* background: white; */
    user-select: none;
    cursor: pointer;
    margin: 0px 0px 10px 0px;
    display: inline-block;
}
main div.company div.info{
    width: calc(100% - 90px);
    display: inline-block;
    float: left;
    background: white;
    padding: 10px;
    border-radius: 5px;
}
main div.company img#imageCompany{
	position: relative;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    float: left;
}
main div.company span#nameCompany{
	position: relative;
    vertical-align: top;
    font-size: 130%;
    font-weight: bold;
    margin: 0px 10px;
    top: 14px;
}
main div.company a{
	color: black;
	outline: none;
}
main div.company a span#additionalInfoCompany{
	position: relative;
    font-weight: bold;
    font-size: 90%;
    float: right;
    right: 10px;
    top: 18px;
    opacity: 0.5;
}
main div.company a span#additionalInfoCompany:hover{
	opacity: 1;
}

main div.hiddenBlockAIAC{
    padding: 0px 0px 20px 0px;
}

main img#edit, main img#show{
    position: relative;
    width: 20px;
    height: 20px;
    padding: 20px;
    border-radius: 5px;
    display: inline-block;
    float: right;
    right: 0px;
    top: 5px;
    cursor: pointer;
}
main img#edit:hover, main img#show:hover{
	background: #dcdcdc;
}

main span#warning{
	text-align: center;
    position: relative;
    display: block;
    font-weight: bold;
    opacity: 0.6;
}

main div.additionalInfoAboutCompany{
	position: relative;
    margin: 0px 0px 10px 0px;
}
main div.additionalInfoAboutCompany span#nameSection{
	position: relative;
    padding: 10px 0px;
    display: block;
    font-weight: bold;
}
main div.additionalInfoAboutCompany div{
	background: white;
    position: relative;
    padding: 10px;
    box-sizing: border-box;
    display: block;
    border-radius: 5px;
}

main div.additionalInfoAboutCompany div#map{
	position: relative;
    background: white;
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
	height: 300px;
    display: block;
    border-radius: 5px;
    margin: 10px 0px 0px 0px;
}
main div.additionalInfoAboutCompany div#map div{
	position: initial;
}
main div.additionalInfoAboutCompany div#map div.mapboxgl-control-container div.mapboxgl-ctrl-bottom-right, main div.additionalInfoAboutCompany div#map div.mapboxgl-control-container div.mapboxgl-ctrl-bottom-left, main div.additionalInfoAboutCompany div#map div.mapboxgl-control-container div.mapboxgl-ctrl-top-left{
	display: none;
}

main div.additionalInfoAboutCompany div.creator img{
	position: relative;
    float: left;
    width: 50px;
    height: 50px;
    border-radius: 50px;
}
main div.additionalInfoAboutCompany div.creator img#officialPage{
	position: relative;
    float: none;
    width: 15px;
    height: 15px;
    top: 2px;
    left: 4px;
}
main div.additionalInfoAboutCompany div.creator span#creator_firstAndLastName{
	position: relative;
    font-weight: bold;
    margin: 0px 10px;
    top: 16px;
}

main div.additionalInfoAboutCompany div.employees div.employeesCompany{
    position: relative;
    background: #e6e6e6;
}
main div.additionalInfoAboutCompany div.employees div.employeesCompany > img{
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    float: left;
}
main div.additionalInfoAboutCompany div.employees div.employeesCompany span#firstAndLastNameEmployees{
    position: relative;
    display: inline-block;
    font-weight: bold;
    width: calc(100% - 60px);
    vertical-align: top;
    padding: 0px 10px;
    box-sizing: border-box;
    top: 7px;
}
main div.additionalInfoAboutCompany div.employees div.employeesCompany span#firstAndLastNameEmployees > img{
    position: relative;
    width: 15px;
    top: 2px;
    left: 4px;
}
main div.additionalInfoAboutCompany div.employees div.employeesCompany span#descEmployees{
    position: relative;
    display: inline-block;
    width: calc(100% - 60px);
    /* float: right; */
    padding: 0px 10px;
    box-sizing: border-box;
    opacity: 0.7;
    font-size: 95%;
    top: 7px;
}
main div.additionalInfoAboutCompany div.employees div.notEmployees{
	padding: 0px;
}

@media all and (max-width: 740px){
	
	header{
		width: calc(100% - 20px);
		left: 0px;
		margin: 10px;
	}
	div.continueCreate{
		width: calc(100% - 20px);
		left: 10px;
	}
	div.additionalInfoCompany{
		width: calc(100% - 20px);
		left: 10px;
	}
	
	main{
		width: calc(100% - 20px);
		left: 10px;
	}
	
	div.back{
		width: calc(100% - 20px);
		left: 10px;
	}
	
	main div.company span#nameCompany, main div.company a span#additionalInfoCompany{
		float: left;
		display: block;
		width: calc(100% - 70px);
		top: 4px;
	}
	main div.company a span#additionalInfoCompany{
		margin: 0px 10px;
		right: 0px;
		top: 6px;
	}
	
}

@media all and (max-width: 300px){
	
	div.moduleWindow{
		width: 100%;
		left: 0px;
	}
	div.moduleWindow div.main img{
		display: block;
		padding: 0px 0px 10px 0px;
		left: calc(50% - 15px);
	}
	div.moduleWindow div.main span{
		width: 100%;
	}
	div.moduleWindow a{
		right: 0px;
		width: 100%;
		box-sizing: border-box;
		text-align: center;
	}
	
}

