/**
 * Theme Name: Live Socially
 * Theme URI: https://360tactics.net
 * Author: Jordan Stephens
 * Author URI: https://360tactics.net
 * Description: Live Socially Theme
 * Bitbucket Theme URI: https://bitbucket.org/team360tactics/live_socially_wp_theme
 * Bitbucket Branch: master
 * Version: 1.0.17
 */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

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

body {
  line-height: 1;
}

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;
}

a:focus,
a:active {
  outline: none;
  color: #0096A3;
}

a {
  text-decoration: none;
  color: #FF3800;
}

a:hover {
  color: #0096A3;
}

/* Accessibility */

/* Text meant only for screen readers. */

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #525252;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

body {
    font-family: "Open Sans";
}

/* Buttons */
button {
    cursor: pointer;
    border: solid 1px #ccc;
    border-radius: 5px;  
    background: #0096A3;
    color: #fff;  
    text-align: center;
}

button.button {
    background: #0096a3;
    color: #fff;
}

.button {
    background: #fff;
    border: solid 1px #aaa;
    display: inline-block;
    padding: .5rem 2rem;
    width: 70%;
    border-radius: 5px;
    font-size: .8rem;
    font-weight: 600;
    text-align: center;
}

.button:hover {
    background: #0096a3;
    color: #fff;
}

.insta-wrap .button {
    color: #000;
    font-family: 'Open Sans';
    text-transform: uppercase;
    position: relative;
    margin-bottom: .5rem;
}

.insta-wrap .button:hover {
    background: #0096a3;
    color: #fff;
}

.insta-wrap button.button {
    color: #fff;
}

/* General */
.extra-space-bottom {
    padding-bottom: .5rem;
}

/* Loading Spinner */
.loading-spinner {
  opacity: 0;
  transition: opacity 400ms ease-in;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 8px;
  top: 0px;  
}

.loading-spinner.active {
  opacity: 1;
  transition: opacity 400ms ease-in;
}

.loading-spinner:after {
  content: " ";
  display: block;
  width: 14px;
  height: 14px;
  margin: 8px;
  border-radius: 50%;
  border: 3px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: loading-spinner 1.2s linear infinite;
}

@keyframes loading-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* Hero */
.hero {
    /*
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 70vh 100px;
    align-items: end;
    */
    display: block;
    text-align: center;
    position: relative;
    padding-top: 10vh;
}


.hero-logo {
    text-align: center;
    margin: 0 auto;
    display: block;
    max-height: 100%;
    max-width: 100%;
    width: auto;
}
.hero-nav {
    margin: 0 auto;
    align-self: start;
}

.hero-nav-item {
    align-self: center;
    font-weight: 600;
    color: #0096A3;
    display: inline-block;
    margin: 1rem .5rem;
}

.hero-nav-link.button {
    width: auto;
    padding: .75rem 4rem;
    background: #FF3800;
    color: #fff;
    border: 6px solid #000;
    font-size: 1rem;
}

.hero-nav-item:nth-of-type(2) .hero-nav-link.button{
    background: #EDAD45;
}

.hero-nav-link.button:hover {
    background: #0096a3; /* #0096a3; */
}

.hero-nav-item:nth-of-type(2) .hero-nav-link.button:hover{
    background: #0096a3;
}


/* Footer */
.site-footer {
    text-align: center;
    margin: 0 auto;
}

.home .site-footer {
    position: absolute;
    bottom: 1rem;
    left: 5%;
    right: 5%;
    width: 90%;    
}

.site-footer .site-credits {
    display: none;
}

.footer-nav .instagram-icon {
    width: 1.5rem;
}

.page .footer-nav {
    text-align: right;
    padding-right: 1rem;    
}

.home.page .footer-nav {
    text-align: center;
    padding-right: 0;
}

.footer-nav-item {
    display: inline-block;
    vertical-align: middle;
    padding: .5rem;
}


/* Pages */
.page {
    background: #FFCFC2;
    background: url('images/bg-2.jpg') repeat top left;
    background-size: auto;
    background-size: cover;    
}

.content {
    padding: 0 .5rem 2rem;
}

/* Insta-Wrap Page */
.insta-wrap {
    max-width: 375px;
    margin: -2rem auto 0;
    background: #fff;
    border-radius: 30px;
    border: solid 3px #000;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 0 10px 0px #000;
    position: relative;

    box-shadow: 3px 10px 41px -4px #000;
    position: relative;
    transform: rotate(-6deg);

}

.insta-wrap .content-block {
    border: solid 1px #eee;
    border-radius: 12px;
    padding: 1rem 1rem .35rem;
    box-shadow: 0 0 1px #555;
    margin: 2rem 0;
    position: relative;
}

.insta-wrap::before {
    content: '';
    display: block;
    background: #fafafa;
    width: 40px;
    height: 20px;
    position: absolute;
    top: 1rem;
    border-radius:30px;
    border: solid 1px #eee;
    box-shadow: inset 0 0 4px #fff;
}

.insta-wrap::after {
    content: '';
    display: block;
    background: #fefefe;
    width: 16%;
    height: 30px;
    position: absolute;
    bottom: .5rem;
    left: 42%;
    border-radius:30px;
    border: solid 1px #ddd;
    box-shadow: inset 0 0 4px #f1f1f1;
}

.profile-intro {
  padding-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
}

.profile-intro .logo {
    max-width: 70px;
    border: solid 2px #eee;
    border-radius: 50%; 
}

.profile-intro .stat {
    font-size: .9rem;
}

.profile-intro .stat strong {
    font-weight: 600;
    display: block;
    font-size: 1.2rem;
    padding-bottom: .5rem;
}

.profile-bio {
    text-align: left;
    padding: 1rem 0;
    font-size: .8rem;
    line-height: 1.3rem;
    padding-right: 4rem;
}

.profile-bio .fa-heart {
    padding-right: .3rem;
    font-size: .75rem;
}

.profile-purchase {
    padding: 1rem 0 .5rem 0;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0;
}

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

.close {
    content: 'X';
    position: absolute;
    top: 1rem;
    right: 1rem;
    /* border: solid 2px rgba(74, 46, 131, 0.2); */
    color: rgba(74, 46, 131, 0.3);
    padding: .25rem .5rem;
    border-radius: 5px;
    font-weight: 900;
    cursor: pointer;
    font-size: 1.5rem;
    color: #ff3800;
    font-family: 'Avenir';
  }

.stripe-checkout {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fffafa;
    border-radius: 10px;
}

.stripe-checkout .form-wrap {
    display: grid;
    align-items: start;
    grid-template-rows: 1fr;
    height: 100%;
    padding: 2rem 1rem 1rem;    
}

.stripe-checkout .form-title {
    text-align: left;
    padding-bottom: 1rem;    
}

.stripe-checkout fieldset {
    margin-top: 0rem;
    font-size: .9rem;
    border: solid 2px #eee;
    border-radius: 5px;
    padding: .5rem 1rem 0;
    background: #fff;
}

.stripe-checkout legend {
    background: #edad45;
    margin: 0 .5rem;
    border: solid 2px #eee;
    border-radius: 5px;
    padding: .2rem 1rem;
    color: #fff;
}

.stripe-checkout label {
    display: block;
    text-align: left;
    margin: 0 auto;
}

.stripe-checkout row:nth-of-type(1) label {
    padding-top: 0;
}

.stripe-checkout input {
    text-align: left;
    display: block;
    width:92%;
    margin: .5rem auto;
    padding: .5rem;
    border: solid 1px #ccc;
    border-radius: 5px;    
    background: #fff7f7;
    font-family: 'Open Sans';
}

.stripe-checkout button {
    margin-top: 1rem;
}

.stripe-checkout .item-info {
    text-align: left;
    line-height: 1.5rem;
    padding-bottom: .5rem;
    font-size: .9rem;
}

.stripe-checkout .item-info strong {
    font-weight: 900;
    color: #0096a3;
    padding-right: .25rem;    
}

.stripe-checkout .StripeElement {
    padding: .5rem;
    margin: .5rem 0 1rem 0;
    background: #fff7f7;
    border: solid 1px #ccc;
    border-radius: 5px;
    font-size: .9rem;
    font-family: "Open Sans";    
}

.stripe-checkout .ElementsApp .InputElement {
    font-size: .10px!important;
}

.aknowledge-container {
    grid-template-columns: 1.5rem 1fr;
    display: grid;
    font-size: .7rem;
    grid-column-gap: 1rem;
    padding: 1rem 0;
    line-height: 1.1rem;
    align-items: center;
}

.aknowledge-container input {
    padding: 0;
    margin: .25rem .5rem;
    width: auto;
    cursor: pointer;   
}

.aknowledge-container input.error {
    box-shadow: 0 0 10px #f00;
}

/* Pages */
.page .page-title {
    font-size: 1.2rem;
    font-weight: 600;
}

/* FAQ Page */
.faq .insta-wrap {
    /* max-width: 500px; */
}

.faq .profile-intro {
    grid-template-columns: 0px 1fr;
    padding-bottom: .5rem;
    /* border-bottom: solid 1px #ccc; */
}

.faq .page-title {
    text-align: center;
}

.faq .profile-purchase {
    border-top: 1px solid #aaa;
    padding-top: 2rem;
}

.faq .page-body h2 {
    font-size: 1rem;
    padding-bottom: .5rem;
    padding-top: 1rem;
    text-align: left;
    cursor: pointer;
    border-top: 1px solid #aaa;
}

.faq .page-body h2:first-of-type {
    border-top: none;
}

.faq .page-body h2:hover,
.faq .page-body h2.active {
    color: #0096a3;
}

.faq .page-body p {
    padding-bottom: .5rem;
    line-height: 1.3rem;
    font-size: .8rem;
    text-align: left;
    display: none;
}



@media only screen and ( max-width: 1200px ){
    .page {
        background-size: auto;
        background-position: center center;
    }
}

@media only screen and ( max-width: 1000px ){
    .hero {
       padding-top: 15vh;
    }
}
@media only screen and ( max-width: 660px ){
    .hero {
        padding-top: 20vh;
    }
}

@media only screen and ( max-width: 600px ){
    .insta-wrap {
        transform: rotate( 0deg );
    }

    .hero-nav-item {
        display: block;
        margin: 1rem .5rem;
    }

    .hero-nav-link.button {
        border: 3px solid #000;
    }
}