/* CSS Document */
/* TheHotline.us The Hotline Chat - Google One Box. National Domestic Violence Hotline chat widget for the Google One Box deployment. TheHotline.org.  */
/* project lead: Marty Hand | National Domestic Violence Hotline | TheHotline.org */
/* author: Chad Cleveland | National Domestic Violence Hotline | TheHotline.org  */
/* copyright: © National Domestic Violence Hotline. All rights reserved. Effective as of timestamp below.  */
/*
    Created: 9/13/2022
    Last Modified: '2026-04-13 13:25';
*/ 



/* @font-face {
font-family: "Gotham";
src: url("https://lib.thehotline.us/font/gotham/gotham-300.woff2");
font-weight: 300;
} */

@font-face {
font-family: "Gotham";
src: url("https://lib.thehotline.us/font/gotham/gotham-400.woff2");
font-weight: 400;
}

@font-face {
font-family: "Gotham";
src: url("https://lib.thehotline.us/font/gotham/gotham-800.woff2");
font-weight: 800;
}

#thl-app-container .color-purple-lt {
  color: var(--thl-purple-lt);
}

:root {
--thl-font-main: 'Gotham', sans-serif;
--thl-purple-lt: #A83E92;
--thl-purple-dk: #592C5F;
--thl-purple-dk-rgb: 89, 44, 95;
--thl-black: #333132;
--thl-red: #D93C4E;
}




a, button {
  cursor: pointer;
}


#thl-app-container [class^=site-btn] {
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 800;
  display: block;
  margin: 30px auto 10px;
  border-radius: 30px;
  min-width: 150px;
  cursor: pointer;
  border: 2px solid var(--thl-purple-dk);
  background-color: var(--thl-purple-dk);
  color: #fff;
}
#thl-app-container .site-btn-2 {
  border: 2px solid var(--thl-purple-dk);
  background-color: #fff;
  color: var(--thl-purple-dk);
}

#thl-app-container .site-btn-alert {
  border: 2px solid var(--thl-red);
  color: #fff;
  background: var(--thl-red);
}


#thl-app-container .exit-now {
  width: 60px;
  height: 60px;
  padding: 0px;
  margin: 10px;
  background: var(--thl-red);
  box-shadow: 0 0 20px #00000055;
  cursor: pointer;
  transition: background ease-in-out .15s;
}

#thl-app-container .exit-now:hover {
  background: var(--thl-black);
}
#thl-app-container .exit-now .thl-icon {
  width: 20px;
  height: 20px;
  margin: 12px 0 1px 20px;
}

#thl-app-container .exit-now .exit-now-text {
  color: #fff;
  font-weight: 700;
  text-align: center;
  letter-spacing: -.5px;
  font-size: 15.25px;
}

























.loading {
    position: fixed;
    top: 50px;
    left: calc(50% - 15px);
    width: 30px;
    height: 30px;
    padding: 4px;
    border-radius: 50%;
    border: 6px solid var(--thl-purple-lt);
    border-color: var(--thl-purple-lt) transparent var(--thl-purple-lt) transparent;
    animation: loading 1.5s linear infinite;
    z-index: 99;
}

@keyframes loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }




  
#thl-app-container .loading {
  display: none;
}