/*** FUENTES ***/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*** /FUENTES ***/

/*** GENÉRICO ***/
* {
	box-sizing: border-box;
}

body {
	font-family: 'Montserrat', sans-serif;
	margin: 0;
}

img {
	width: auto;
	height: auto;
}

button,
a {
	outline: none !important;
	cursor: pointer;
}

p {
	margin: 0 0 5px 0;
}

select {
	cursor: pointer;
}

/*** /GENÉRICO ***/

/*** BOTONES ***/
.btn {
	font-weight: 300;
	font-size: 12px;
	text-transform: uppercase;
	transition: .3s background ease-in-out;
	border: none;
	border-radius: 100px;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
}

.btn:disabled {
	cursor: not-allowed;
}

.btn-primary {
	background-color: var(--btn-primary);
	color: var(--btn-primary-contrast);
	display: inline-block;
}

.btn-primary:hover {
	background-color: var(--btn-primary-hover);
}

.btn-primary-ghost {
	border: 1px solid var(--btn-primary);
	color: var(--btn-primary);
	background: var(--btn-primary-contrast);
	display: inline-block;
}

.btn-primary-ghost:hover {
	background: var(--btn-primary);
	color: var(--btn-primary-contrast);
}

/*** /BOTONES ***/

/*** TIMEZONE NOTICE ***/
.timezone-notice {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 20px;
	background: #fffbeb;
	border-bottom: 1px solid #f5d87a;
	font-size: 13px;
	color: #7a5c00;
	line-height: 1.4;
}

.timezone-notice-body {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
}

.timezone-notice-body svg {
	flex-shrink: 0;
	opacity: 0.7;
}

.timezone-notice-dismiss {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	color: #a07800;
	border-radius: 4px;
	opacity: 0.7;
	transition: opacity 0.15s;
}

.timezone-notice-dismiss:hover {
	opacity: 1;
}
/*** /TIMEZONE NOTICE ***/
