button,
input,
button:active,
input:active,
button:focus,
input:focus,
textarea,
textarea:focus,
textarea:active,
select,
select:focus,
select:active {
/* border: 0 !important; */
    outline: none !important;
}

button {
    cursor: pointer;
}

#modal-subs {
    display: none;
    z-index: 102;
}

.bg-overlay {
    background-color: #f5f5f9;
}

body {
    overflow-x: hidden;
    font-family: "Montserrat" !important;
}

.header {
    border-color: #e7e7ed;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.auth-modal[data-target='login'],
.auth-modal[data-target='singup'],
.auth-modal[data-target='make'] {
    display: none;
}

.trigger-menu {
    background-color: #f93039;
    border-radius: 25px;
}

.column-count-2 {
    column-count: 2;
}

.wrapper {
    width: 100%;
    max-width: 77rem;
    margin: 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

.wrapper.sm {
    max-width: 72.125rem;
    padding-left: 0;
    padding-right: 0;
}

.\-z-1 {
    z-index: -1 !important;
}

.max-w-3\/4,
.max-w-9\/12 {
    max-width: 75%;
}

.min-w-45 {
    min-width: 11.25rem;
}

.max-w-96 {
    max-width: 24rem;
}

.container-fluid--max-width {
    max-width: 1440px;
}

.bg-light-orange {
    background-color: #ff8a00;
}

.wrapper-width {
    width: 100%;
    margin: 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

.min-w-1\/3 {
    min-width: 33.333333%;
}

.min-h-15 {
    min-height: 3.75rem;
}

.sticky-block.active {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
}

.menu-animation {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    visibility: hidden;
    transition: visibility 0.2s;
}

.menu-animation-content,
.menu-animation-overlay {
    transition: all 0.2s;
    position: absolute;
    top: 0;
    /*right: 0;*/
	
	left: 0;
}

.menu-animation-overlay {
    visibility: hidden;
    opacity: 0;
    /*left: 0;*/
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
	
	right: 0;
}

.menu-animation-content {
    height: 100%;
    width: calc(100% - 50px);
    /*transform: translateX(100%);*/
    -webkit-overflow-scrolling: touch;
	/*margin-right: -50px;*/
	
	transform: translateX(-100%);
}

.menu-animation-close {
    background-color: #fff;
    position: absolute;
    top: 0;
    display: flex;
    width: 50px;
    height: 50px;
	/*left: -50px;*/
	
	right: -50px
}

.menu-animation.active {
    visibility: visible;
    transition: none;
}

.menu-animation.active .menu-animation-overlay {
    visibility: visible;
    opacity: 1;
    transition-property: opacity;
}

.menu-animation.active .menu-animation-content {
    /*transform: translateX(-50px);*/
	transform: translateX(0);
}

.bg-charade-transparent {
    background-color: rgba(41, 41, 50, 0.8);
}

@media (min-width: 992px) {
    .sticky-block.active {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 20;
    }
    .wrapper-width-left {
        width: 75%;
    }
    .wrapper-width-right {
        width: 25%;
    }
    .md\:min-h-80 {
        min-height: 20rem;
    }
}

@media (max-width: 992px) {
    .-ml-48 {
        margin-right: auto !important;
        margin-left: auto !important;
    }
    .sm\:-z-1 {
        z-index: -1 !important;
    }
    .sticky-block.active {
        position: fixed;
        top: 48px;
        width: 100%;
        z-index: 20;
    }
}


/*.menu li::after {
    right: 100%;
    bottom: 0px;
    left: 0px;
    height: 1px;
    content: '';
    background-color: rgb(34, 34, 34);
    opacity: 0;
    transition: opacity 0.3s ease 0s, right 0.3s ease 0s;
}

.menu li:hover::after {
    right: 0px;
    opacity: 1;
}*/

#menu-menu {
    display: flex;
    align-items: center;
}

.header {
    position: sticky;
    top: 0px;
}

.btn_principal {
    display: inline-block;
    width: auto;
    vertical-align: middle;
    overflow: hidden;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 999px;
    outline: none;
    border: 2px solid transparent;
    background-color: #9ca3af;
    color: white;
    height: 30px;
    padding: 0px 3rem;
    position: relative;
    -webkit-box-flex: 0;
    flex-grow: 0;
    transition: all 250ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}

.btn_principal:hover {
    background-color: #f93039;
}

.btn_principal span {
    position: relative;
    display: inline-block;
    transition: all 300ms ease-out 0s;
    will-change: transform;
}

.btn_principal .arrow {
    position: absolute;
    top: 48%;
    right: 0px;
    width: 24px;
    opacity: 0;
    transition: opacity 150ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s, right 250ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    transform: translateY(-50%);
}

.btn_principal .arrow path {
    fill: rgb(255, 255, 255);
}

.btn_principal:hover .arrow {
    right: -2rem;
    opacity: 1;
}

.btn_principal:hover span {
    ransform: translate3d (-1rem, 0, 0);
    color: #fff;
}

@media only screen and (max-width: 768px) {
    .btn_principal {
        display: flex;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
        border-radius: 2rem;
        border: 2px solid #9ca3af;
        padding: 0.3rem 0.5rem 0.2rem;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
        color: #9ca3af;
        background-color: transparent;
        transition: all 0.5s ease 0s;
        height: initial;
    }
}

@media screen and (min-width: 768px) and (max-width: 953px) {
    .header-top-menu a {
        font-size: 1em;
        padding-left: 0;
    }
    .btn_principal {
        padding: 0 0.8rem;
        font-size: 0.8rem;
    }
}

.header-mob-menu {
    padding: 5px;
    margin: 0 auto;
    width: 230px;
}

/*.header-mob-menu a {
    color: #333333;
    background: #f5f5f9;
    padding: 0px 15px 0px 15px;
    border-radius: 10px;
    line-height: 3.0rem;
    display: block;
    margin-bottom: 10px;
}*/


@media (min-width: 768px) and (max-width: 1100px) {
	.md\:w-56  {
		width: 6rem !important;
	}
}
