:root {
    --color-searchbar: rgb(30,30,30);
    --color-background-searchbar: #e6e6e6;
    --color-background-hover-searchbar: #d9d9d9;
}

html, body {
	height: 100%;
	width: 100%;
	border: none;
	outline: none;
	margin: 0px;
	padding: 0px;
	font-family: 'Roboto', sans-serif;
	background: white;
}

custom-map {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    outline: none;
	background: white;
}

custom-map .content-legend {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    gap: 0px;
    outline: none;
    padding: 0px;
    overflow: hidden;
    position: absolute;
	border-radius: 0px;
	border: none;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-timing-function: cubic-bezier(0,0,.2,1);
    transition-timing-function: cubic-bezier(0,0,.2,1);
    z-index: 5;
}

custom-map .content-legend.horizontal.close {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

custom-map .content-legend.horizontal {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 450px;
    min-width: 450px;
    max-width: 450px;
	max-height: 100%;
	min-height: 100%;
    box-shadow: 5px 0 3px -3px #00000030;
}

custom-map .content-legend.vertical.close {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

custom-map .content-legend.vertical {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    left: 0;
	right: 0;
    bottom: 0;
    height: 50%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
	max-height: 50%;
	min-height: 50%;
	box-shadow: 0 -5px 5px -5px #33333352;
}

custom-map .content-map #map {
    height: 100%;
    width: 100%;
    padding: 0px;
    margin: 0px;
    outline: none;
    border: none;
    position: relative;
    background: white;
    z-index: 1;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-timing-function: cubic-bezier(0, 0, .2, 1);
    transition-timing-function: cubic-bezier(0, 0, .2, 1);
}

custom-map[orientation="horizontal"] .content-map #map {
    -webkit-transition-property: margin-left;
    transition-property: margin-left;
}

custom-map[orientation="vertical"] .content-map #map {
    -webkit-transition-property: margin-bottom;
    transition-property: margin-bottom;
}

custom-map .content-map #map .cursor {
	position: absolute;
	display: none;
	background-color: white;
	border: none;
	max-width: 350px;
	width: max-content;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	padding: 10px 8px;
	border-radius: 5px;
	z-index:9999;
}

custom-map .content-map #map .cursor .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

custom-map .content-map #map .cursor .content .row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 0px;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

custom-map .content-map #map .cursor .content .row div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0px;
    margin-left: 8px;
    margin-right: 10px;
}

custom-map .content-map #map .cursor .content .row div span.title {
    font-weight: 500;
    color: black;
    line-height: 1.2;
}

custom-map .content-map #map .cursor .content .row div span.description {
    font-weight: 300;
	color: rgb(120,120,120);
}

custom-map .content-map #map .cursor .content .row img {
    height: 25px;
    width: 20px;
}

custom-map .content-map #map .cursor .content .row span {
    width: 100%;
}

custom-map .content-map #map:hover .cursor.visible {
	display: block
}

custom-map .content-basemap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding: 0px;
    outline: none;
    border-radius: 5px;
}

custom-map .content-basemap::-webkit-scrollbar {
    display: none;
}

custom-map .content-basemap {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

custom-map .content-basemap div.item-basemap {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 35px;
    width: 35px;
    max-height: 35px;
    max-width: 35px;
    min-width: 35px;
    min-height: 35px;
    border: 2px solid transparent;
    border-radius: 5px;
    background-size: cover;
    transition: 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

custom-map .content-basemap div.item-basemap.basemap-null {
    background: #b6b6b6 !important;
}

custom-map .content-basemap div.item-basemap[selected] {
    border: 2px solid #ab3a3a !important;
}

custom-map .content-basemap div.item-basemap:not([selected]):hover {
	cursor: pointer;
	border: 2px solid #FFFFFF !important;
}

custom-map .content-map .content-buttons {
    display: flex;
    flex-direction: column;
    padding: 0px;
    align-items: center;
    position: absolute;
    top: 15px;
    outline: none;
    user-select: none;
    border-radius: 5px;
    z-index: 2;
    opacity: 1;
    background: #ffffffed;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

custom-map .content-map .content-buttons span.material-symbols-outlined {
	max-width: 40px;
	max-height: 40px;
	min-height: 40px;
	min-width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	padding: 0px;
	margin: 0px;
	border-radius: 0px;
	border-bottom: 1px solid #cacaca;
	transition: 0.2s;
	opacity: 1;
	position: relative;
}

/*
custom-map .content-map .content-buttons span.material-symbols-outlined:active {
	opacity: 0.6!important;
}*/

custom-map .content-map .content-buttons span.material-symbols-outlined:has(.custom-tooltip)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%) translateX(0px);
    border-width: 6px;
    border-style: solid;
    border-color: transparent #333 transparent transparent;
}

custom-map .content-map .content-buttons span.material-symbols-outlined .custom-tooltip {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    width: max-content;
	max-width: 400px;
    position: absolute;
    gap: 4px;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    padding: 10px;
    background-color: #333;
    border-radius: 5px;
    opacity: 1;
    transition: 0.2s;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    white-space: nowrap;
	text-wrap: nowrap;
	line-height: 1.2;
}

custom-map .content-map .content-buttons span.material-symbols-outlined span:first-child {
    font-family: roboto!important;
    font-size: 14px!important;
    color: white;
    word-wrap: break-word; 
    white-space: normal;
}

custom-map .content-map .content-buttons span.material-symbols-outlined span:last-child {
    font-family: roboto!important;
    font-size: 13px!important;
    color: rgb(200,200,200);
    word-wrap: break-word; 
    white-space: normal;
}

custom-map .content-map .content-buttons span.material-symbols-outlined:first-child {
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
}

custom-map .content-map .content-buttons span.material-symbols-outlined:last-child {
	border-bottom: none!important;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

custom-map .content-map .content-buttons span.material-symbols-outlined[selected] {
	background: #3d3e47 !important;
	color: white!important;
}

custom-map .content-map .content-buttons span.material-symbols-outlined:not([disabled]):hover {
	background-color: rgba(200, 200, 200,1);
	cursor: pointer;
}

custom-map .content-map .content-buttons span.material-symbols-outlined[disabled] {
	pointer-events: none !important;
	color: rgb(194 194 194);
}

#menu {
	border-radius: 5px;
	position: absolute;
	bottom: 20px;
	left: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 500px;
	max-width: 600px;
	outline: none;
	height: auto;
}

#menu .legend {
	outline: none;
	object-fit: contain;
	text-decoration: none;
	border: none;
	margin: 0px;
	padding: 0px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	overflow: hidden;
	height: 100%;
}


#layers-list {
	overflow-y: auto;
	overflow-x: hidden;
	padding: 0px;
	max-height: 100%;
}

.layer-content {
	display: none;
	margin-left: 15px;
}

#layers-list::-webkit-scrollbar {
	width: 6px;
}

#layers-list::-webkit-scrollbar-track {
	background: #f1f1f100;
}

#layers-list::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 10px;
}

.layers-list::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.layer-content .layer-group:last-child {
	border-bottom: none!important;
}

.layer-content.visible {
	display: block!important;
	padding: 0px;
}

.layer-group .group-header .head {
	transition: 0.2s;
}
	
.layer-group.off > .group-header .head .box {
	opacity: 0.5!important;
}

.layer-group:not([disabled]):has(.layer-content) > .group-header:hover {
	cursor: pointer!important;
}

.layer-group:not([disabled]):has(.layer-content) > .group-header:hover {
	background-color: rgb(220,220,220,0.7)!important;
}

.layer-group {
	border-bottom: 1px solid #d9d9d9;
	transition: 0.2s linear;
	outline: none;
	overflow: hidden;
	user-select: none;
}

.layer-group:last-child {
	border-bottom: 1px solid transparent;
}

.layer-group.error {
	border-bottom: 1px solid #c3c3c3;
	background: #ffd7d7!important;
}

.layer-group.error * > span {
	color: #9c0000!important;
}

.layer-group.error .buttons span.material-symbols-outlined:not(.disabled):hover {
	background: rgb(255 127 127 / 60%);
	cursor: pointer;
}

.layer-group[disabled] * > span {
	color: rgb(120,120,120)!important;
	opacity: 0.9!important;
}

.group-header {
	display: flex;
	flex-direction: row;
	justify-content: start;
	align-items: center;
	vertical-align: middle;
	padding: 2px 10px;
	transition: 0.2s;
	outline: none;
	overflow: visible;
	min-height: 40px;
	width: auto;
	position: relative;
}

.group-header .icon-group.material-symbols-outlined {
	height: 20px;
	width: 20px;
	max-height: 20px;
	min-height: 20px;
	min-width: 20px;
	max-width: 20px;
}

.group-header .box {
    display: flex;
    flex-direction: column;
    padding: 0px 15px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

input[type="checkbox"] {
	display: none;
}

.checkbox-container {
	display: flex;
	align-items: center;
	padding: 5px 10px 5px 15px;
	transition: background-color 0.3s;
	border-bottom: 1px solid #ccc;
}

.checkbox-container.single {
	padding: 8px 10px 8px 15px!important;
}

.checkbox-container:not(.single):hover {
	background-color: rgb(220,220,220,0.7);
}

.checkbox-container:last-child {
	border-bottom: 0px!important;
}

input[type="checkbox"]:checked + .checkbox-container {
	background-color: #4caf50;
	color: #fff;
}

.layer-content .element {
    display: flex;
    flex-direction: row;
    align-items: center;
	border-radius: 5px;
}

.layer-content .element:hover {
	background-color: rgb(220,220,220,0.7);
	cursor: pointer;
}

.layer-content .element img.marker,
img.marker {
	height: 20px;
	width: 20px;
	max-height: 20px;
	min-height: 20px;
	min-width: 20px;
	max-width: 20px;
	object-fit: contain;
}

.checkbox-container.off * > span:not(.material-symbols-outlined) {
    opacity: 0.5!important;
}

.checkbox-container .item {
    display: flex;
    flex-direction: column;
    align-items: start;
    border-radius: 5px;
    justify-content: flex-start;
    width: 100%;
    margin-left: 15px;
}

.group-header .buttons,
.checkbox-container .buttons {
    display: flex;
    flex-direction: row;
    width: auto;
    justify-content: flex-end;
    align-items: center;
}

.group-header .head {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	overflow: hidden;
	padding-left: 5px;
}

.group-header .buttons span.material-symbols-outlined.danger {
	color: #e53b3b!important;
}

.group-header .buttons span.material-symbols-outlined.danger:hover {
	background: #f6cece!important;
	cursor: pointer;
}

.group-header .buttons span.material-symbols-outlined:not(.disabled) {
	border-radius: 5px;
	transition: 0.2s;
}

.group-header .buttons span.material-symbols-outlined:not(.disabled):not(.danger):hover {
	background: rgb(160,160,160,0.6);
	cursor: pointer;
}

.group-header .buttons span.material-symbols-outlined.disabled {
	opacity: 0.5!important;
	cursor: default;
}

.group-header .buttons span.material-symbols-outlined[disabled] {
	pointer-events: none !important;
	opacity: 0.5!important;
}

.group-header .box span.name {
	font-size: 14px;
	width: 100%;
	color: black;
	outline: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.group-header .box span.description {
	font-size: 10px;
	font-weight: 500;
	width: 100%;
	color: rgb(73,73,73);
	text-transform: uppercase;
	outline: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.buttons {
	display: flex;
	flex-direction: row;
	gap: 0px;
	padding: 0px;
	align-items: center;
}

.buttons span.material-symbols-outlined {
	max-width: 30px;
	min-width: 30px;
	min-height: 30px;
	max-height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	padding: 2px;
	margin: 0px;
	border-radius: 5px;
	transition: 0.2s;
	background: transparent;
	opacity: 1;
}

.buttons span.material-symbols-outlined[selected] {
	background: #3d3e47 !important;
	color: white!important;
}

.buttons span.material-symbols-outlined:not([disabled]):hover {
	background-color: rgba(200, 200, 200, 0.6);
	cursor: pointer;
}

.buttons span.material-symbols-outlined[disabled] {
	pointer-events: none !important;
	opacity: 0.3 !important;
}

#meter {
	margin-right: 10px;
}

#content-list-layers {
    display: flex;
    flex-direction: column;
    justify-content: start;
    border-bottom: 1px solid #e3e3e3;
    border-top: 1px solid #e3e3e3;
    background: transparent;
}

#content-list-layers.opened {
    background: #f5f5f5!important;
}

#content-list-layers .btn-storage-header {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    padding: 10px 15px;
    transition: 0.2s;
}

#content-list-layers .btn-storage-header:hover {
    background: #eaeaea;
	cursor: pointer;
}

#content-list-layers .btn-storage-header div.box {
    padding-left: 12px;
}

#content-list-layers .btn-storage-header div.box .title {
    font-weight: 500;
    font-size: 15px;
}

#content-list-layers .btn-storage-header div.box .description {
    font-weight: 400;
    font-size: 14px;
	color: #595454;
}

#content-list-layers .body-storage {
    padding: 5px 0px;
    display: none;
    position: relative;
    border-top: 1px solid #efecec;
}

#content-list-layers .body-storage .layer-item {
    padding: 3px 15px 3px 18px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    transition: 0.2s;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#content-list-layers .body-storage .layer-item:hover {
	background-color: #b2b2b24d;
}

#content-list-layers .body-storage .layer-item .icon {
	height: 15px;
	width: 15px;
	max-height: 15px;
	min-height: 15px;
	min-width: 15px;
	max-width: 15px;
	object-fit: contain;
}

#content-list-layers .body-storage .layer-item .name {
	font-size: 14px;
	font-weight: 400;
	width: 100%;
	margin-left: 17px;
}

#content-list-layers .body-storage .layer-item .button {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	color: #585858;
	padding: 2px 2px;
	border-radius: 5px;
	transition: 0.2s;
}

#content-list-layers .body-storage .layer-item .button.add:hover,
#content-list-layers .body-storage .layer-item .button.remove:hover {
	cursor: pointer;
}

#content-list-layers .body-storage .layer-item .button.add:hover {
	color: #477622;
}

#content-list-layers .body-storage .layer-item .button.remove:hover {
	color: #883636;
}

#content-list-layers .body-storage .layer-item .button span.material-symbols-outlined {
	font-size: 17px;
	padding-left: 2px;
}

#content-list-layers .body-storage .layer-item .button span:nth-child(2) {
	font-size: 12.5px;
	text-transform: uppercase;
	padding-right: 4px;
	font-weight: 500;
}

#content-search-bar {
	height: auto;
	padding: 5px 10px;
	border-radius: 5px;
	border: none;
	outline: none;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	background-color: var(--color-background-searchbar);
	transition: 0.2s;
	margin: 10px;
}

#content-search-bar:hover {
	background-color: var(--color-background-hover-searchbar)!important;
	cursor: text!important;
}

#content-search-bar #search-input {
	border: none;
	background: transparent;
	width: 100%;
	outline: none;
	margin-right: 10px;
	font-size: 14px;
	line-height: 1;
}

#content-search-bar input#search-input::placeholder {
	color: var(--color-searchbar);
}

#content-search-bar input#search-input::-webkit-input-placeholder {
	color: var(--color-searchbar);
}

#content-search-bar input#search-input:-ms-input-placeholder {
	color: var(--color-searchbar);
}

#content-search-bar input#search-input::-moz-placeholder {
	color: var(--color-searchbar);
}

#content-search-bar input#search-input:-moz-placeholder {
	color: var(--color-searchbar);
}

#content-search-bar span.material-symbols-outlined {
	color: var(--color-searchbar);
	height: 30px;
	width: 30px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	font-size: 20px;
}

.loader-storage-layer {
    width: 13px;
    height: 13px;
    border: 2px solid #8f8f8f;
    border-bottom-color: transparent;
    border-radius: 50%;
    animation: rotation 1s linear infinite;
	margin-right: 5px;
}

.loader-layer {
    width: 18px;
    height: 16px;
    border: 2px solid #8f8f8f;
    border-bottom-color: transparent;
    border-radius: 50%;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.leaflet-popup-content-wrapper {
    border-radius: 10px!important;
    overflow: hidden!important;
    padding: 0px!important;!importan;!importa;!import;!impor;!impo;!imp;!im;!i;!;
}

.leaflet-popup-content-wrapper .leaflet-popup-content {
	margin:0px!important;
	max-width: 200px!important;
	width: 200px!important;
	padding: 0px;
	border-radius: 10px;
}

.leaflet-popup-content-wrapper .leaflet-popup-content table {
	width: 100%;
	border: none;
	border-collapse: collapse;
	margin: 5px 0px;
	background: #ffffff;
}

.leaflet-popup-content-wrapper .leaflet-popup-content tr td {
	padding: 6px 12px;
	display: flex;
	flex-direction: column;
	align-items: self-start;
	justify-content: center;
	gap: 2px;
	font-size: 12px;
	line-height: 1.15;
}

.leaflet-popup-content-wrapper .leaflet-popup-content tr td strong {
	color: #565656;
	text-transform: uppercase;
}

.layer-content.features {
	margin-bottom: 8px;
}

.layer-content .row-feature {
    display: flex;
    flex-direction: row;
    gap: 14px;
    justify-content: flex-start;
    align-items: center;
    padding: 3px 5px;
}

.layer-content .row-feature:hover {
	background: #eeeeee!important;
	cursor: pointer!important;
}

.layer-content .row-feature img.marker {
    height: 15px;
    width: 15px;
    max-height: 15px;
    min-height: 15px;
    min-width: 15px;
    max-width: 15px;
    object-fit: contain;
}

.layer-content .row-feature span {
    font-size: 13px;
    color: rgb(68,68,68);
    overflow: hidden;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.leaflet-bottom.leaflet-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 10px;
    pointer-events: unset;
    gap: 8px;
}

.leaflet-control-attribution.leaflet-control {
	padding: 4px 10px;
	background: #ffffffa6;
	border-radius: 5px;
	box-shadow: 0 1px 3px rgb(0 0 0 / 4%), 0 1px 2px rgb(0 0 0 / 15%);
}

.leaflet-control-attribution.leaflet-control, 
.leaflet-control-attribution.leaflet-control a {
	color: #212121;
	text-shadow: 1px 1px #d0d0d0;
	font-size: 12px;
}

.background {
	background: rgba(0,0,0,0.5);
	height: 100%;
	width: 100%;
	user-select: none;
	padding: 0px;
	margin: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 9999;
}

.background .form-language {
	height: auto;
	width: auto;
	min-height: auto;
	min-width: 300px;
	max-width: 100%;
	max-height: 100%;
	user-select: none;
	background: white;
	border-radius: 10px;
	border: none;
	padding: 0px;
	position: relative;
	flex-direction: column;
	overflow: hidden;
	display: flex;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.background .form-language .header {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: white;
    justify-content: flex-start;
    padding: 10px 15px;
    border-bottom: 1px solid #c7c7c7;
    color: #161616;
    position: sticky;
    top: 0;
}

.background .form-language .header div {
    width: 100%;
}

.background .form-language .body {
    padding: 10px;
    height: 100%;
    overflow-y: auto;
    position: relative;
    user-select: none;
    outline: none;
    max-height: 100%;
    min-height: 100%;
    height: calc(100% - 45px);
}

.background .form-language .body .language-option {
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #ffffffed;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 6px 10px;
    margin: 0px;
    cursor: pointer;
    transition: 0.2s;
    user-select: none;
}

.background .form-language .body .language-option.selected {
    background-color: #ebebeb;
    box-shadow: inset 0 0 10px #d5d5d5;
}

.background .form-language .body .language-option:hover {
    background-color: #f0f0f0;
}

.background .form-language .body .language-option .flag-icon {
    margin-right: 10px;
    border-radius: 3px;
    height: 15px;
    max-height: 15px;
    width: 20px;
    max-width: 20px;
    min-width: 20px;
    min-height: 15px;
}

.background .form-language .body .language-option .selected-lang {
    width: 100%;
    padding: 0px 10px 0px 2px;
    font-size: 14px;
}

.background .form-language .body .language-option span.material-symbols-outlined {
    height: 15px;
    width: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flag-custom {
    border-radius: 3px;
    height: 15px;
    max-height: 15px;
    width: 20px;
    max-width: 20px;
    min-width: 20px;
    min-height: 15px;
}

@media only screen and (max-width: 600px) {
	
	.background {
		align-items: end!important;
	}
		
	.form-language {
		width: 100%!important;
		min-width: 100%!important;
		max-width: 100%!important;
		bottom: 0;
	}
	
}

.label {
	color: black;
    font-size: 14px;
    font-weight: bold;
    background-color: transparent;
    border-radius: 0px;
	border: none;
	box-shadow: none;
    text-align: center;
}