/* Variables e Inicializaciones */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
	font-family: Arial, Helvetica, Verdana;
}

body {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

/* Header */

.header {
    width: 100%;
    height: 60px;
}

.header__list {
    display: flex;
    height: inherit;
    align-items: center;
    justify-content: end;
    margin-right: 10px;
}

.header__list-item {
    list-style: none;
}

.header__link {
    margin: 0 7px;
    color: black;
    font-size: 1.3rem;
    text-decoration: none;
    display: inline-block;
}

.header__link:hover {
    text-decoration: underline;
}

.apps-button {
    width: 40px;
	height: 40px;
    margin: 0px 4px;
    padding: 12px 0px;
    text-align: center;
}

.apps-button:hover {
    border-radius: 50%;
	background-color: rgba(60,64,67,0.08);
}

.simple-button-1 {
	color: white;
	font-size: 1.4rem;
	border-radius: 4px;
    letter-spacing: 0.1px;
	background-color: #1a73e8;
		
	display: flex;
	align-items: center;
	justify-content: center;
    padding: 10px 25px;
}

.simple-button-1:hover {
	background-color: #2b7de9;
	box-shadow: 0px 1px 2px 0 rgba(66,133,244,0.3), 0px 1px 3px 1px rgba(66,133,244,0.15);
    text-decoration: none;
}

/* Main */

.main {
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.logo-container {
	margin-top: 15px;
}

.search-bar {
	margin-top: 20px;
}

.search-bar__text-container {
	display: flex;
	align-items: center;
	
	width: 582px;
	height: 46px;
	border-radius: 24px;
	border: 1px solid #dfe1e5;
}

.search-bar__text-container:hover {
	border-color: rgba(223,225,229,0);
	box-shadow: 0 1px 6px rgba(32,33,36,.28);
}

.search-bar__text-input {
	width: 500px;
	height: 30px;
	border: none;
	font-size: 1.6rem;
}

.search-bar__search-icon {
	margin: 0 16px;
}

.search-bar__text-input:focus {
	outline: none;
}

.search-bar__buttons-container {
	margin-top: 25px;
	display: flex;
	justify-content: center;
}

.search-bar__button {
	color: #3c4043;
	border-radius: 4px;
	border: 1px solid #f8f9fa;
	background-color: #f8f9fa;
	
	font-size: 1.4rem;

	height: 36px;
	margin: 0px 7px;
	padding: 0px 16px;
	line-height: 27px;
	text-align: center;
	
	cursor: pointer;
}

.search-bar__button:hover {
	color: #202124;
	
	border: 1px solid #dadce0;
	background-color: #f8f9fa;
	box-shadow: 0px 1px 1px rgba(0,0,0,0.1);
}

/* Footer */

.footer {
	margin-top: auto;
	background-color: #f2f2f2;
}

.footer__section {
	width: 100vw;
	padding: 15px 30px;
}

.footer__language {
	color: #70757a;
	font-size: 1.5rem;
}

.footer__section--bottom-line {
	border-bottom: 1px solid #dadce0;
}

.footer__list-item {
	list-style: none;
	margin-right: 30px;
	display: inline-block;
}

.footer__list-item--no-margin-right {
	margin-right: 0px;
}

.footer__section--spaced-items{
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.footer__link {
	color: #70757a;
	font-size: 1.5rem;
	text-decoration: none;
}

.footer__link:hover {
	text-decoration: underline;
}
