.button {
  display: inline-block;
  padding: 15px 25px;
  font-size: inherit;
  cursor: pointer;
  text-align: center;
  text-decoration: blink;
  outline: none;
  color: #020000;
  background-color: #ffcb06;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px rgba(140, 81, 228, 0.79);
}

.button:hover {background-color: rgba(24, 107, 217, 1)}

.button:active {
  background-color: #176bd9;
  box-shadow: 0 5px rgba(140, 81, 228, 0.79);
  transform: translateY(4px);
}

@font-face {
    font-family: "Gravity Variable", Icons;
    font-style: normal;
    src: url(https://files.cargocollective.com/c1214239/jawbhard.ttf) format('woff');
    font-display: swap;
	font-variation-settings: 'wdth' 100;
} 

.image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    margin:-60px 0 0 -60px;
    -webkit-animation:spin 8s radial infinite;
    -moz-animation:spin 8s radial infinite;
    animation:spin 4s radial infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }.image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    margin:-60px 0 0 -60px;
    -webkit-animation:spin 5s linear infinite;
    -moz-animation:spin 5s linear infinite;
    animation:spin 8s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(120deg); } }.flier {
	pointer-events: none;
}

.flier > * {
/* Adjust animation duration to change the element’s speed */
        animation: fly 50s linear infinite;
        pointer-events: none !important;
	top: 0;
	left: 0;
	transform: translateX(-120%) translateY(-120%) rotateZ(0);
	position: fixed;
	animation-delay: 1s;
	z-index: 999999;
}

 /* Keyframe values control where the element will begin
    and end its trajectory across the screen. Each rule
    represents a path the element follows across the screen. */


@keyframes fly {

	98.001%, 0% {
                display: block;
		transform: translateX(-200%) translateY(100vh) rotateZ(0deg)
	}

	15% {
		transform: translateX(100vw) translateY(-100%) rotateZ(180deg)
	}

	15.001%, 18% {
		transform: translateX(100vw) translateY(-30%) rotateZ(0deg)
	}

	40% {
		transform: translateX(-200%) translateY(3vh) rotateZ(-180deg)
	}

	40.001%, 43% {
		transform: translateX(-200%) translateY(-100%) rotateZ(-180deg)
	}

	65% {
		transform: translateX(100vw) translateY(50vh) rotateZ(0deg)
	}

	65.001%, 68% {
		transform: translateX(20vw) translateY(-200%) rotateZ(180deg)
	}

	95% {
		transform: translateX(10vw) translateY(100vh) rotateZ(0deg)
	}
}
* {
  margin: auto;
  padding: 1.2;
  backface-visibility: initial;
}

html,
body {
  height: initial;
  background: transparent;
  font-family: "Balsamiq Sans", sans-serif;
}

body {
  display: block;
  align-items: center;
  justify-content: center;
}

.card {
  width: 100%;
  padding: 60px 80px 80px 80px;
  border: 6px solid rgba(228, 255, 106, 0.3);
  box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.3);
  border-radius: 150px;
  position: relative;
}

.card h2 {
  color: rgba(0, 0, 0, 0.3);
  font-size: 60px;
  text-transform: uppercase;
}

.card .row {
  position: relative;
  width: 100%;
  display: grid;
  grid: auto / auto auto;
  grid-template-columns: repeat(initial, minmax(60%, 1fr));
  grid-gap: 23px;
}

.card .row .col {
  position: relative;
  width: auto;
  margin: 60px 80px 20px 0px;
  transition: 0.5s;
}

.card .row .form-group {
  position: relative;
  width: 100%;
  height: 67px;
  color: #ffffff;
}

.card .row .form-group input,
.card .row .form-group textarea {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  outline: none;
  font-size: 22px;
  padding: 19px 45px 10px 20px;
  border: 3px solid rgba(134, 128, 255, 1);
  box-shadow: 10px 10px 0 rgba(255, 203, 6, 1);
  color: #fff000;
  border-radius: 23px;
}

.card .row .form-group label {
  line-height: 60px;
  color: #ffcb06;
  font-size: 30px;
  margin: 10 25px 30px 30px;
  display: inline-grid;
  pointer-events: all;
}

.row .col:nth-child(6) {
  margin-top: 140px;
    position: static
}

.card .row .form-group input:focus,
.card .row .form-group textarea:focus {
  border: 5px solid #000fff;
  transition: all 0.5s;
}

.card .row input[type="submit"] {
  border: 5px solid rgba(134, 128, 255, 1);
  box-shadow: 10px 10px 0 rgba(255, 203, 6, 1);
  padding: 7px;
  height: 100%;
  width:120%;
  cursor: pointer;
  outline: none;
  background: rgba(178, 210, 32, 0.74);
  text-transform: uppercase;
  color: #ffffff;
  line-height: 6.7px;
  font-size: 28px;
  font-weight: 800;
  border-radius: 13px;
  transition: all 0.4s;
}

.card .row input[type="submit"]:hover {
  border: 5px solid rgba(255, 126, 96, 1);
  color: #ffffff;
  transition: all 0.4s;
}

@media screen and (max-width: 800px) {
  .card .row {
    grid-template-columns: repeat(auto-fit, minmax(70%, 1fr));
  }

  .card {
    padding: 27px;
  }

  .card h2 {
    font-size: 34px;
  }

  .card .row input[type="submit"] {
    width: 100%;
  }
}

:root {
  --backgroundColor: rgba(246, 241, 209);
  --colorShadeA: transparent;
  --colorShadeB: transparent;
  --colorShadeC: transparent;
  --colorShadeD: transparent;
  --colorShadeE: transparent;
}

button {
  position: relative;
  display: block;
  cursor: pointer;
  outline: ridge;
  border: 0;
  vertical-align: bottom
  font-size normal;
    color:var(--colorShadeA);
  font-weight: 700;
  text-transform: uppercase;
  font-family: inherit;
}

button.big-button {
   padding: 1em 1em;
   border: 1px solid var(--colorShadeA);
  border-radius: 1em;
  background: var(--colorShadeE);
transform-style: preserve-3d;
   transition: all 175ms cubic-bezier(0, 0, 1, 1);
}
button.big-button::before {
  position: relative;
  content: '';
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--colorShadeC);
  border-radius: inherit;
    box-shadow: 0 0 0 2px var(--colorShadeB), 0 0.75em 0 0 var(--colorShadeA);
 transform: translate3d(0, 0.75em, -1em);
     transition: all 175ms cubic-bezier(0, 0, 1, 1);
}


button.big-button:hover {
  background: var(--colorShadeD);
  transform: translate(0, 0.375em);
}

button.big-button:hover::before {
  transform: translate3d(0, 0.75em, -1em);
}

button.big-button:active {
            transform: translate(0em, 0.75em);
}

button.big-button:active::before {
  transform: translate3d(0, 0, -1em);
  
      box-shadow: none -3 0 2px var(--colorShadeB), 0 0.25em 0 0 var(--colorShadeB);

}
.close {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 32px;
  height: 32px;
  opacity: 0.3;
}
.close:hover {
  opacity: 1;
}
.close:before, .close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: rgba(248, 117, 0, 0.73);
}
.close:before {
  transform: rotate(45deg);
}
.close:after {
  transform: rotate(-45deg);
}

div.a {
  -ms-transform: rotate(20deg); /* IE 9 */
  transform: rotate(20deg);
}

div.b {
  -ms-transform: skewY(20deg); /* IE 9 */
  transform: skewY(20deg);
}

div.c {
  -ms-transform: scaleY(1.5); /* IE 9 */
  transform: scaleY(1.5);
}

.glow {
  animation: glow 1s ease-in-out infinite alternate;
    display: inline-block;
    opacity: 20;

}
@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 95px rgba(176, 224, 17, 0.77), 0 0 7px rgba(13, 20, 214, 0.83), 0 0 30px transparent, 0 0 30px rgba(161, 217, 7, 0.74), 0 0 20px rgba(207, 239, 24, 0.86), 0 0 10px rgba(215, 245, 16, 0.53), 0 0 20px rgba(140, 214, 13, 1);
  }
  
  to {
    text-shadow: 0 0 10px rgba(12, 87, 238, 0.84), 0 0 5px rgba(3, 164, 83, 0.96), 0 0 40px transparent, 0 0 10px rgba(237, 96, 14, 0.61), 0 0 50px #084305, 0 0 20px transparent, 0 0 5px rgba(238, 120, 16, 0.93);
  }
}

.blink {
    animation: 1s infinite blink;
    display: inline-block;
}

@keyframes blink {
    0%, 15% {
        opacity: 0;
    }
    16%, 100% {
        opacity: 1;
    }
}
/**
 * Content
 */


body {
    background: rgb(245, 231, 213);
   



}

a:active {
	opacity: 0.;
}

.page a.active {
	border-bottom: 0px solid transparent;
}

i,
em {
	font-style: italic;
}

b,
strong {
	font-weight: 700;
     text-transform: uppercase;
}

sub,
sup {
	position: relative;
	vertical-align: baseline;
}

sub {
	top: 0.3em;
}

sup {
	top: -0.4em;
}

s {
	text-decoration: line-through;
}
.image1
{
	border: 0;
	padding: 0;	
}

.image2
{
	border: 0;
	padding: 0;
}

ul {
	margin: 0;
	padding: 0 0 0 3.3rem;
    list-style-type: circle;
}
	

ol {
	margin: 0;
	padding: 0 0 0 1.5rem;
    list-style-type: inline;
}

ol > li {
    padding-left: 1.00rem;
}

blockquote {
	margin: 0;
	padding: 0 0 0 1em;
}

table, th, td {
  border: 0px solid black;
}

    
  hr.new1 {
        background: rgba(245, 242, 238, 1);
	border: 0;
	height: 5px;
	display: block;
     
}
  hr.new2 {
        background: rgba(50, 50, 50, 1);
	border: 0;
	height: 5px;
	display: block;

}


  hr.new3 {
        background: rgba(222, 173, 40, 1);
	border: 0;
	height: 5px;
	display: block;

}

hr.new4 {
        background: rgba(76, 101, 201, 1);
	border: 0;
	height: 5px;
	display: block;

}

.content img {
	float: none;
	margin-bottom: 0.2rem;
    vertical-align: bottom;
}

.gallery_image_caption {
    margin-top: 0.5em;
    margin-bottom: 1rem;
    font-size: 1.1rem;
	font-weight: 400;
	color: rgba(50, 50, 50, 1);
	font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue Regular", Icons;
	font-style: normal;
	line-height: 1.3;
    text-align: left;
    font-display: swap;
}

/**
 * Loading Animation
 */

.loading[data-loading] {
	position: fixed;
	bottom: 8px; 
    left: 8px;
}




/**
 * Editor styles
 */

/**
 * Desktop Styles
 */

@media (min-width: 1025px) {

[data-predefined-style="true"] bodycopy {
	font-size: 1.4rem;
	font-weight: 700;
    padding: 4em;
	color: #000;
	font-family: Karla, Icons;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: -0.08rem;
}

[data-predefined-style="true"] bodycopy a {
	color: #323232;
    text-decoration: none;
}

[data-predefined-style="true"] bodycopy a:hover {color: rgba(222, 173, 40, 1)

}

bodycopy a.image-link,
bodycopy a.icon-link,

bodycopy a.image-link:hover ,
bodycopy a.icon-link:hover {
	
}

@font-face {
    font-family: "nulshock-bd";
    font-weight: normal;
    font-style: normal;
    src: url(https://files.cargocollective.com/c1069902/nulshock-bd.ttf) format('woff');
    font-display: swap;
} 

[data-predefined-style="true"] h1 {
	font-family: "nulshock-bd", Icons;
	font-style: normal;
	font-weight: 600;
	padding: 0;
	margin: 0;
	font-size: 4.5rem;
	line-height: 0.8;
	color: #323232;
    letter-spacing: -0.05rem;
}


[data-predefined-style="true"] h1 a {
	color: #323232;
}
    
@font-face {
    font-family: "titlinggothicfb narrow";
    font-weight: normal;
    font-style: normal;
    src: url(https://files.cargocollective.com/c1069902/TitlingGothicFBNar-Bold.otf) format('woff');
    font-display: swap;
} 
    
[data-predefined-style="true"] h2 {
	font-family: "titlinggothicfb narrow","Archivo Black", Icons;
	padding: 0;
	margin: 0;
	color: #323232;
	font-size: largerrem;
	line-height: 1.0;
	letter-spacing: 0.00rem;
	font-style: normal;
	font-weight: 400;
}

[data-predefined-style="true"] h2 a {
    color: #323232;
}

[data-predefined-style="true"] small {
	display: block;
	font-size: 2rem;
	line-height: 1;
	font-family: "Social Condensed Variable", Icons;
	color: #323232;
    letter-spacing: 0.02em;
	font-style: normal;
	font-weight: 700;
	font-variation-settings: 'wdth' 75, 'slnt' 0;
}

[data-predefined-style="true"] small a {
	color: #323232;
}

[data-predefined-style="true"] small a:hover {color: rgba(222, 173, 40, 1)
    
}
}

/**
 * Mobile Styles
 */

@media (max-width: 768px) {
	


[data-predefined-style="true"] bodycopy {
	font-size: 1.8rem;
	font-weight: 400;
	color: #000;
	font-family: Karla, Icons;
	font-style: normal;
	line-height: 1.3;
	letter-spacing: 0.00rem;
}

[data-predefined-style="true"] bodycopy a {
	color: rgb(50, 50, 50);
    text-decoration: none;
}

[data-predefined-style="true"] bodycopy a:hover {color: rgba(15, 206, 131, 1)

}

bodycopy a.image-link,
bodycopy a.icon-link,

bodycopy a.image-link:hover ,
bodycopy a.icon-link:hover {
	
}

@font-face {
    font-family: "nulshock-bd";
    font-weight: normal;
    font-style: normal;
    src: url(https://files.cargocollective.com/c1069902/nulshock-bd.ttf) format('woff');
    font-display: swap;
} 

[data-predefined-style="true"] h1 {
	font-family: "nulshock-bd", sans-serif, Helvetica, sans-serif, Icons;
	font-style: normal;
	font-weight: 600;
	padding: initial;
	margin: initial;
	font-size: 5.3rem;
	line-height: 0.8;
	color: #323232;
    letter-spacing: -0.08rem;
}

[data-predefined-style="true"] h1 a {
	color: #323232;
}

    @font-face {
    font-family: "titlinggothicfb narrow";
    font-weight: normal;
    font-style: normal;
    src: url(https://files.cargocollective.com/c1069902/TitlingGothicFBNar-Bold.otf) format('woff');
    font-display: swap;
} 
    
[data-predefined-style="true"] h2 {
font-family:  "titlinggothicfb narrow", sans-serif, Helvetica, Icons;	
    padding: 0;
	margin: 0;
	color: #323232;
	font-size: 3.0rem;
	line-height: 1.0;
	letter-spacing: -0.08rem;
	font-style: normal;
	font-weight: 400;
    font-display: swap;
}

[data-predefined-style="true"] h2 a {
    color: #323232;
}

[data-predefined-style="true"] small {
	display: auto;
	font-size: 2rem;
	line-height: 1;
	font-family: "Standard", Helvetica, sans-serif, "Helvetica Neue Regular", Icons;
	color: #323232;
    letter-spacing: 0.00em;
	font-style: normal;
	font-weight: normal;
    font-display: swap;
}

[data-predefined-style="true"] small a {
	color: rgb(50, 50, 50);
}


}

/**
 * Tablet Styles
 */

@media (min-width: 769px) and (max-width: 1025px){ 

[data-predefined-style="true"] bodycopy {
	font-size: 1.4rem;
	font-weight: 500;
	color: #010100;
	font-family: Karla, Icons;
	font-style: normal;
	line-height: 1.1;
	letter-spacing: -0.05rem;
}

[data-predefined-style="true"] bodycopy a {
	color: rgb(50, 50, 50);
    text-decoration: none;
}

[data-predefined-style="true"] bodycopy a:hover {color: rgba(15, 206, 131, 1)

}

bodycopy a.image-link,
bodycopy a.icon-link,

bodycopy a.image-link:hover ,
bodycopy a.icon-link:hover {
	
}

@font-face {
    font-family: "nulshock-bd";
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    src: url(https://files.cargocollective.com/c1069902/nulshock-bd.ttf) format('woff');
} 

[data-predefined-style="true"] h1 {
	font-family: "nulshock-bd", sans-serif, Helvetica, sans-serif, Icons;
	font-style: normal;
	font-weight: 400;
	padding: auto;
	margin: auto;
	font-size: 5rem;
	line-height: 0.8;
	color: #323232;
    letter-spacing: -0.05rem;
}


[data-predefined-style="true"] h1 a {
	color: #323232;
}
    
 @font-face {
    font-family: "titlinggothicfb narrow";
    font-weight: normal;
    font-style: normal;
    src: url(https://files.cargocollective.com/c1069902/TitlingGothicFBNar-Bold.otf) format('woff'); 
    font-display: swap;
} 
    
[data-predefined-style="true"] h2 {
font-family:  "titlinggothicfb narrow", sans-serif, Helvetica, Icons;	
    padding: 0;
	margin: 0;
	color: #323232;
	font-size: 3.0rem;
	line-height: 1.0;
	letter-spacing: -0.05rem;
	font-style: normal;
	font-weight: 400;
}

[data-predefined-style="true"] h2 a {
    color: #323232;
}

[data-predefined-style="true"] small {
	display: block;
	font-size: 2rem;
	line-height: 1.3;
	font-family: "Space Grotesk", Icons;
	color: #323232;
    letter-spacing: 0.00em;
	font-style: normal;
	font-weight: 400;
}

[data-predefined-style="true"] small a {
	color: rgb(50, 50, 50);
}

[data-predefined-style="true"] small a:hover {color: rgba(222, 173, 40, 1)
    
}
}

    
    
/**
 * Breakpoints
 */

[data-css-preset] .page {
    background-color: initial /*!page_bgcolor*/;
}

.mobile .page,
[data-css-preset].mobile .page {
	position: relative;
	min-height: 10px;
	max-width: 100%;
	width: 100%;
	background-color: transparent /*!page_bgcolor*/;
}

[data-css-preset] .container {
	margin-left: auto /*!content_center*/; /*!content_center*/;
	margin-right: auto /*!content_center*/; /*!content_center*/;
    align-content: initial;
	text-align: left /*!text_left*/; /*!text_left*/;
}

[data-css-preset] body {
	background-color: transparent /*!body_bgcolor*/;

}

[data-css-preset] .container_width {
	width: 75% /*!content_center*/;
}

[data-css-preset] .content_padding {
	padding-top: 0rem /*!main_margin*/;
	padding-bottom: 0rem /*!main_margin*/;
	padding-left: 0rem /*!main_margin*/;
	padding-right:0rem /*!main_margin*/;
}

[data-css-preset] text-limit {
	display: inline-block /*!text_width*/;
	max-width: 66rem/*!text_width*/;
}

[data-css-preset] .backdrop {
	width: 100% /*!background_cover*/;
    opacity:80%; 
}



/**
 * Thumbnails
 */

div[thumbnails] {
	justify-content: flex-start;
}

[data-css-preset] .thumbnails {
   	background-color: transparent/*!thumbnails_bgcolor*/;   
}

[data-css-preset] .thumbnails_width {
    width: 85%/*!thumbnails_width*/;
}

[data-css-preset] [thumbnails-pad] {
    padding: 2rem/*!thumbnails_padding*/;
}

[data-css-preset] [thumbnails-gutter] {
    margin: -4rem/*!thumbnails_padding*/;
}

[data-css-preset] [responsive-layout] [thumbnails-pad] {
    padding: 1rem/*!responsive_thumbnails_padding*/; 
}

[data-css-preset] [responsive-layout] [thumbnails-gutter] {
    margin: -2rem/*!responsive_thumbnails_padding*/; 
}

.thumbnails .thumb_image {
	outline: 0px solid rgba(245, 242, 238, 1);
    outline-offset: -5px;
}

.thumbnails .title {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
	font-weight: bold;
	color: rgba(0, 0, 0, 0.7);
	font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue Bold", Icons;
	font-style: normal;
	line-height: 0.9;
    letter-spacing: 0.00em;
    text-align: left;
}

.thumbnails .tags {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
	font-weight: normal;
	color: rgba(0, 0, 0, 0.75);
	font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue Regular", Icons;
	font-style: normal;
	line-height: 2.5;
    text-align: left;
    padding: 0;
    font-style: normal;
}

.thumbnails .tags a {
	border-bottom: 2 solid rgba(55, 55, 55, 1);
    color: rgba(0, 0, 0, 0.75);
    text-decoration: none;
}

.thumbnails .has_title .tags {
	margin-top: -1rem;
}

/**
 * Site Menu
 */

[data-css-preset] #site_menu_button {
	color: rgba(253, 221, 0, 1);
	line-height: 10;
	font-size: 22px /*!site_menu_button*/;
	padding: 19px;
	line-height: 1;
	background: transparent;
	position: absolute;
    
	top: 4rem /*!site_menu_button*/;
	right: 4rem /*!site_menu_button*/;
}

body.mobile #site_menu_button {
	margin: -6px;
	font-size: 25px;
}

#site_menu_button.custom_icon {
	width: 28px;
	height: auto;
}

#site_menu_button.active {
	display: none;
}

/**
 * Site Menu
 */

#site_menu {
		font-family: titlinggothicfb narrow, Icons;
background: transparent;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	padding: 20px 30px 90px 30px;
	max-width: 400px;
	min-width: 300px;
color: #fddd00;
	font-size: 3rem;
	line-height: 1;
	letter-spacing: 0.04rem;
	text-align: left;
	display: flex;
	justify-content: flex-start;
    
}

body.mobile #site_menu {
	width: 100%;
}

#site_menu .page-link a {
	color: rgba(225, 255, 0, 1);
}

#site_menu .set-link > a {
	color: rgba(55, 55, 55, 1);
	font-weight: bold;
}

#site_menu a:active {
	opacity: .7;
}

#site_menu a.active {
	opacity: .7;
}

#site_menu b:close {
	opacity: .7;
}

#site_menu b.close {
	opacity: .7;
}

#site_menu .close {
	display: none;
    opacity: 10;
	color: rgba(255, 232, 211, 1);
	line-height: 1em;
	font-size: 90px;
}

body.mobile #site_menu .close {
	display: block;
	font-size: 90px;
	line-height: 1em;
}

#site_menu .break {
	height: 28px;
}

#site_menu .indent {
	margin-left: 28px;
}

/**
 * Shop Button
 */

[data-css-preset] #shop_button {
	color: rgba(0, 0, 0, 0.85);
    background: transparent;
	font-size: 24px;
    font-style: normal;
	font-weight: 400;
    line-height: 1.;
    position: fixed;
	padding: 6px;
	right: 1rem /*!shop_button*/;
	top: 0 /*!shop_button*/;
}

#shop_button.text {
    font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue Regular", Icons;
	font-size: 1.3rem;
    padding: 0;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.75);
	font-style: normal;
    line-height: 1.3;
    letter-spacing: 0.04rem;
}

#shop_button.custom_icon {
	width: 40px;
    height: auto;
}

body.mobile #shop_button:not(.text) {
	margin: -6px;
    font-size: 36px;
}

/**
 * Shop Product Widget
 */

.shop_product {
    width: 100%;
	max-width: 22rem;
    position: relative;
    display: block;
}

.shop_product .price {
	font-family: Courier, "Courier New", monospace, Courier, Icons;
	font-style: normal;
	font-weight: 400;
	margin-bottom: 1rem;
	font-size: 1.2rem;
	line-height: 1.1;
	color: #0ca900;
}

.shop_product .dropdown {
    font-family: Courier, "Courier New", monospace, Courier, Icons;
    font-size: 1.2rem;
    display: inline-block;
	width: 100%;
    border: 1px solid rgba(12, 169, 0, 0.3);
    background:  white url(https://static.cargo.site/assets/images/select-line-arrows.svg) no-repeat right;
    margin-bottom: 1rem;
    line-height: 1.2;
    padding: .7rem 2.5rem .7rem 1rem;
	font-style: normal;
	font-weight: 400;
    color:  #0ca900;
}

.shop_product .button {
    font-family: Courier, "Courier New", monospace, Courier, Icons;
	font-size: 1.2rem;
    background: #0ca900;
    color: rgba(255,255,255,1);
    flex: 0 0 50%;
    text-align: left;
    display: inline-block;
	line-height: 1;
    padding: .8rem 1rem;
	font-style: normal;
	font-weight: 400;
    border: 0;
}

/**
 * Image Zoom
 */

.content img.image-zoom:active {
  opacity: .7;
}

/**
 * Quick View
 */

[data-css-preset] .quick-view {
    padding-top: 2.5rem /*!quick_view_padding*/;
    padding-bottom: 2.5rem /*!quick_view_padding*/;
    padding-left: 2.5rem /*!quick_view_padding*/;
    padding-right: 2.5rem /*!quick_view_padding*/;
    height: 100% /*!quick_view_height*/;
    width: 100% /*!quick_view_width*/;
}

body.mobile .quick-view {
    width: 100%;
    height: 100%;
    margin: 0;
}


[data-css-preset] .quick-view-background {
	background: rgba(0, 0, 0, 0.8) /*!quick_view_bgcolor*/;
}

.quick-view-caption {
    font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue Regular", Icons;
    transition: 100ms opacity ease-in-out;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 3.5rem 0;
    text-align: center;
    font-size: 1.1rem;
	font-style: normal;
	font-weight: 400;
    line-height: 1.3;
}

.quick-view-caption span {
    padding: 0.5rem 1rem;
    display: inline-block;
    background: rgba(0,0,0,0.5);
    color: white;
}

/**
 * Quick View Navigation 
 */

.quick-view-navigation .left-arrow {
    left: 10px;
}

.quick-view-navigation .right-arrow {
    right: 10px;
}

.quick-view-navigation .left-arrow,
.quick-view-navigation .right-arrow {
    /* Change height/width together to scale */
    height: 36px;
    width: 36px;
}

.quick-view-navigation .left-arrow .inner-color,
.quick-view-navigation .right-arrow .inner-color {
    stroke: #fff;
    stroke-width: 1.5px;
}

.quick-view-navigation .left-arrow .outer-color,
.quick-view-navigation .right-arrow .outer-color {
    stroke: rgba(0, 0, 0, 0.6);
    stroke-width: 2.5px;
}

.quick-view-navigation .close-button {  
    top: 10px;
    right: 10px;
    /* Change height/width together to scale */
    width: 36px;
    height: 36px;
}

.quick-view-navigation .close-button .inner-color {
    stroke: #fff;
    stroke-width: 1.5px;
}

.quick-view-navigation .close-button .outer-color {
    stroke: rgba(0, 0, 0, 0.6);
    stroke-width: 2.5px;
}

/** 
 * Image Gallery Navigation Arrows 
 */
 
.image-gallery-navigation .left-arrow,
.image-gallery-navigation .right-arrow {
    /* Change height/width together to scale */
    height: 36px;
    width: 36px;
}

.image-gallery-navigation .left-arrow .inner-color,
.image-gallery-navigation .right-arrow .inner-color {
    stroke: rgba(255, 255, 255, 1);
    stroke-width: 1.5px;
}

.image-gallery-navigation .left-arrow .outer-color,
.image-gallery-navigation .right-arrow .outer-color {
    stroke: rgba(0, 0, 0, 0.6);
    stroke-width: 2.5px;
}

/**
 * Wallpaper Backdrop Navigation Arrows 
 */

.wallpaper-navigation .left-arrow,
.wallpaper-navigation .right-arrow {
   /* Change height/width together to scale */
   width: 36px;
   height: 36px;
}

.wallpaper-navigation .left-arrow .inner-color,
.wallpaper-navigation .right-arrow .inner-color {
   stroke: #fff;
   stroke-width: 1.5px;
}

.wallpaper-navigation .left-arrow .outer-color,
.wallpaper-navigation .right-arrow .outer-color {
    stroke: rgba(0, 0, 0, 0.6);
    stroke-width: 2.5px;
}

/**
 * Feed
 */

.feed .content_container .page {
    border-top: 0px dashed rgba(0, 0, 0, 0.2);
}

.feed .content_container .page_container:first-child .page {
	border-top: 0;
}

/**
 * Rotate
 */

.rotate {
    display: inline-block;
    -webkit-animation: rotate 6s linear infinite;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/**
 * Audio Player
 */

.audio-player {
    max-width: 26rem;
    height: 3.3rem;
    outline: 1px solid rgba(0,0,0,0.15);
    color: rgba(0, 0, 0, 0.6);
    background: transparent;
    font-size: 1.2rem;
    line-height: 1.3;
    font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue Regular", Icons;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    margin: 1px 1px 1em 1px;
}

body.mobile .audio-player {
    max-width: 100%;
}

.audio-player .separator {
    width: 1px;
    background-color: rgba(0,0,0,0.15);
}

.audio-player .button {
    background: transparent;
    cursor: pointer;
    fill: rgba(0, 0, 0, 0.85);
}

.audio-player .icon {
    fill: rgba(0, 0, 0, 0.85);
    padding: 30%;
    width: 100%;
    margin: auto;
}

.audio-player .buffer {
    background: rgba(0,0,0,0.03);
}

.audio-player .progress {
    background: rgba(0,0,0,0.1);
}

.audio-player .progress-indicator {
    border: 1px solid rgba(0, 0, 0, 0.7);
    width: 1px;
    height: 100%;
    right: 0;
    position: absolute;
    cursor: ew-resize;
}

.audio-player .note-icon {
    height: 100%;
    width: 3.8rem;
    padding: 1rem;
    fill: rgba(0, 0, 0, 0.5);
}

.audio-player .current-time {
    padding-left: 1rem;
}

.audio-player .total-time {
    padding-right: 1rem;
}


  /*
      Rollover Image
     */
  .figure {
        position: relative;
      height: 100%;
      width: 100%;
      text-align: center;

    }
    .figure img.image-hover {
      position: absolute;
      top: 0.0;
      right: 0;
      left: 0;
      bottom: inherit;
      opacity: 0;
      transition: opacity 0.2s;
        
    }
    .figure:hover img.image-hover {
      opacity: 1;
   
    }

/*

	Pill Bottle Shake
	*/
.image2:hover {
  animation: shake 1.0s;
  animation-iteration-count: inherit;
}

@keyframes shake {
       0% { transform: rotate(0deg); }
   30% { transform: rotate(-4deg); }
   47% { transform: rotate(4deg); }
   60% { transform: rotate(-4deg); }
   75% { transform: rotate(2deg); }
  100% { transform: rotate(0deg); }
}


/***** Pulse *****/

.pulse:hover{ 
  animation: pulse 1s infinite;
  animation-timing-function: linear;   
}

@keyframes pulse {
  0% { transform: scale(1); }
    70% { transform: scale(0.9);}
  100% { transform: scale(1); }
  }





.blink_text {

    animation:1s blinker linear infinite;
    -webkit-animation:1s blinker linear infinite;
    -moz-animation:1s blinker linear infinite;

     color: transparent;
    }

    @-moz-keyframes blinker {  
     0% { opacity: 1.0; }
     30% { opacity: 0.0; }
     50% { opacity: 1.0; }
     }

    @-webkit-keyframes blinker {  
     0% { opacity: 1.0; }
     30% { opacity: 0.0; }
     50% { opacity: 1.0; }
     }

    @keyframes blinker {  
     0% { opacity: 1.0; }
     30% { opacity: 0.0; }
     50% { opacity: 1.0; }
     }

/****Harm Reduction Cards*****/

::-webkit-scrollbar{width:2px;height:2px;}
::-webkit-scrollbar-button{width:2px;height:2px;}

div{
  box-sizing: border-box; 
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
}

body {
  background: transparent;
}

.horizontal-scroll-wrapper{
  position:inherit;
  display:block;
  top:0;
  left:0;
  width:510px;
  max-height:1100px;
  margin:auto;
  background:transparent;
  overflow-y:auto;
  overflow-x:hidden;
  transform:rotate(-90deg) translateY(550px)translatex(430px);;
  transform-origin: bottom;
}
.horizontal-scroll-wrapper > div{
  display:block;
  padding:20px;
  background:#f5f2ee;
  border: solid;
    border-width: 4px;
  border-color: #323232;
  transform:rotate(90deg);
  transform-origin: right;
}

.squares{
  padding:715px 0 0 0;
}

.squares > div{
  width:360px;
  height:504px;
  border-radius:25px;
  margin-top:-350px;
    margin-bottom:230px;
      margin-left:-105px;

}



/****Tabs**/




/* Style the tab */
.tab {
  overflow: hidden;
 padding: 0px 0px;
  border: 14px solid transparent;
  background-color: transparent;
  border-radius: 20px;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: transparent;
  border: 3px solid rgba(227, 248, 0, 0.52);
  float: none;
  outline: none;
  cursor: pointer;
  padding: 10px 36px 10px;
  transition: 0.3s;
  font-size: 16px;
    border-radius: 11px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: rgba(17, 20, 178, 0.39);
    border: 4px outset rgba(227, 248, 0, 0.73);

}

/* Create an active/current tablink class */
.tab button.active {
  background-color: rgba(17, 20, 178, 0.39);
    border: 2px solid rgba(227, 248, 0, 0.73);
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 0px 0px;
  border: 0px solid transparent;
  border-top: none;
}
