@charset "UTF-8";

/* BUTTON OUTLINE BLUE */

.btn-theme {
	position: relative;
	display: inline-block;
	font-family: Montserrat,sans-serif;
	letter-spacing: 2px;
	font-weight: 400;
	text-transform: uppercase;
	outline: 0;
	box-sizing: border-box;
	cursor: pointer;
	color: var(--black);
	background-color: transparent;
	border: 1px solid transparent;
	border-left: 1px solid var(--theme-bg-color);
	padding: 0 13px 12px 13px;
	transition: all .3s cubic-bezier(.78,.2,.21,.88),color 0s;
	white-space: nowrap;
}

.btn-theme:before {
	content: '';
	display: block;
	border-top: 1px solid var(--theme-bg-color);
	width: 0;
	position: absolute;
	left: 0;
	top: -1px;
	-webkit-transition: 1s ease;
	transition: 1s ease;
}

.btn-theme:after {
	content: '';
	display: block;
	border-bottom: 1px solid var(--theme-bg-color);
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	-webkit-transition: 1s ease;
	transition: 1s ease;
}

.btn-theme:focus,
.btn-theme:hover,
.btn-theme:active {
	padding: 8px 13px 4px 13px;
	text-decoration: none;
}

.btn-theme:focus:before,
.btn-theme:hover:before,
.btn-theme:active:before {
	width: 100%;
}

.btn-theme:focus:after,
.btn-theme:hover:after,
.btn-theme:active:after {
	width: 0;
}

.btn-theme.btn-theme-block {
	display: block;
	width: 100%;
}

/* BUTTON OUTLINE BLACK */

.btn-theme.outline-black {
	border-left: 1px solid var(--black);
}

.btn-theme.outline-black:before {
	border-top: 1px solid var(--black);
}

.btn-theme.outline-black:after {
	border-bottom: 1px solid var(--black);
}

.bg-theme-half-black .btn-theme.outline-black {
	color: var(--white);
	border-left: 1px solid var(--white);
}

.bg-theme-half-black .btn-theme.outline-black:before {
	border-top: 1px solid var(--white);
}

.bg-theme-half-black .btn-theme.outline-black:after {
	border-bottom: 1px solid var(--white);
}


/* BUTTON BOX YELLOW */

.btn-theme-box {
	display: inline-block;
	position: relative;
	z-index: 1;
}


#scroll-up .btn-theme-box:hover,
#scroll-up .btn-theme-box-button,
#scroll-up .btn-theme-box-line-top,
#scroll-up .btn-theme-box-line-right,
#scroll-up .btn-theme-box-line-bottom,
#scroll-up .btn-theme-box-line-left {
	border-color: #ffac00;
	background-color: #ffac00;
	color: #fff;
}

.btn-theme-box-button {
	color: var(--white);
	background-color: var(--theme-bg-color);
	border: 1px solid transparent;
	transition: all .3s cubic-bezier(.78,.2,.21,.88),color 0s;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	margin: 0;
	font-family: Montserrat,sans-serif;
	line-height: 2em;
	letter-spacing: 2px;
	font-weight: 400;
	text-transform: uppercase;
	outline: 0;
	box-sizing: border-box;
	cursor: pointer;
	white-space: nowrap;
	text-align: center;
}

.btn-theme-box-button-text {
	transition: all .3s cubic-bezier(.78,.2,.21,.88),color 0s;
}

.btn-theme-box-line-top {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--theme-text-color);
	z-index: 0;
	transition: 0s .3s;
}

.btn-theme-box-line-right {
	position: absolute;
	top: 0;
	right: 0;
	width: 2px;
	height: 100%;
	background-color: var(--theme-bg-color);
	z-index: 0;
	transform: translate3d(5px,5px,0);
}

.btn-theme-box-line-bottom {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 2px;
	background-color: var(--theme-bg-color);
	z-index: 0;
	transform: translate3d(5px,5px,0);
}

.btn-theme-box-line-left {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 2px;
	height: 0;
	background-color: var(--theme-text-color);
	z-index: 0;
	transition: 0s .3s;
}

.btn-theme-box:hover .btn-theme-box-button {
	color: var(--white);
	background-color: var(--theme-bg-color);
	border: 1px solid var(--theme-bg-color);
	transform: translate3d(5px,5px,0);
	text-decoration: none;
}

.btn-theme-box:hover .btn-theme-box-line-top {
	background-color: var(--theme-bg-color);
	width: 100%;
	transition: width .4s .3s;
}

.btn-theme-box:hover .btn-theme-box-line-right {
	background-color: var(--theme-bg-color);
}

.btn-theme-box:hover .btn-theme-box-line-bottom {
	background-color: var(--theme-bg-color);
}

.btn-theme-box:hover .btn-theme-box-line-left {
	background-color: var(--theme-bg-color);
	height: 100%;
	transition: height .2s .1s;
}

/* BUTTON BOX YELLOW SMALL*/

.btn-theme-box.btn-theme-box-sm .btn-theme-box-button {
	padding: 4px 15px;
}


/* BUTTON BOX YELLOW - DISABLED*/

.btn-theme-box.btn-theme-box-disabled {
	opacity: 0.4;
	pointer-events: none;
}

.btn.disabled {
	opacity: 0.2;
	pointer-events: none;
}

/* BUTTON SIMPLE */

.btn-theme-simple {
	background-color: var(--theme-bg-color);
	border: 1px solid var(--theme-bg-color);
	color: var(--white);
}

.btn-theme-simple:hover {
	background-color: var(--white);
	color: var(--theme-bg-color);
}

/* XS */
@media only screen and (min-width : 0px) {

	.btn-theme-box-button {
		padding: 4px 18px;
	}

	.btn-theme {
		font-size: 10px;
	}

	.btn-theme-box-button {
		font-size: 10px;
	}
}

/* SM (landscape phones, 576px and up) */
@media (min-width: 576px) {

}

/* MD (tablets, 768px and up) */
@media (min-width: 768px) {

}

/* LG (desktops, 992px and up) */
@media (min-width: 992px) {

	.btn-theme {
		font-size: 12px;
	}

	.btn-theme-box-button {
		font-size: 12px;
	}
}

/* XL (large desktops, 1200px and up) */
@media (min-width: 1200px) {

	.btn-theme-box-button {
		padding: 16px 60px;
	}
}



