/*
Theme Name: WP Drift
Theme URI: https://driftweb.com.br/
Author: DriftWeb
Author URI: https://driftweb.com.br/
Description: Tema para Wordpress leve e compacto, criado pela equipe de desenvolvimento da Drift Web.
Version: 0.6
*/


/**
* Esse arquivo serve como reset e dar
* suporte a navegadores antigos
*/
*, *:before, *:after { box-sizing: inherit; }

html, body {
    height: 100%;
}

html {
  box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Meyer Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

a {
  text-decoration: none;
}

a:visited {
  color: inherit;
}

:focus {
  outline: 0;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: normal;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

pre {
    background: #efefef;
    font-family: 'verdana', sans-serif;
    font-size: 14px;
    padding: 10px;
    white-space: pre-wrap;
    border: 1px solid #d9d9d9;
    word-break: break-word;
    color: #6d6d6d;
}

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

/*
  ALTERAÇÃO - Matheus - 24/11/2020
  - Adicionar slider ao box "Outros tamanhos", na single do produto
*/

.single-produtos .outras-tamanhos .titulo-guia {
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
.single-produtos .outras-tamanhos .titulo-guia:hover {
  color: var(--vermelhoEscuro);
}

.single-produtos .outras-tamanhos .titulo-guia:after{
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-left: 16px;
  transform: rotate(45deg);
  margin-bottom: 3px;
  border-width: 0px 2px 2px 0px;
  border-color: var(--vermelhoEscuro);
  border-style: solid;
  transition: 0.3s all ease-in-out;
}

.single-produtos .outras-tamanhos .titulo-guia.active:after {
  transform: rotate(225deg);
  margin-bottom: 0;
}