/*
	Theme Name: TempurPainel
	Theme URL: https://tempur.pikolincontract.com.br
	Author: Kezily Correa | Inovalize
	Author URL: http://inovalize.com.br
	Description: Tema desenvolvido por Inovalize
	Version: 1.0
*/

/* GERAL */

* {
	border: none;
	margin: 0;
}

body {
	background-color: var(--white);
	color: var(--inz-dark);
	font: 400 15px/1.7 'Nunito Sans', Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-webkit-text-rendering: optimizeLegibility;
}

a {
	color: var(--inz-dark);
	border: none;
	text-decoration: none;
}

a:hover {
	color: #6d6d6d;
	text-decoration: none;
}

a {
	/* -webkit-transition: all 300ms linear; */
	-moz-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	transition: all 300ms linear;
}

strong {
    font-weight: 700;
}

img,
iframe,
video {
	vertical-align: bottom;
}

div,
section,
article {
	position: relative;
}

/* GENERAL */

.clear {
	clear: both;
}

@media (min-width: 1200px) {
    .not-desktop {
        display: none;
    }
}

/* HEADER */

#header {
	width: 100%;
	margin: 0 auto;
	position: relative;
}

@media (min-width: 992px) {
    #header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
    }
}

/* PORTAL LIST */

.portal-list {
    flex-direction: column !important;
    position: absolute;
    top: 2rem;
    right: 0;
    z-index: 99;
}

.portal-list li img {
    transform: rotate(-90deg);
}

.portal-list a {
    width: 38px;
    height: 95px;
    padding: 5px !important;
    margin-bottom: 8px;
    background-color: var(--item-color, --white);
    border-radius: 10px 0 0 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.portal-list img {
    width: auto;
    max-width: 73px;
    height: auto;
}

@media (min-width: 992px) {
    .portal-list a {
        width: 48px;
        height: 120px;
    }

    .portal-list img {
        max-width: 85px;
    }
}

/* MAIN NAV */

#main-nav {
	width: 100%;
	margin: 0 auto;
	border: none;
	text-transform: uppercase;
}

#main-nav.invert ul {
    filter: grayscale(100%) invert(1);
}

.navbar-brand {
	margin: 0;
	padding: 5px;
	position: relative;
}

.navbar-brand h1 {
    line-height: 1;
    font-size: 1em;
}

.navbar-brand img {
  width: 100%;
  max-width: 120px;
  height: auto;
  background-color: var(--white);
}

.navbar-toggler {
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
}

#main-nav .navbar-nav > li > a {
    padding: 10px 30px;
    background-size: 25px !important;
    color: var(--inz-secondary);
    font-size: 15px;
    letter-spacing: 1px;
    display: block;
}

.ic-home {
    background: url(images/ic-home.png) left no-repeat;
}

.ic-menu {
    background: url(images/ic-menu.png) left no-repeat;
}

@media (max-width: 767px) {
    #main-nav {
        padding: 5px 10px;
    }

    #main-nav .navbar-nav > li > a {
        padding-right: 10px;
        font-size: 13px;
        letter-spacing: 0;
        line-height: 1;
    }

    #main-nav .navbar-nav > li:last-child a {
        padding-right: 0;
    }
}

@media (min-width: 992px) {
    .navbar-brand img {
        max-width: 240px;
        padding: 15px;
    }
}

/* SECUNDARY NAV */

.secundary-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.secundary-nav a {
    height: 40px;
    padding: 0 10px 0 30px;
    background-size: 22px !important;
    color: var(--inz-secondary);
    font-size: 1rem;
    font-weight: 200;
    line-height: 40px;
    text-transform: uppercase;
    display: inline-block;
}

@media (min-width: 992px) {
    .secundary-nav a {
        height: 64px;
        padding: 0 50px 0 75px;
        background-size: auto !important;
        font-size: 1.7rem;
        line-height: 75px;
    }
}

/* CLOSE BUTTON */

.close-icon {
	width: 30px;
	height: 30px;
	cursor: pointer;
}

.close-icon:before,
.close-icon:after {
	content:'';
	position:absolute;
    background-color: var(--inz-primary);
	width: 26px;
	height: 3px;
	top: 16px;
}

.close-icon:before {
	-webkit-transform:rotate(45deg);
	-moz-transform:rotate(45deg);
	transform:rotate(45deg);
	left:2px;
}
.close-icon:after {
	-webkit-transform:rotate(-45deg);
	-moz-transform:rotate(-45deg);
	transform:rotate(-45deg);
	right:2px;
}

#main-nav .close-menu {
    position: absolute;
    top: 10px;
    right: 24px;
    z-index: 9;
}

/* PRODUCT */

.home button.next-section {
    display: none;
}

button.next-section {
    width: 80px;
    height: 80px;
    background: url(images/arrow-down.png) center no-repeat transparent;
    border: 1px solid #000;
    border-radius: 100px;
    position: absolute;
    bottom: 80px;
    right: 50px; 
    cursor: pointer;
    z-index: 9;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    animation: pulse 1.5s infinite;
}

.light button.next-section {
    filter: invert(1);
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
	}

	70% {
		box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

@media (max-width: 992px) {
    button.next-section {
        display: none;
    }
}

/* PRODUCT - QR CODE */

.qrcode {
    width: 100%;
    max-width: 130px;
    padding: 5px;
    background-color: var(--white);
    text-align: center;
    position: fixed;
    right:20px;
    top: 90px;
    z-index: 99;
    border-radius: 5px;
}

.qrcode img {
    width: 100%;
}

@media (max-width: 1199px) {
    .qrcode {
        top: auto;
        bottom: 20px;
    }
}

/* PADDINGS */

.p-6,
.pr-15 {
    padding: 2rem;
}

@media (min-width: 1200px) {
    .pr-15 {
        padding-right: 4rem;
    }
    .p-6 {
        padding: 5rem;
    }
}

@media (min-width: 1650px) {
    .pr-15 {
        padding-right: 13rem;
    }
}

/* ENTRY */

.section-block img {
    max-width: 100%;
	height: auto;
}

.section-block p {
	margin-bottom: 25px;
}

.section-block p a,
.section-block li a {
    text-decoration: underline;
}

.has-large-font-size {
    font-weight: 300;
}

.wp-block-image {
	margin-bottom: 0;
}

.wp-block-image img {
	height: auto;
}

.wp-block-image figcaption {
	font-size: 12px;
	text-align: center;
	color: #8d8d8d;
}

/* MODAL */

.modal-content {
    background-color: #f7f7f7;
    border-radius: 5px;
    border: none;
}

.modal-dialog {
    width: 95%;
    max-width: 650px;
}

.modal-body {
    padding: 5%;
    color: var(--inz-dark);
}

.modal-body .intitle {
	font-size: 2em;
	text-transform: none;
}

.modal button.close {
    width: 35px;
    height: 35px;
    padding: 0;
    color: var(--inz-primary);
    background-color: #fff;
    font-size: 35px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    opacity: 1;
    border-radius: 10px;
}

/* CUSTOM SCROLL */

.custom-scroll::-webkit-scrollbar {
    width: 4px;
}
  
.custom-scroll::-webkit-scrollbar-track {
    background: #c9c9c9; 
}
   
.custom-scroll::-webkit-scrollbar-thumb {
    background: var(--inz-gray); 
    border-radius: 100px; 
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--inz-gray); 
}

/* MEDIA QUERIES */

.container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

@media (min-width: 992px) {
    body {
        font-size: 17px;
    }
    .container-fluid {
        max-width: 2500px;
        padding-left: 70px;
        padding-right: 70px;
    }
}