﻿/*--import variables here--*/
 



body {
  color: var(--primary-dark-color);
	font-family: "Roboto", sans-serif;
	font-size: 14px;
}

::placeholder {
  font-family: "Roboto";
  font-size: 14px;
}



.cc-h1-medium {
  font-size: 32px;
  font-weight: 500;
}

.cc-h1-regular {
  font-size: 32px;
  font-weight: 400;
}

.cc-h1-light {
  font-size: 32px;
  font-weight: 300;
}

.cc-h2-medium {
  font-size: 24px;
}

.cc-h2-regular {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0;
}

.cc-h3-medium {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .15px;
}

.cc-h3-regular {
  font-size: 20px;
  font-weight: 400;
}

.cc-p-large-medium {
  font-size: 18px;
  font-weight: 500;
}

.cc-p-large-regular {
  font-size: 18px;
  font-weight: 400;
}

.cc-p-medium-medium {
  font-size: 16px;
  font-weight: 500;
}

.cc-p-medium-regular {
  font-size: 16px;
  font-weight: 400;
}

.cc-p-xlarge-medium {
   font-size: 22px;
  font-weight: 500;
}

.cc-weight-500 {
  font-weight: 500;
}

.cc-uppercase {
  text-transform: uppercase;
}

.cc-sm-text {
  font-size: 12px;
}

.cc-xsm-text {
  font-size: 11px;
}

.cc-overline {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .5px;
  text-transform: uppercase;
}


.cc-emphasize-text {
  color: var(--primary-dark-color);
  font-weight: 500;
}





/*----------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------

the following are classes that align with the typography sizings that will be used in 
our new Vue application. The namings of these classes will remain the same as "pre Vue". When
we move to Vue, these classes will no longer be used and the "cc" naming convention will be retired

------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------*/


.cc-v-text-h3 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 0;
}

.cc-v-text-h6 {
  font-size: 20px;
  letter-spacing: .15px;
  margin-bottom: 0;
  margin-top: 0;
}

.cc-v-text-subtitle1 {
  font-size: 16px;
  letter-spacing: .15px;
  margin-bottom: 0;
  margin-top: 0;
}
























/*always have media queries at the bottom of the file like so*/


/* Extra small devices (portrait phones, less than 576px)
No media query for `xs` since this is the default in Bootstrap*/

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) { 

}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {

}


/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {

}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {

}

