/*
Theme Name:         The Store House
Template:      	    tsg-pinnacle
Theme URI:          http://www.storageinternetmarketing.com
Description:

Version:            1.0
Author:             The Storage Group
Author URI:         http://www.storageinternetmarketing.com

License:            For use by The Storage Group only.
*/



.tsh-page{
  /* Brand + tokens */
  --tsh-bg:#f6f8fc;
  --tsh-surface:#ffffff;
  --tsh-surface-2:#f0f4fb;
  --tsh-border:#e6edf7;
  --tsh-text:#0e1320;
  --tsh-muted:#556074;
  --tsh-brand:#2c8bff;      /* primary */
  --tsh-accent:#d9091d;     /* secondary */
  --tsh-radius:16px;
  --tsh-shadow:0 6px 18px rgba(13,38,76,.08);
  --tsh-maxw:1200px;
  --tsh-gap:clamp(16px,3vw,28px);
  --tsh-colmin:260px;

  color:var(--tsh-text);
  background:var(--tsh-bg);
  font-family:system-ui,-apple-system,Segoe UI,Inter,Roboto,Arial,sans-serif;
  line-height:1.65;
}

.tsh-page *{ box-sizing:border-box }
.tsh-page a{ color:#fff; text-decoration:none }
.tsh-page a:hover:not(.tsh-page a.tsh-btn:hover){ 
    text-decoration:underline 
}

/*Layout primitives*/
.tsh-wrap{ max-width:var(--tsh-maxw); margin-inline:auto; padding-inline:clamp(16px,4vw,28px) }
.tsh-section { padding-block: clamp(20px,6vw,20px) }

/* Two-column helpers */
.tsh-hero-grid{
  display:grid; gap:var(--tsh-gap);
  grid-template-columns: 1fr;     /* title left, image right */
  align-items:center;                     /* keep hero compact */
}
.tsh-row-split{
  display:grid; gap:var(--tsh-gap);
  grid-template-columns: 1fr;   /* image left, text right */
  align-items:start;
}
@media (max-width: 920px){
  .tsh-hero-grid, .tsh-row-split{ grid-template-columns:1fr }
}

/*Surfaces*/
.tsh-surface{
  background:var(--tsh-surface);
  border:1px solid var(--tsh-border);
  border-radius:var(--tsh-radius);
  box-shadow:var(--tsh-shadow);
}
.tsh-card{ padding:clamp(16px,2.2vw,24px) }

/*Typography*/
.tsh-h1,.tsh-h2,.tsh-h3{ line-height:1.2; letter-spacing:.2px; margin:0 0 .45em }
.tsh-h1{ font-size:clamp(30px,4.4vw,46px); font-weight:800 }
.tsh-h2{ font-size:clamp(22px,3.0vw,34px); font-weight:750 }
.tsh-h3{ font-size:clamp(18px,2.2vw,22px); font-weight:700 }
.tsh-lead{ color:var(--tsh-muted); font-size:clamp(16px,2.0vw,19px); margin:0 }

/* Eyebrow label (not a pill) */
.tsh-eyebrow{ font-size:.8rem; letter-spacing:.14em; text-transform:uppercase; color:#214a86; display:inline-block; margin-bottom:6px;display: none; }

/*Media*/
/* Generic media block (used outside hero) */
.tsh-media {
  border-radius: 14px;
  overflow: hidden;
  background: var(--tsh-surface-2);
  border: 1px solid var(--tsh-border);
  height: 100% !important;
  margin: 0 !important;
}
.tsh-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero image: smaller, same row as title */
.tsh-hero-media{
  border-radius:14px; overflow:hidden;
  background:var(--tsh-surface-2);
  border:1px solid var(--tsh-border);
}
.tsh-hero-media img{
  display:block; width:100%;
  /* Compact height so hero doesn't push content below the fold */
  height:clamp(180px, 26vw, 320px);
  object-fit:cover;
  /* Ensure the global 16:9 rule does not apply here */
  aspect-ratio:auto;
}

/* Optional ultra-subtle bottom fade; never overlaps content */
.tsh-hero-soft{
  position:relative; height:40px; margin-top:8px;
  background:linear-gradient(180deg, rgba(44,139,255,.10), rgba(44,139,255,0));
}

/*Buttons*/
.tsh-btnrow{ display:flex; flex-wrap:wrap; gap:12px }
.tsh-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55rem;
  padding:12px 18px; border-radius:12px; font-weight:700;
  border:1px solid transparent; text-decoration:none;
}
.tsh-btn--primary{ background:linear-gradient(90deg, var(--tsh-brand), #6bb6ff); color:#fff }
.tsh-btn--secondary{ background:linear-gradient(90deg, var(--tsh-accent), #ff4b5c); color:#fff }
.tsh-btn--ghost{ background:#fff; border-color:var(--tsh-border); color:var(--tsh-text) }
.tsh-btn--block{ width:100% }

/* ===== Feature List (full width, multi-column) ===== */
/* Hard resets to beat parent theme bullets & spacing */
.tsh-page ul.tsh-featurelist,
.tsh-page .tsh-featurelist{
  list-style:none !important;
  margin:0 !important;
  padding:0 !important;
}
.tsh-page .tsh-featurelist li::marker,
.tsh-page .tsh-featurelist li::before{ content:none !important; display:none !important }

.tsh-featurelist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--tsh-colmin), 1fr));
  column-gap: 40px;
  row-gap: 5px;
}

.tsh-surface.tsh-card {
  height: 100%;
  align-content: center;
}

/* Each LI is a mini grid: icon + text */
.tsh-featurelist > li{
  display:grid;
  grid-template-columns:24px 1fr;
  align-items:start;
  gap:10px;
  margin:0; padding:8px 0;
}

/* Check icon */
.tsh-check{
  inline-size: 27px;
  block-size: 27px;
  border-radius:6px;
  display:inline-grid; place-items:center;
  background:#e9f3ff; color:var(--tsh-brand);
  box-shadow:inset 0 0 0 1px rgba(44,139,255,.25);
}
.tsh-check svg{ width:14px; height:14px; display:block }

/*Full-bleed (optional CTA)*/
.tsh-bleed{
  width:100vw; margin-left:50%; transform:translateX(-50%);
  background:linear-gradient(90deg, var(--tsh-brand), #6bb6ff); color:#fff;
}
.tsh-bleed .tsh-wrap{ padding-block:clamp(24px,5vw,48px) }
.tsh-callout{ display:grid; gap:16px; align-items:center; color: #000}
.tsh-callout .tsh-h2{ color:#fff; margin:0 }
.tsh-callout p{
    color:#fff;
}
.tsh-callout .tsh-lead{ color:#000; margin:0 }
.tsh-callout .tsh-btn--ghost{ background:transparent; border-color:rgba(255,255,255,.55); color:#fff }
.tsh-callout .tsh-btn--ghost:hover{ background:rgba(255,255,255,.08) }

/*Utilities*/
.tsh-title{ display:flex; flex-direction:column; gap:8px }
.tsh-center{ text-align:center }
.tsh-muted{ color:var(--tsh-muted) }
.tsh-narrow{ max-width:900px; margin-inline:auto }

/* ===== FAQ flip grid (namespaced) ===== */
/* More responsive grid */
.tsh-faq-grid{
  display:grid;
  /* Column can shrink to 100% of container, but never grow beyond 520px */
  grid-template-columns:repeat(auto-fit, minmax(min(100%, 520px), 1fr));
  gap:var(--tsh-gap);
}

/* Belt-and-suspenders: ensure cards can’t force overflow */
.tsh-faq-card,
.tsh-faq-3d{
  max-width:100%;
  min-width:0;
}


/* Kill 3D effects and absolute positioning */
.tsh-faq-card{ perspective:none; position:relative; overflow:visible }
.tsh-faq-3d{
  position:relative;
  transform:none !important;
  transition:none !important;
  border-radius:var(--tsh-radius);
  box-shadow:var(--tsh-shadow);
  background:var(--tsh-surface);
  border:1px solid var(--tsh-border);
}

/* Sides become normal block flow */
.tsh-faq-3d .tsh-side{
  position:static; inset:auto;
  backface-visibility:visible;
  box-shadow:none;             /* wrapper holds shadow */
  border:none;                 /* wrapper holds border */
  padding:0;                   /* we’ll define per-part padding below */
}

/* Question (header) */
.tsh-faq-3d .tsh-front{
  display:flex; align-items:center; justify-content:space-between;
  padding:clamp(14px,2vw,18px) clamp(14px,2vw,18px);
  cursor:pointer; user-select:none;
}

/* Add a chevron without changing HTML */
.tsh-faq-3d .tsh-front::after{
  content:"";
  width:12px; height:12px; margin-left:10px;
  border-right:2px solid var(--tsh-muted);
  border-bottom:2px solid var(--tsh-muted);
  transform:rotate(-45deg);
  transition:transform .22s ease, border-color .22s ease;
}
.tsh-faq-3d.is-active .tsh-front::after{
  transform:rotate(45deg);         /* points up when open */
  border-color:var(--tsh-brand);
}

/* Focus ring for the invisible trigger button (keeps a11y) */
.tsh-faq-trigger{ position:absolute; inset:0; border-radius:var(--tsh-radius); background:transparent; border:0; cursor:pointer }
.tsh-faq-trigger:focus-visible{ outline:0; box-shadow:0 0 0 3px rgba(44,139,255,.35) }

/* Answer (panel) – transitions height + opacity */
.tsh-faq-3d .tsh-back{
  padding:0 clamp(14px,2vw,18px);
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:
    max-height .26s ease,
    opacity .2s ease;
  will-change:max-height,opacity;
  border-top:1px solid var(--tsh-border);
  background:#fff;
}

/* When active, reveal panel; we’ll set max-height via JS to fit content */
.tsh-faq-3d.is-active .tsh-back{
  padding-top:10px;
  opacity:1;
}

/* Tidy text */
.tsh-faq-q{ font-weight:750; color:var(--tsh-text); font-size:clamp(16px,2vw,18px); margin:0 }
.tsh-faq-a{ color:var(--tsh-muted); font-size:clamp(14px,1.9vw,16px); margin:0 0 12px 0 }
.tsh-faq-a:last-child{ margin-bottom:12px }

.tsh-faq-a a{
    color:#d9091d !important;
}


.tsh-faq-a a:hover{
    text-decoration: underline;
    color:#d9091d !important;
}

/* Make the whole card feel clickable when closed */
.tsh-faq-3d{ cursor:default }
.tsh-faq-3d:not(.is-active){ cursor:pointer }
.tsh-faq-3d:not(.is-active):hover .tsh-front{
  background:linear-gradient(0deg, rgba(44,139,255,.06), rgba(44,139,255,0));
}

/* Keep the invisible button from blocking links in the open panel */
.tsh-faq-3d.is-active .tsh-back .tsh-faq-trigger{ pointer-events:none }


/*DEFAULT STYLES**************************************/

/*LOGIN HEADER FIX**************************************************************************************/
.candee-login-page .pinnacleMainNavBar:not(#nabarTheme5):not(#nabarTheme7) {
    visibility: visible !important;
}

/*END HEADER FIX**************************************************************************************/

/*LOCATIONS MAP FIX**************************************************************************************/
.candeeFacilityMap {
    width: 100%;
    text-align: center;
    overflow: hidden;
    position: relative;
    height: 400px;
    max-height: 60vh !important;
    min-height: 60vh !important;
}

/**END MAP FIX******************************************************************************************/

/*CUSTOMIZER STYLES*/
/* .innovated-by-wrapper.textAlignRight img {
    width: 170px;
} */


/* CALCULATOR */
div#calc-box {
    position: initial !important;
    bottom: 0;
    z-index: 1!important;
}

#calc-form .panel-title {
  cursor: pointer;
  font-size: 20px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 1em;
}

.fullTemplateCalcBox {
  position: fixed;
  top: 0px;
  background-color: #2C8BFF;
  right: 0px;
  left: 0px;
  z-index: 999;
  color: #fff;
  overflow: auto;
  padding: 15px 10%;
  height: 55px;
}

.calc-box-left {
  float: left;
  width: 49%;
  text-align: center;
}

.calc-box-right {
  float: right;
  width: 49%;
  text-align: center;
}

.panel-collapse {
  display: none;
  overflow: auto;
}

#calc-form .accordianElement {
  float: left;
  width: 50%;
  height: 50px;
  line-height: 40px;
}

#calc-form .accordianElement .accordianInput {
  width: 45px;
  float: left;
  margin-right: 10px;
}

#calc-box {
  background-color: #2C8BFF;
  color: #fff;
  right: 0px;
  left: 0px;
  z-index: 999;
  color: #fff;
  overflow: auto;
  padding: 15px 10%;
}

.page-template-calculator .pageContent {
  padding-top: 125px;
}

.page-template-calculator .eight.columns, .page-template-calculator aside .four.columns {
  float: none;
  width: 100%;
}

#calc-form .accordianElement {
  line-height: normal;
}

.hero_image .container:before {
  content: "" !important;
}

.wpcf7 form {
    padding: 0px;
}

@media screen and (max-width: 400px) {
  #calc-form .accordianElement {
    width: 100%;
  }
}
/* END CALCUTOR */

#navbarTheme8, #navbarTheme8.sticky {
    background: #fff !important;
    box-shadow: 0 8px 6px rgba(0, 0, 0, 0.12), 0 1px 8px rgba(0, 0, 0, 0.24);
}

.cta4_cta.flex-item {
    background-position: center !important;
}

.joinWaitlist {
    color: #fff !important;
}

#group-alt_personal_info {
    margin-top: 15px;
}

#group-more_info_custom_fields {
    margin-top: 50px;
}

#unitsSection .background_2 {
    background-color: #3DB0C5 !important;
}

#navbarTheme8 .logo-wrapper img {
    max-height: 75px !important;
}

g #sortingOptions {
    margin-bottom: 0px !important;
}

#btnNext, #btnPrevious {
    color: #fff !important;
}

/*.pitchBlock.four.candee-columns.unitMasterData {
    height: 20px;
}*/
.candeeFacilityMap {
    text-align: center;
    overflow: hidden;
    position: relative;
    height: 100px !important;
}

.infoIcon {
    display: none !important;
}

.candee .yellowBTN, .accountLinksSidebarLoggedinUserInfo {
    color: #fff !important;
}

.unit-data-image img {
    max-width: 50%;
    display: block;
    margin-left: 25%;
}

#hero-video-button {
    position: absolute;
    z-index: 9;
    bottom: 1%;
    right: 0%;
    font-size: 3rem;
    height: auto;
    border: none;
    color: #90C63E;
    opacity: .7;
}

#hero-video-button {
    position: absolute;
    z-index: 9;
    bottom: 1%;
    right: 0%;
    font-size: 3rem;
    height: auto;
    border: none;
    color: #d9091d !important;
    opacity: .7;
}

.reviewsTheme3 .facReviewWrapper .slick-arrow {
    border: none !important;
    padding: 0;
    font-size: 2rem;
    margin: 0;
    position: absolute;
    bottom: 25px;
    z-index: 2;
    color: #FFF;
    opacity: .5;
    transition: opacity .2s;
}

.candee .unitButtonsWrapper .action {
    border-radius: 4px;
    box-shadow: 0 8px 6px rgba(0, 0, 0, 0.12), 0 1px 8px rgba(0, 0, 0, 0.24);
}

.candee .discountText {
    font-size: 1rem;
    line-height: 15px;
    color: #ed0417;
    font-weight: bold;
    /*display: none;*/
}

.radius, .specialMenuItem {
    border-radius: 6px !important;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.tsg-menu-class ul {
    font-weight: bold;
    text-transform: uppercase
}

.candee .action {
    text-transform: uppercase;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.candee-columns.three.filterWrapInner {
    border-radius: 6px;
}

.pinnacle_background_1 {
    background: none !important;
}

.featured_theme_2.featured_box.pinnacle_background_1.color_2 {
    color: #222;
}

.container.textAlignCenter.color_2 {
    color: #222;
}

.featured_theme_2 .button_4 {
    background-color: #d9091d !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.button_4 {
    border: none !important;
    border-radius: 4px !important;
    transition: all .2s ease-in-out;
}

.button_4:hover {
    transform: scale(1.02);
}

#navbarTheme8 #specialMenu .specialMenuItem {
    border-radius: 4px !important;
    background: #d9091d !important;
}


.tsg-hero-video.heroTheme8 .button_4 {
    padding: 7px 20px !important;
}


.featured_theme_2 .featuredIconBox .fa {
    border: none !important;
    color: #2C8BFF !important;
    font-size: 3.5rem !important;
}

.button_4.rightArrow, .pinnacle_button_1.rightArrow {
    background-color: #d9091d !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

body:not(.home) .tsg-hero-video.heroTheme8.height100vh {
    background-image: url(https://www.live-pinnacle.com/cas-v2/wp-content/uploads/sites/18/tsg-storage-scaled.jpeg) !important
}

p.internal-title.uppercase.bold.textAlignCenter {
    text-shadow: 3px 8px 8px rgba(0, 0, 0, 0.8);
}

.minToggle-1.min.getUnitBTN.googleTagManager {
    color: #fff
}

.candee .yellowBTN.background_1 {
    border-radius: 4px;
    color: #fff !important;
    font-weight: bold;
    box-shadow: 0 8px 6px rgba(0, 0, 0, 0.12), 0 1px 8px rgba(0, 0, 0, 0.24);
}

#checkoutProcess.main-container .steps-container .step.completed svg path {
    fill: #fff !important;
}

#contentForm .candee-file-upload .yellowBTN.background_1 {
    color: #fff !important;
}

label.candee-flex.candee-flex-center.candee-file-upload {
    border-radius: 4px;
}

.background_1.color_2.action.textAlignCenter.capitalize {
    color: #fff !important
}

span.icon.icon-price-tag {
    background: none;
    color: #b00;
}

#contentForm .candee-file-upload .yellowBTN.background_1 {
    color: white !important;
}

.step-new-content .row, .step-new-content .row .unit-details {
    padding-top: 0 !important;
}

.candee .yellowBTN.background_2, .background_2 {
    background-color: #d9091d !important;
    color: #fff !important;
}

/*:root{
    --candee-color-text: white!important;
    --candee-color-text-secondary: white;
}*/
.candee .unitFeatureItemWrapper .icon:before {
    border-radius: 4px;
    background: #DBDBDB !important;

}

li.shadow.unitsList.lineItem {
    border-radius: 8px
}

a.googleTagManager.candeeButtonAni1.activeSpinner.button_1.textAlignCenter.color_2.pitchBlockRentButton.background_1 {
    border-radius: 4px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    font-weight: bold
}

a.googleTagManager.candeeButtonAni1.button_1.textAlignCenter.color_2.background_2.pitchBlockReserveButton.quickReserve {
    border-radius: 4px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    font-weight: bold
}

.home .facReview {
    max-width: 95%;
}

.home .reviewsTheme3 .reviewComment,
.home .reviewsTheme3 .facReviewWrapper .slick-arrow,
.home .facReview * {
    color: white;
}

/*
.pitch_theme_10_wrapper{
	padding-top: 0.5rem;
}*/

.candeeUserBar[class*=candeeUserBarTheme-sidebar] {
    background: var(--candee-secondary);
    border-radius: 4px;
    border: none
}

.candeeUserBar[class*=candeeUserBarTheme-sidebar] #candeeUserBarAnchor>a.candeeMenuItem {
    border-bottom: none;
}

.candeeUserBar[class*=candeeUserBarTheme-sidebar] #candeeUserBarAnchor>a.candeeMenuItem:hover {
    background: var(--candee-secondary);
    border-radius: 4px
}

.unitButtons .yellowBTN {
    border-radius: 4px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    font-weight: bold
}

.candeeButtonAni1:hover:not([disabled=disabled]):not(.disabledBtn) {
    transform: scale(1.02) !important;
}

.pitchActionButtons .background_1 {
    background-color: var(--candee-secondary);
}

.candeeUserBar[class*=candeeUserBarTheme-sidebar] #candeeUserBarAnchor>a.candeeMenuItem .fa {
    color: #fff !important;
}

.candeeUserBar[class*=candeeUserBarTheme-sidebar] {
    background: var(--candee-primary);
}

div#units_theme_3 {
    margin-top: 5rem;
}

aside.candee-columns.three.filterWrapInner {
    margin-top: 2rem
}

#units_theme_3 .pitchTheme11 .facilityBlock {
    border-radius: 6px;
    box-shadow: 1px 7px 4px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);

}

a.button_1.textAlignCenter.background_1.color_2.facilityBlockButton.googleTagManager.candeeButtonAni1 {
    border-radius: 4px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    font-weight: bold
}

.candee #units_theme_3 .unitFeatureItem {
    border-radius: 2px;
    text-align: center !important;
}

.facilityBlockName {
    color: #222;
    font-weight: bold;
}

.pitchInfo a.text_color_1 {
    color: #222;
}

#units_theme_3 .unitName {
    color: #222;
    font-weight: bold;
    padding-bottom: 0.8rem;
    line-height: 2.1rem !important;
}

.containerMap span.spanAvailable {
    display: none;
}

.candee .unitName {
    color: #222 !important;
    font-weight: 600;
    text-transform: capitalize;
}

li.shadow.unitsList.lineItem {
    padding: 1.5rem;
}

.candee .cardPrice {
    font-size: 1.4rem !important
}

.tsg-hero-video.heroTheme8.height100vh {
    height: 600px;
    min-height: 80% !important;
}

.pitch_theme_10 .pitchUnitName {
    line-height: 1.5rem;
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
}

.pitch_theme_10 {
    align-items: stretch;
}

.pitchBlock {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*
video#myVideo {
    top: 87% !important;
}*/
.pitch_theme_10.candee.candee-row.candee-flex.container {
    margin-top: 0.9rem !important;
}

.pinnacle_cta4 .cta4_cta.flex-item::before {
    background: rgba(0, 0, 0, 0) !important;
}

strong.color_2.textAlignCenter.h2 {
    font-size: 2.5rem !important;
    text-shadow: 3px 7px 7px rgba(0, 0, 0.8);
}

.row.pageContent {
    padding-top: 1rem;
}


.unit-details .prodRemove i,
.unit-details-content .tsg-row-down,
.unit-details-content .tsg-row-up {
    padding: 6px 8px;
    border-radius: 5px;
    background: #F3F3F3;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.10), 1px 4px 5px rgba(0, 0, 0, 0.06);
}

.unit-details-content .prodRemove i,
.unit-details .prodRemove i {
    color: black !important;
    margin-left: 0 !important;
}

.unit-details-content .tsg-row-down,
.unit-details-content .tsg-row-up {
    color: black !important;
    line-height: 1rem;
}


.locations_theme_2 #facilityMap {
    height: 400px;
    min-height: 400px !important;
}

.footerTheme3 .whiteBackground {
    background-color: #3DB1C4;
}

.tsg-footer-menu-class a {
    color: #fff;
}

.container.footer.flex-container {
    color: #fff;
}

/*body{
font-family: roboto !important;
}*/
/*END CUSTOMIZER*/


/*DEFAULT STYLES*/
.wpcf7 form {
    padding: 0px;
}

#pitchTheme1 .pitchButtonWrapper a {
    border-radius: 5px;
}

#pitchTheme1 .pitchImage img {
    max-height: 100% !important;
}

.home .more-limit-link {
    border-radius: 5px !important;
    float: initial;
    background: linear-gradient(to right, #314269, #192133) !important;
    color: #fff !important;
    margin-top: 69px !important;
    top: 20px;
    font-size: 1rem;
    padding: 7px 15px;
}

.page-id-30 #topmostBar select#lang_choice_1 {
    display: initial !important;
}

#topmostBar select#lang_choice_1 {
    margin: 0;
    vertical-align: middle;
    margin-left: 10px;
}

.page-id-30 #topmostBar .nice-select {
    display: none;
}

.home .reviewLogo {
    display: none;
}

.page-id-13 div#mainMenuContainer.sticky {
    position: initial !important;
}

.home .reviewRating {
    position: relative;
    top: 0px;
    margin-bottom: 20px;
}

.home .reviewAuthor {
    text-align: center;
}

.home .candee .star-ratings-css {
    font-size: 1.5rem;
    float: none;
}

.page-id-13 #pinnacleHeader #nabarTheme1.pinnacleMainNavBar.mainLogo {
    position: initial !important;
}

div#mainMenuContainer.sticky #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner,
div#mainMenuContainer.sticky #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before,
div#mainMenuContainer.sticky #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
    background-color: #fff !important;
}

.page-id-8 .container.fullWidthContainer {
    max-width: 100% !important;
    width: 100% !important;
}

.page-id-8 .candee-container.candee_locations {
    max-width: 100% !important;
    width: 95% !important;
}

.page-id-8 .mainSearchbarWrapper .twelve.candee-columns {
    width: 100%;
    max-width: 1200px;
    margin-left: 0;
    margin: 0 auto;
    float: inherit;
}

.home .facReview {
    max-width: 350px;
}

.home footer {
    margin-top: 0px;
}

.home .bodyWrapper {
    padding-bottom: 0;
}

.mainLogo img {
    max-width: 250px;
}

.reviewsHeader .reviewsHeaderTitle {
    padding-top: 0;
}

.calloutButton,
#pitchTheme1 .pitchBlockInner,
.facReview {
    border-radius: 5px;
}

div#nabarTheme1 {
    background: #fff !important;
}

/*  BUTTONS BACKGROUND RENTALS
.background_1, .candee .background_1, #nprogress .bar, .miscLinks, .candee .main1BTN, .candee .main2BTN, .candee .main3BTN, .candee .yellowBTN, .candee input[type=submit], .candee input[type=checkbox]:checked~i:after, .candee input[type=radio]:checked~i:after {
    background-color: #08335a !important;
}*/

#pitchTheme1 .pitchButtonWrapper .button_1.background_1 {
    background: linear-gradient(to right, #314269, #192133) !important;
}

a.dashicons-cart, a.dashicons-admin-users.mega-menu-link {
    background: linear-gradient(to right, #314269, #192133) !important;
    color: #fff !important;
    border-radius: 5px !important;
    margin-left: 10px !important;
    padding: 0px 10px 0px 10px !important;
}

/* Top Bar */
div#topmostBar {
    background: linear-gradient(to right, #2c8bff, #3d0dff) !important;
}

#topmostBar a.socialHeadIcon {
    vertical-align: middle;
    height: auto;
    line-height: normal;
}

#topmostBar a.socialHeadIcon,
#topmostBar .callButton i,
#topmostBar .callButton span {
    color: #fff !important;
}

/* End Top Bar */

/* Hero Section */
.tsg-hero-video .text-white {
    text-align: center;
}

.tsg-hero-video hr {
    margin: 0 auto;
}

.tsg-hero-video .hero-text {
    width: 100% !important;
}

/* End Hero Section */

/* Home */
.padHomeTop.frontpageContainer {
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.first-section {
    background: #08335a;
    text-align: center;
    color: #fff;
    padding: 60px 0;
}

.first-section h2 {
    padding-top: 0;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: bolder;
}

.first-section hr {
    width: 15%;
    border: 1px solid;
    margin: 3px auto;
}

.second-section-class .row {
    display: flex;
    align-items: center;
}

.second-section-class h2,
.third-section-class h2 {
    font-weight: bolder;
    text-transform: uppercase;
}

.third-section-class h2 {
    text-align: center;
    padding-top: 0;
    margin-bottom: 40px;
}

.second-section-class .six.columns.text {
    width: 40%;
}

.second-section-class ul {
    list-style: none;
}

.second-section-class ul li:before {
    content: '✓';
}

.third-section-class {
    background: #eeeeee;
    padding: 60px 0;
}

.third-section-class .fa-5x {
    font-size: 7em;
    color: #08335a;
}

section.fourth-section-class {
    margin: 40px 0;
}

/* End Home */


/* Flip Card */
.flip {
    position: relative;
    color: #000;
}

.flip>.front,
.flip>.back {
    display: block;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-duration: 1.5s;
    transition-property: transform, opacity;
}

.flip>.back a {
    color: #fff !important;
}

.flip>.front {
    transform: rotateY(0deg);
}

.flip>.back {
    position: absolute;
    opacity: 0;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transform: rotateY(-180deg);
    display: flex;
    align-items: center;
}

.flip .back {
    display: flex !important;
    align-items: center !important;
}

.flip:hover>.front {
    transform: rotateY(180deg);
}

.flip:hover>.back {
    opacity: 1;
    transform: rotateY(0deg);
}

.flip h1, .flip h3 {
    color: #000;
    margin-bottom: 0;
    font-weight: bolder;
}

.flip {
    position: relative;
    display: inline-block;
    margin-right: 2px;
    margin-bottom: 1em;
    width: 100%;
    text-align: center;
}

.flip img {
    margin: 0 auto;
}

.flip>.front,
.flip>.back {
    display: block;
    color: white;
    width: inherit;
    background-size: cover !important;
    background-position: center !important;
    height: 100%;
    padding: 2em 2em;
    background: #fff;
    border-radius: 5px;
}

.flip>.front p,
.flip>.back p {
    font-size: 1rem;
    line-height: 160%;
    color: #000;
}

/* End Flip Card */

/* Footer */
.top-footer p {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 0;
}

/* End Footer */


.calloutTitle {
    text-transform: capitalize;
}

.featureBlock.flex-item {
    min-width: 32% !important;
}

input.wpcf7-form-control, textarea.wpcf7-form-control {
    width: 100%;
}

.lowImprint.columns.four.imprint.shortcode-copyright-bottom {
    width: 100%;
    text-align: center;
}

.page-id-13 #pinnacleHeader #nabarTheme1.pinnacleMainNavBar.mainLogo {
    visibility: visible;
}

.main-candee-cart {
    position: relative !important;
}

.main-candee-cart .cartTotal {
    left: 0;
    top: -10px;
    right: auto;
    text-align: center;
}

.candee .yellowBTN.grey_bg {
    background-color: #eee !important;
}

#upgradeUnitCart button.mfp-close {
    color: #000 !important;
}

.facReviewWrapper.container.slick-initialized.slick-slider button {
    background-color: transparent !important;
}

.showReadMoreLink {
    cursor: pointer;
    color: #08335a;
}

.reviewsTheme3 .facReviewWrapper {
    padding: 20px 0 50px !important;
}

.floatingCall .callButton {
    -webkit-box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #08335a;
    border-right-width: 0;
    right: -1px;
}

#pitchTheme1 .pitchBlockInner {
    min-height: 600px;
}

.pinnacle_cta4 .cta4_cta.flex-item::before {
    content: '';
    display: block;
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: background .5s;
}

.pinnacle_cta4 .cta4_cta.flex-item a {
    display: block;
    z-index: 20;
    width: 100% !important;
    max-width: 250px !important;
    margin: 0 10px;
    background: #d9091d !important;
    color:#fff !important;
    border: none !important;
    padding: 10px;
    border-radius: 4px !important;
    font-weight: normal !important;
    transition: all .2s ease-in-out;
}

.pinnacle_cta4 .cta4_cta.flex-item a:hover {
transform: scale(1.05);
}

.pinnacle_cta4 .cta4_cta.flex-item .h2 {
    position: relative !important;
    bottom: unset !important;
    margin: 0 !important;
    display: block;
    width: 100% !important;
    padding: 0;
    font-size: 1.1rem !important;
    font-weight: normal !important;
}

.pinnacle_cta4.calloutWrapper.flex-container {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
}

.pinnacle_cta4 .cta4_cta.flex-item {
    padding-bottom: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 10px !important;
}

.pinnacle_cta4 .cta4_cta.flex-item:last-of-type {
    margin-right: 0 !important;
}

strong.color_2.textAlignCenter.h2 {
    text-shadow: none !important;
}

.pitch_theme_9_wrapper, .pitch_theme_10_wrapper {
    border-top: 5px solid #314269;
    border-bottom: 5px solid #314269;
}

body.home .row.pageContent {
    padding-top: 0 !important;
}

.introtext-section {
    padding: 30px 0 50px !important;
}

img.innovated-by-logo {
    max-width: 125px !important;
    display: inline-block;
    margin-left: 10px;
}

.bottomFooterWrapper>.flex-container>.flex-item {
    display: flex;
    align-items: center;
}

.bottomFooterWrapper>.flex-container>.lowImprint.imprint.flex-item {
    justify-content: flex-end;
}

.rippleFlashL2R:hover{
    transform: scale(1.05) !important;
}

.featured_theme_2 .featuredContentWrapper {
    padding: 20px 10px 50px !important;
}

.container {
    max-width: 1400px !important;
}

.tsg-hero-video.heroTheme8 .container .text-white {
    margin-top: 160px;
}

body div#topmostBar a{
    color:#fff !important;
}

body.home .tsg-hero-video {
    margin-top: 100px;
}

form.wpcf7-form {
    padding: 20px;
}

.wpcf7 input.wpcf7-form-control.wpcf7-submit{
    border-radius: 4px !important;
    color:#fff !important;
    background: #d9091d !important;
    border:none !important;
}











.page-id-51 footer {
    margin-top: 0 !important;
}

.bodyWrapper {
    padding-bottom: 0 !important;
}


.page-template-calculator-no-header .noHeadPadder {
    height: 0;
}


.featured_theme_2 .button_4 {
    margin-top: 1.4rem !important;
}

.featured_theme_2 .featuredIconBox .fa {
    margin-bottom: 10px !important;
}

.cf7sr-g-recaptcha > div {
    margin: 0 auto 30px;
}

form.wpcf7-form p{
    padding-bottom:0;
}

.candee-login-page .pinnacleMainNavBar:not(#nabarTheme5):not(#nabarTheme7){
    position:relative !important;
}





/********************************************
  media queries
********************************************/

@media (max-width: 1200px) {
    .flip>.front, .flip>.back {
        padding: 2em 1em;
    }
}

@media (max-width: 1000px) {

    #mainMenuContainer a.dashicons-cart,
    #mainMenuContainer a.dashicons-admin-users.mega-menu-link {
        margin-left: 0px !important;
    }

    .first-section {
        padding: 30px 0;
    }

    .second-section-class .row {
        display: block;
    }

    .second-section-class .six.columns.text {
        padding: 20px;
    }

    .first-section .columns,
    .second-section-class .columns,
    .third-section-class .columns {
        margin-left: 0;
        width: 100% !important;
    }

    .flip>.back p {
        margin: 0 auto;
    }

    .second-section-class p,
    .second-section-class ul,
    .second-section-class h2 {
        text-align: center !important;
    }

    .first-section .columns p {
        width: 50%;
        margin: 0 auto 20px;
        text-align: center;
    }

    #mega-menu-primary {
        top: 52px !important;
    }

    .main-candee-cart .cartTotal {
        left: auto;
        right: 10px;
        top: 50%;
        transform: translateY(-50%) !important;
    }

    .pinnacle_cta4 .cta4_cta.flex-item {
        margin-right: 0 !important;
    }

    .pinnacle_cta4 .cta4_cta.flex-item {
        background-position: center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        width: 50% !important;
        height: 500px !important;
        flex-basis: unset !important;
    }
}

@media (max-width: 845px) {

    .page-id-5 .mainCart,
    .page-id-5 .mainCart~div {
        width: 100%;
        margin-left: 0;
    }
}

@media (min-width:768px) {
    .innovated-by-wrapper.textAlignRight {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    span.innovated-by-text {
        margin-right: 10px;
    }
}

@media (max-width: 700px) {
    .candeeMenuItem .menuTitle {
        font-size: 1.5rem;
        padding: 0px 0 0px 0 !important;
    }
}

@media (max-width: 768px) {
    .candee #units_theme_2 .unitFeatureItem {
        padding-top: 20px !important;
    }

    .candee #units_theme_2 .unitFeatureItemWrapper {
        padding-bottom: 10px !important;
    }

    .bottomFooterWrapper>.flex-container>.flex-item, .container.footer.flex-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .innovated-by-wrapper.textAlignRight {
        text-align: center;
        margin-top:15px;
    }
}

@media (max-width: 600px) {
    select#lang_choice_1 {
        width: 50px;
    }

    .pinnacle_cta4 .cta4_cta.flex-item {
        width: 100% !important;
    }

    .container.footer.flex-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .tsg-hero-video.heroTheme8.height100vh {
        min-height: 450px !important;
    }

    .tsg-hero-video .hero-title,
    h1,
    h1.hero-title {
        font-size: 1.5rem !important;
        line-height: 1.5rem !important;
    }
}

@media (max-width: 550px) {
    .footerLogo img {
        text-align: center;
        margin: 0 auto;
    }

    .innovated-by-wrapper {
        text-align: center !important;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    #topmostBar:not(.noStickyPhone) .callButton i {
        font-size: 30px;
        color: #08335a !important;
        padding-top: 19px;
        margin-left: 0px;
    }

    .use_3d_Filters .phoneLink {
        display: none;
    }

    select#lang_choice_1 {
        width: 125px;
        margin-bottom: 5px !important;
    }

    .calloutButton {
        padding: 5px !important;
    }

    #topmostBar:not(.topnavShowIcons) .socialLinks {
        display: block !important;
        text-align: center;
    }

    #topmostBar:not(.topnavShowIcons) .socialLinks .socialHeadIcon {
        display: none;
    }

    .main-logo-bar .wrap img {
        margin-left: 0px;
        width: 200px;
    }

    .first-section .columns p {
        width: 90%;
    }

    .calloutTitle {
        font-size: 1.3rem !important;
    }

    .mainMenuToggle {
        top: 0rem !important;
    }
}

@media (max-width: 430px) {
    .mainMenuToggle {
        top: 41px !important;
    }
}

@media (max-width: 424px) {
    #pitchTheme1 .pitchBlockInner {
        min-height: 655px;
    }
}

@media (max-width: 400px) {
    .calloutTitle {
        font-size: 1.1rem !important;
    }

    .calloutDesc {
        font-size: .8rem !important;
    }
}

/*QC fixes/revisions*/
.tsg-hero-video {
  background-position: center center !important;
}

#navbarTheme8 .logo-wrapper img {
  max-height: 100px !important;
  height: 100px !important;
  width: auto !important;
}

.candee-container, .container.full-width-no-header, .candee-row.container {
  margin: 0 auto !important;
}


.introtext-class.whiteBackground .text_size_1 {
  padding: 10px !important;
}


@media screen and (max-width: 500px) {
  #calc-form .accordianElement {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .flex-container {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .pitch_theme_10 .four.candee-columns {
    width: 100%;
  }

    .candee-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

}

@media (min-width: 1025px) {
	#menu-item-210 {
		display: none !important;
	}
}