/*


	The dimensions of the breakpoints we have chosen are:

	Phones: <= 600px,
	Tablets: <= 900px,
	Tablets(landscape): <= 1200px
	desktop(big): >= 1800px

	NOTE: Our responsive mixin will be passed two value types, namely; The breakpoint category and
	the responsive styles of the selector where the mixin is called[The styles are accessed via the @content sass directive].

*/
/*=====================================================================

		KOKAPIX COLOR NAMES:

		$color-primary: #D2B48C; // TAN
		$color-secondary:  #ff9c00; // ORANGE
		$color-tertiary: #F00; // RED
		$color-tertiary-alt-1: #999; // DARK GREY
		$color-tertiary-alt: #CCC; // LIGHT GREY
		$color-general: #000; // BLACK
		$color-general-alt: #FFF; // WHITE
	



======================================================================*/
/*========== THEMETIC COLOR VARIABLES [Start]==========================*/
/*============== GRADIENT BACKGROUNDS VARIABLES ========================*/
/*============== GRID VARIABLES [Start]========================*/
/*============== DIMENSIONAL VARIABLES [Start]========================*/
/*========== BORDER VARIABLES [Start]==========================*/
/*========== DISPLAY VARIABLES [Start]==========================*/
/*========== CURSOR VARIABLES [Start]==========================*/
/*========== GENERAL GUTTER VARIABLES [Start]==========================*/
/*========== OFFSETS VARIABLES [Start]==========================*/
/*========== POSITIONAL VARIABLES [Start]==========================*/
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Libre+Franklin:wght@500&family=Roboto&family=Turret+Road:wght@200;300&display=swap");
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2rem); }
  80% {
    transform: translateX(1rem); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

@keyframes moveOutLeft {
  0% {
    opacity: 1;
    transform: translateX(-50%); }
  100% {
    opacity: 0;
    display: none; } }

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(2rem); }
  80% {
    transform: translateX(-1rem); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(10rem); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.2, 0.2); }
  40% {
    opacity: 0;
    transform: scale(0.5, 0.5); }
  60% {
    opacity: 0;
    transform: scale(0.7, 0.7); }
  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: .9; }
  100% {
    opacity: 1; } }

.sliderOut {
  animation-name: moveOutLeft;
  animation-duration: 2s;
  animation-timing-function: ease-out; }

@keyframes shake-shake {
  0% {
    border-bottom: solid 2px #009999; }
  40% {
    border-bottom: solid 2px #cc3333; }
  60% {
    border-bottom: solid 2px #ffcc66; }
  80% {
    border-bottom: solid 2px #000; }
  90% {
    border-bottom: solid 2px #009999; }
  90% {
    border-bottom: solid 2px #FFF; } }

/*

	Colors:
	
	#096 = Dark Green
	#C90 = Gold
	#F00 = Red;
	#F7F7F7 = Light grey
	
*/
/* Below, Create a basic reset of the browser applied styles */
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

/* ========================================================================================================

	The html element below will be used to set a root font-size for the project. This base font-size will
	be used as the base for all the measurements we are going to set on the page. This powerfull technique
	will make it easier for us to modify and mantain the code since we are only going to have a single place
	where we make a change and automatically any related code. To enable users the chance to modify our styles,
	we are going to use percentage values-a really recommended practice.
	
   =======================================================================================================*/
html {
  font-size: 62.5%; }

/* Below, Create a project wide font-definitions */
body {
  box-sizing: border-box;
  overflow-x: hidden;
  max-width: 1500px;
  margin: 0 auto; }

.margin-offset-small {
  margin-top: 5rem; }

.margin-offset-medium {
  margin-top: 10rem; }

.margin-offset-large {
  margin-top: 15rem; }

.grid-col-pad-left-modify {
  padding-left: 0 !important; }

.grid-col-marg-right-modify {
  margin-right: 0 !important; }

.grid-col-6-expand {
  width: 50% !important; }

.grid-col-marg-clear {
  margin-right: 0 !important; }

.margin-bottom-offset {
  margin-top: -.2rem; }

.margin-bottom-offset-medium {
  margin-top: -5rem; }

.margin-bottom-offset {
  margin-top: -.2rem; }

.margin-auto-offset {
  margin: 0 auto; }

.border-top-secondary {
  border-top: solid 0.1rem #cc3333; }

.height-2x {
  height: 2rem; }

.height-3x {
  height: 4rem !important; }

.hr-size-fl-x-bt {
  width: 2%; }

.hr-size-fl-bt {
  width: 5%; }

.hr-size-fl-xxx-tn {
  width: 10%; }

.hr-size-fl-xx-tn {
  width: 15%; }

.hr-size-fl-x-tn {
  width: 20%; }

.hr-size-fl-tn {
  width: 25%; }

.hr-size-fl-xxx-sm {
  width: 30%; }

.hr-size-fl-xx-sm {
  width: 35%; }

.hr-size-fl-x-sm {
  width: 40%; }

.hr-size-fl-sm {
  width: 45%; }

.hr-size-fl-md {
  width: 50%; }

.hr-size-fl-x-md {
  width: 55%; }

.hr-size-fl-xx-md {
  width: 60%; }

.hr-size-fl-xxx-md {
  width: 65%; }

.hr-size-fl-lg {
  width: 70%; }

.hr-size-fl-x-lg {
  width: 75%; }

.hr-size-fl-xx-lg {
  width: 80%; }

.hr-size-fl-xxx-lg {
  width: 85%; }

.hr-size-fl-bg {
  width: 90%; }

.hr-size-fl-x-bg {
  width: 95%; }

.hr-size-fl-xx-bg {
  width: 100%; }

.hr-size-fd-x-bt {
  width: .2rem; }

.hr-size-fd-bt {
  width: .5rem; }

.hr-size-fd-xxx-tn {
  width: 1rem; }

.hr-size-fd-xx-tn {
  width: 1.5rem; }

.hr-size-fd-x-tn {
  width: 2rem; }

.hr-size-fd-tn {
  width: 2.5rem; }

.hr-size-fd-xxx-sm {
  width: 3rem; }

.hr-size-fd-xx-sm {
  width: 3.5rem; }

.hr-size-fd-x-sm {
  width: 4rem; }

.hr-size-fd-sm {
  width: 4.5rem; }

.hr-size-fd-md {
  width: 5rem; }

.hr-size-fl-x-md {
  width: 5.5rem; }

.hr-size-fd-xx-md {
  width: 6rem; }

.hr-size-fd-xxx-md {
  width: 6.5rem; }

.hr-size-fd-lg {
  width: 7rem; }

.hr-size-fd-x-lg {
  width: 7.5rem; }

.hr-size-fd-xx-lg {
  width: 8rem; }

.hr-size-fd-xxx-lg {
  width: 8.5rem; }

.hr-size-fd-bg {
  width: 9rem; }

.hr-size-fd-x-bg {
  width: 9.5rem; }

.hr-size-fd-xx-bg {
  width: 10rem; }

.hr-size-fd-xxx-bg {
  width: 13rem; }

.hr-size-fd-xxxx-bg {
  width: 14rem; }

.hr-size-fd-xxxxx-bg {
  width: 15rem; }

  .huloader h1 {
    font-size: 64px;
    transition: 0.5s; }
  
  .huloader__loading {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px; }
  
  .huloader__loading div {
    position: absolute;
    background: #fff;
    opacity: 1;
    border-radius: 50%;
    animation: loading 1.4s cubic-bezier(0, 0.2, 0.8, 1) infinite; }
  
  .huloader__loading-co div {
    background: #ffcc66; }
  
  .huloader__loading-co div:nth-child(2) {
    background: #009999; }
  
  .huloader__loading div:nth-child(2) {
    animation-delay: -.7s; }
  
  @keyframes loading {
    0% {
      top: 28px;
      left: 28px;
      width: 0;
      height: 0;
      opacity: 1; }
    100% {
      top: -1px;
      left: -1px;
      width: 58px;
      height: 58px;
      opacity: 0; } }
  
  .huloader-co {
    margin-top: 20px;
    margin-left: 30%; }

.vt-size-fl-x-bt {
  height: 2%; }

.vt-size-fl-bt {
  height: 5%; }

.vt-size-fl-xxx-tn {
  height: 10%; }

.vt-size-fl-xx-tn {
  height: 15%; }

.vt-size-fl-x-tn {
  height: 20%; }

.vt-size-fl-tn {
  height: 25%; }

.vt-size-fl-xxx-sm {
  height: 30%; }

.vt-size-fl-xx-sm {
  height: 35%; }

.vt-size-fl-x-sm {
  height: 40%; }

.vt-size-fl-sm {
  height: 45%; }

.vt-size-fl-md {
  height: 50%; }

.vt-size-fl-x-md {
  height: 55%; }

.vt-size-fl-xx-md {
  height: 60%; }

.vt-size-fl-xxx-md {
  height: 65%; }

.vt-size-fl-lg {
  height: 70%; }

.vt-size-fl-x-lg {
  height: 75%; }

.vt-size-fl-xx-lg {
  height: 80%; }

.vt-size-fl-xxx-lg {
  height: 85%; }

.vt-size-fl-bg {
  height: 90%; }

.vt-size-fl-x-bg {
  height: 95%; }

.vt-size-fl-xx-bg {
  height: 100%; }

.vt-size-vh-x-bt {
  height: 1vh; }

.vt-size-vh-x-bt {
  height: 2vh; }

.vt-size-vh-bt {
  height: 5vh; }

.vt-size-vh-xxx-tn {
  height: 10vh; }

.vt-size-vh-xx-tn {
  height: 15vh; }

.vt-size-vh-x-tn {
  height: 20vh; }

.vt-size-vh-tn {
  height: 25vh; }

.vt-size-vh-xxx-sm {
  height: 30vh; }

.vt-size-vh-xx-sm {
  height: 35vh; }

.vt-size-vh-x-sm {
  height: 40vh; }

.vt-size-vh-sm {
  height: 45vh; }

.vt-size-vh-md {
  height: 50vh; }

.vt-size-vh-x-md {
  height: 55vh; }

.vt-size-vh-xx-md {
  height: 60vh; }

.vt-size-vh-xxx-md {
  height: 65vh; }

.vt-size-vh-lg {
  height: 70vh; }

.vt-size-vh-x-lg {
  height: 75vh; }

.vt-size-vh-xx-lg {
  height: 80vh; }

.vt-size-vh-xxx-lg {
  height: 85vh; }

.vt-size-vh-bg {
  height: 90vh; }

.vt-size-vh-x-bg {
  height: 95vh; }

.vt-size-vh-xx-bg {
  height: 100vh; }

.vt-size-flv-xx-bg {
  height: 100vh; }

.vt-size-fd-xxx-bt {
  height: .5rem; }

.vt-size-fd-xx-bt {
  height: 1rem; }

.vt-size-fd-x-bt {
  height: 2rem; }

.vt-size-fd-bt {
  height: 5rem; }

.vt-size-fd-xxx-tn {
  height: 10rem; }

.vt-size-fd-xx-tn {
  height: 15rem; }

.vt-size-fd-x-tn {
  height: 20rem; }

.vt-size-fd-tn {
  height: 25rem; }

.vt-size-fd-xxx-sm {
  height: 30rem; }

.vt-size-fd-xx-sm {
  height: 35rem; }

.vt-size-fd-x-sm {
  height: 40rem; }

.vt-size-fd-sm {
  height: 45rem; }

.vt-size-fd-md {
  height: 50rem; }

.vt-size-fl-x-md {
  height: 55rem; }

.vt-size-fd-xx-md {
  height: 60rem; }

.vt-size-fd-xxx-md {
  height: 65rem; }

.vt-size-fd-lg {
  height: 70rem; }

.vt-size-fd-x-lg {
  height: 75rem; }

.vt-size-fd-xx-lg {
  height: 80rem; }

.vt-size-fd-xxx-lg {
  height: 85rem; }

.vt-size-fd-bg {
  height: 90rem; }

.vt-size-fd-x-bg {
  height: 95rem; }

.vt-size-fd-xx-bg {
  height: 100rem; }

.vt-size-fd-min-xx-bt {
  height: .19rem; }

.vt-size-fd-min-x-bt {
  height: .1rem; }

.vt-size-fd-min-bt {
  height: .5rem; }

.vt-size-fd-min-xxx-tn {
  height: 1rem; }

.vt-size-fd-min-xx-tn {
  height: 1.5rem; }

.vt-size-fd-min-x-tn {
  height: 2rem; }

.vt-size-fd-min-tn {
  height: 2.5rem; }

.vt-size-fd-min-xxx-sm {
  height: 3rem; }

.vt-size-fd-min-xx-sm {
  height: 3.5rem; }

.vt-size-fd-min-x-sm {
  height: 4rem; }

.vt-size-fd-min-sm {
  height: 4.5rem; }

.fg-primary {
  color: #009999; }

.fg-secondary {
  color: #cc3333; }

.fg-general-alt {
  color: #FFF; }

.fg-dk-green {
  color: #096; }

.fg-dk-green-lt {
  color: rgba(0, 153, 102, 0.5); }

.fg-dk-green-lta {
  color: rgba(0, 153, 102, 0.1); }

.fg-dk-green {
  color: #096; }

.fg-dk-green-lt {
  color: rgba(0, 153, 102, 0.5); }

.fg-dk-green-lta {
  color: rgba(0, 153, 102, 0.1); }

.fg-tan {
  color: #D2B48C; }

.fg-tan-lt {
  color: rgba(210, 180, 140, 0.5); }

.fg-tertiary {
  color: #ffcc66; }

.fg-tan-lta {
  color: rgba(210, 180, 140, 0.1); }

.fg-seagreen {
  color: #2E8B57; }

.fg-seagreen-lt {
  color: rgba(46, 139, 87, 0.5); }

.fg-seagreen-lta {
  color: rgba(46, 139, 87, 0.1); }

.fg-red {
  color: #F00; }

.fg-red-lt {
  color: rgba(255, 0, 0, 0.5); }

.fg-red-lta {
  color: rgba(255, 0, 0, 0.1); }

.fg-dk-grey {
  color: #999; }

.fg-dk-grey-lt {
  color: rgba(153, 153, 153, 0.5); }

.fg-dk-grey-lta {
  color: rgba(153, 153, 153, 0.1); }

.fg-lt-grey {
  color: #CCC; }

.fg-lt-grey-lt {
  color: rgba(204, 204, 204, 0.5); }

.fg-lt-grey-lta {
  color: rgba(204, 204, 204, 0.1); }

.fg-dark {
  color: #000; }

.fg-dark-lt {
  color: rgba(0, 0, 0, 0.5); }

.fg-dark-lta {
  color: rgba(0, 0, 0, 0.1); }

.fg-light {
  color: #FFF !important; }

.fg-light-lt {
  color: rgba(255, 255, 255, 0.5); }

.fg-light-lta {
  color: rgba(255, 255, 225, 0.1); }

.bg-transparent {
  background-color: transparent; }

.bg-primary {
  background-color: #009999; }

.bg-primary-lt {
  background-color: rgba(0, 153, 153, 0.5); }

.bg-primary-lta {
  background-color: rgba(0, 153, 153, 0.2); }

.bg-secondary {
  background-color: #cc3333; }

.bg-general-alt {
  background-color: #FFF; }

.bg-dk-green {
  background-color: #096; }

.bg-dk-green-lt {
  background-color: rgba(0, 153, 102, 0.5); }

.bg-dk-green-lta {
  background-color: rgba(0, 153, 102, 0.1); }

.bg-dk-green {
  background-color: #096; }

.bg-dk-green-lt {
  background-color: rgba(0, 153, 102, 0.5); }

.bg-dk-green-lta {
  background-color: rgba(0, 153, 102, 0.1); }

.bg-tertiary {
  background-color: #ffcc66; }

.bg-tan {
  background-color: #D2B48C; }

.bg-tan-lt {
  background-color: rgba(210, 180, 140, 0.5); }

.bg-tan-lta {
  background-color: rgba(210, 180, 140, 0.1); }

.bg-seagreen {
  background-color: #2E8B57; }

.bg-seagreen-lt {
  background-color: rgba(46, 139, 87, 0.5); }

.bg-seagreen-lta {
  background-color: rgba(46, 139, 87, 0.1); }

.bg-red {
  background-color: #F00; }

.bg-red-lt {
  background-color: rgba(255, 0, 0, 0.5); }

.bg-red-lta {
  background-color: rgba(255, 0, 0, 0.1); }

.bg-dk-grey {
  background-color: #999; }

.bg-dk-grey-lt {
  background-color: rgba(153, 153, 153, 0.5); }

.bg-dk-grey-lta {
  background-color: rgba(153, 153, 153, 0.1); }

.bg-lt-grey {
  background-color: #CCC; }

.bg-lt-grey-lt {
  background-color: rgba(204, 204, 204, 0.5); }

.bg-lt-grey-lta {
  background-color: rgba(204, 204, 204, 0.1); }

.bg-dark {
  background-color: #000; }

.bg-dark-lt {
  background-color: rgba(0, 0, 0, 0.5); }

.bg-dark-lta {
  background-color: rgba(0, 0, 0, 0.1); }

.bg-light {
  background-color: #FFF; }

.bg-light-lt {
  background-color: rgba(255, 255, 255, 0.5); }

.bg-light-lta {
  background-color: rgba(255, 255, 225, 0.1); }

.font-fd-x-bt {
  font-size: .2rem; }

.font-fd-bt {
  font-size: .5rem; }

.font-fd-xxx-tn {
  font-size: 1rem; }

.font-fd-xx-tn {
  font-size: 1.5rem; }

.font-fd-x-tn {
  font-size: 2rem; }

.font-fd-tn {
  font-size: 2.5rem; }

.font-fd-xxx-sm {
  font-size: 3rem; }

.font-fd-xx-sm {
  font-size: 3.5rem; }

.font-fd-x-sm {
  font-size: 4rem; }

.font-fd-sm {
  font-size: 4.5rem; }

.font-fd-md {
  font-size: 5rem; }

.font-fl-x-md {
  font-size: 5.5rem; }

.font-fd-xx-md {
  font-size: 6rem; }

.font-fd-xxx-md {
  font-size: 6.5rem; }

.font-fd-lg {
  font-size: 70rem; }

.font-fd-x-lg {
  font-size: 7.5rem; }

.font-fd-xx-lg {
  font-size: 8rem; }

.font-fd-xxx-lg {
  font-size: 8.5rem; }

.font-fd-bg {
  font-size: 9rem; }

.font-fd-x-bg {
  font-size: 9.5rem; }

.font-fd-xx-bg {
  font-size: 10rem; }

.d-block {
  display: block; }

.d-inline {
  display: inline; }

.d-inline-block {
  display: inline-block; }

.d-none {
  display: none; }

.pd-none {
  padding: 0 !important; }

.pd-fl-x-bt {
  padding: 2%; }

.pd-fl-bt {
  padding: 5%; }

.pd-fl-xxx-tn {
  padding: 10%; }

.pd-fl-xx-tn {
  padding: 15%; }

.pd-fl-x-tn {
  padding: 20%; }

.pd-fl-tn {
  padding: 25%; }

.pd-fl-xxx-sm {
  padding: 30%; }

.pd-fl-xx-sm {
  padding: 35%; }

.pd-fl-x-sm {
  padding: 40%; }

.pd-fl-sm {
  padding: 45%; }

.pd-fl-md {
  padding: 50%; }

.pd-fl-x-md {
  padding: 55%; }

.pd-fl-xx-md {
  padding: 60%; }

.pd-fl-xxx-md {
  padding: 65%; }

.pd-fl-lg {
  padding: 70%; }

.pd-fl-x-lg {
  padding: 75%; }

.pd-fl-xx-lg {
  padding: 80%; }

.pd-fl-xxx-lg {
  padding: 85%; }

.pd-fl-bg {
  padding: 90%; }

.pd-fl-x-bg {
  padding: 95%; }

.pd-fl-xx-bg {
  padding: 100%; }

.pd-fd-x-bt {
  padding: .2rem; }

.pd-fd-bt {
  padding: .5rem; }

.pd-fd-xxx-tn {
  padding: 1rem; }

.pd-fd-xx-tn {
  padding: 1.5rem; }

.pd-fd-x-tn {
  padding: 2rem; }

.pd-fd-tn {
  padding: 2.5rem; }

.pd-fd-xxx-sm {
  padding: 3rem; }

.pd-fd-xx-sm {
  padding: 3.5rem; }

.pd-fd-x-sm {
  padding: 4rem; }

.pd-fd-sm {
  padding: 4.5rem; }

.pd-fd-md {
  padding: 5rem; }

.pd-fl-x-md {
  padding: 5.5rem; }

.pd-fd-xx-md {
  padding: 6rem; }

.pd-fd-xxx-md {
  padding: 6.5rem; }

.pd-fd-lg {
  padding: 70rem; }

.pd-fd-x-lg {
  padding: 7.5rem; }

.pd-fd-xx-lg {
  padding: 8rem; }

.pd-fd-xxx-lg {
  padding: 8.5rem; }

.pd-fd-bg {
  padding: 9rem; }

.pd-fd-x-bg {
  padding: 9.5rem; }

.pd-fd-xx-bg {
  padding: 10rem; }

.pd-left-fl-x-bt {
  padding-left: 2%; }

.pd-left-fl-x-bt-3 {
  padding-left: 3%; }

.pd-left-fl-bt {
  padding-left: 5%; }

.pd-left-fl-xxx-tn {
  padding-left: 10%; }

.pd-left-fl-xx-tn {
  padding-left: 15%; }

.pd-left-fl-x-tn {
  padding-left: 20%; }

.pd-left-fl-tn {
  padding-left: 25%; }

.pd-left-fl-xxx-sm {
  padding-left: 30%; }

.pd-left-fl-xx-sm {
  padding-left: 35%; }

.pd-left-fl-x-sm {
  padding-left: 40%; }

.pd-left-fl-sm {
  padding-left: 45%; }

.pd-left-fl-md {
  padding-left: 50%; }

.pd-left-fl-x-md {
  padding-left: 55%; }

.pd-left-fl-xx-md {
  padding-left: 60%; }

.pd-left-fl-xxx-md {
  padding-left: 65%; }

.pd-left-fl-lg {
  padding-left: 70%; }

.pd-left-fl-x-lg {
  padding-left: 75%; }

.pd-left-fl-xx-lg {
  padding-left: 80%; }

.pd-left-fl-xxx-lg {
  padding-left: 85%; }

.pd-left-fl-bg {
  padding-left: 90%; }

.pd-left-fl-x-bg {
  padding-left: 95%; }

.pd-left-fl-xx-bg {
  padding-left: 100%; }

.pd-left-fd-x-bt {
  padding-left: .2rem; }

.pd-left-fd-bt {
  padding-left: .5rem; }

.pd-left-fd-xxx-tn {
  padding-left: 1rem; }

.pd-left-fd-xx-tn {
  padding-left: 1.5rem; }

.pd-left-fd-x-tn {
  padding-left: 2rem; }

.pd-left-fd-tn {
  padding-left: 2.5rem; }

.pd-left-fd-xxx-sm {
  padding-left: 3rem; }

.pd-left-fd-xx-sm {
  padding-left: 3.5rem; }

.pd-left-fd-x-sm {
  padding-left: 4rem; }

.pd-left-fd-sm {
  padding-left: 4.5rem; }

.pd-right-fl-x-bt {
  padding-right: 2%; }

.pd-right-fl-bt {
  padding-right: 5%; }

.pd-right-fl-xxx-tn {
  padding-right: 10%; }

.pd-right-fl-xx-tn {
  padding-right: 15%; }

.pd-right-fl-x-tn {
  padding-right: 20%; }

.pd-right-fl-tn {
  padding-right: 25%; }

.pd-right-fl-xxx-sm {
  padding-right: 30%; }

.pd-right-fl-xx-sm {
  padding-right: 35%; }

.pd-right-fl-x-sm {
  padding-right: 40%; }

.pd-right-fl-sm {
  padding-right: 45%; }

.pd-right-fl-md {
  padding-right: 50%; }

.pd-right-fl-x-md {
  padding-right: 55%; }

.pd-right-fl-xx-md {
  padding-right: 60%; }

.pd-right-fl-xxx-md {
  padding-right: 65%; }

.pd-right-fl-lg {
  padding-right: 70%; }

.pd-right-fl-x-lg {
  padding-right: 75%; }

.pd-right-fl-xx-lg {
  padding-right: 80%; }

.pd-right-fl-xxx-lg {
  padding-right: 85%; }

.pd-right-fl-bg {
  padding-right: 90%; }

.pd-right-fl-x-bg {
  padding-right: 95%; }

.pd-right-fl-xx-bg {
  padding-right: 100%; }

.pd-right-fd-x-bt {
  padding-right: .2rem; }

.pd-right-fd-bt {
  padding-right: .5rem; }

.pd-right-fd-xxx-tn {
  padding-right: 1rem; }

.pd-right-fd-xx-tn {
  padding-right: 1.5rem; }

.pd-right-fd-x-tn {
  padding-right: 2rem; }

.pd-right-fd-tn {
  padding-right: 2.5rem; }

.pd-right-fd-xxx-sm {
  padding-right: 3rem; }

.pd-right-fd-xx-sm {
  padding-right: 3.5rem; }

.pd-right-fd-x-sm {
  padding-right: 4rem; }

.pd-right-fd-sm {
  padding-right: 4.5rem; }

.pd-top-fl-x-bt {
  padding-top: 2%; }

.pd-top-fl-bt {
  padding-top: 5%; }

.pd-top-fl-xxx-tn {
  padding-top: 10%; }

.pd-top-fl-xx-tn {
  padding-top: 15%; }

.pd-top-fl-x-tn {
  padding-top: 20%; }

.pd-top-fl-tn {
  padding-top: 25%; }

.pd-top-fl-xxx-sm {
  padding-top: 30%; }

.pd-top-fl-xx-sm {
  padding-top: 35%; }

.pd-top-fl-x-sm {
  padding-top: 40%; }

.pd-top-fl-sm {
  padding-top: 45%; }

.pd-top-fl-md {
  padding-top: 50%; }

.pd-top-fl-x-md {
  padding-top: 55%; }

.pd-top-fl-xx-md {
  padding-top: 60%; }

.pd-top-fl-xxx-md {
  padding-top: 65%; }

.pd-top-fl-lg {
  padding-top: 70%; }

.pd-top-fl-x-lg {
  padding-top: 75%; }

.pd-top-fl-xx-lg {
  padding-top: 80%; }

.pd-top-fl-xxx-lg {
  padding-top: 85%; }

.pd-top-fl-bg {
  padding-top: 90%; }

.pd-top-fl-x-bg {
  padding-top: 95%; }

.pd-top-fl-xx-bg {
  padding-top: 100%; }

.pd-top-fd-x-bt {
  padding-top: .2rem; }

.pd-top-fd-bt {
  padding-top: .5rem; }

.pd-top-fd-xxx-tn {
  padding-top: 1rem; }

.pd-top-fd-xx-tn {
  padding-top: 1.5rem; }

.pd-top-fd-x-tn {
  padding-top: 2rem; }

.pd-top-fd-tn {
  padding-top: 2.5rem; }

.pd-top-fd-xxx-sm {
  padding-top: 3rem; }

.pd-top-fd-xx-sm {
  padding-top: 3.5rem; }

.pd-top-fd-x-sm {
  padding-top: 4rem; }

.pd-top-fd-sm {
  padding-top: 4.5rem; }

.pd-top-fd-md {
  padding-top: 5rem; }

.pd-top-fd-x-md {
  padding-top: 5.5rem; }

.pd-top-fd-xx-md {
  padding-top: 6rem; }

.pd-top-fd-xxx-md {
  padding-top: 6.5rem; }

.pd-top-fd-lg {
  padding-top: 7rem; }

.pd-top-fd-x-lg {
  padding-top: 7.5rem; }

.pd-top-fd-xx-lg {
  padding-top: 8rem; }

.pd-top-fd-xxx-lg {
  padding-top: 8.5rem; }

.pd-top-fd-bg {
  padding-top: 9rem; }

.pd-top-fd-x-bg {
  padding-top: 9.5rem; }

.pd-top-fd-xx-bg {
  padding-top: 10rem; }

.pd-bottom-fl-x-bt {
  padding-bottom: 2%; }

.pd-bottom-fl-bt {
  padding-bottom: 5%; }

.pd-bottom-fl-xxx-tn {
  padding-bottom: 10%; }

.pd-bottom-fl-xx-tn {
  padding-bottom: 15%; }

.pd-bottom-fl-x-tn {
  padding-bottom: 20%; }

.pd-bottom-fl-tn {
  padding-bottom: 25%; }

.pd-bottom-fl-xxx-sm {
  padding-bottom: 30%; }

.pd-bottom-fl-xx-sm {
  padding-bottom: 35%; }

.pd-bottom-fl-x-sm {
  padding-bottom: 40%; }

.pd-bottom-fl-sm {
  padding-bottom: 45%; }

.pd-bottom-fl-md {
  padding-bottom: 50%; }

.pd-bottom-fl-x-md {
  padding-bottom: 55%; }

.pd-bottom-fl-xx-md {
  padding-bottom: 60%; }

.pd-bottom-fl-xxx-md {
  padding-bottom: 65%; }

.pd-bottom-fl-lg {
  padding-bottom: 70%; }

.pd-bottom-fl-x-lg {
  padding-bottom: 75%; }

.pd-bottom-fl-xx-lg {
  padding-bottom: 80%; }

.pd-bottom-fl-xxx-lg {
  padding-bottom: 85%; }

.pd-bottom-fl-bg {
  padding-bottom: 90%; }

.pd-bottom-fl-x-bg {
  padding-bottom: 95%; }

.pd-bottom-fl-xx-bg {
  padding-bottom: 100%; }

.pd-bottom-fd-xx-bt {
  padding-bottom: .1rem; }

.pd-bottom-fd-x-bt {
  padding-bottom: .2rem; }

.pd-bottom-fd-bt {
  padding-bottom: .5rem; }

.pd-bottom-fd-xxx-tn {
  padding-bottom: 1rem; }

.pd-bottom-fd-xx-tn {
  padding-bottom: 1.5rem; }

.pd-bottom-fd-x-tn {
  padding-bottom: 2rem; }

.pd-bottom-fd-tn {
  padding-bottom: 2.5rem; }

.pd-bottom-fd-xxx-sm {
  padding-bottom: 3rem; }

.pd-bottom-fd-xx-sm {
  padding-bottom: 3.5rem; }

.pd-bottom-fd-x-sm {
  padding-bottom: 4rem; }

.pd-bottom-fd-sm {
  padding-bottom: 4.5rem; }

.pd-bottom-fd-md {
  padding-bottom: 5rem; }

.pd-bottom-fd-x-md {
  padding-bottom: 5.5rem; }

.pd-bottom-fd-xx-md {
  padding-bottom: 6rem; }

.pd-bottom-fd-xxx-md {
  padding-bottom: 6.5rem; }

.pd-bottom-fd-lg {
  padding-bottom: 7rem; }

.pd-bottom-fd-x-lg {
  padding-bottom: 7.5rem; }

.pd-bottom-fd-xx-lg {
  padding-bottom: 8rem; }

.pd-bottom-fd-xxx-lg {
  padding-bottom: 8.5rem; }

.pd-bottom-fd-xx-bg {
  padding-bottom: 10rem; }

.pd-bottom-fd-3 {
  padding-bottom: 30rem; }

.mg-fl-x-bt {
  margin: 2%; }

.mg-fl-bt {
  margin: 5%; }

.mg-fl-xxx-tn {
  margin: 10%; }

.mg-fl-xx-tn {
  margin: 15%; }

.mg-fl-x-tn {
  margin: 20%; }

.mg-fl-tn {
  margin: 25%; }

.mg-fl-xxx-sm {
  margin: 30%; }

.mg-fl-xx-sm {
  margin: 35%; }

.mg-fl-x-sm {
  margin: 40%; }

.mg-fl-sm {
  margin: 45%; }

.mg-fl-md {
  margin: 50%; }

.mg-fl-x-md {
  margin: 55%; }

.mg-fl-xx-md {
  margin: 60%; }

.mg-fl-xxx-md {
  margin: 65%; }

.mg-fl-lg {
  margin: 70%; }

.mg-fl-x-lg {
  margin: 75%; }

.mg-fl-xx-lg {
  margin: 80%; }

.mg-fl-xxx-lg {
  margin: 85%; }

.mg-fl-bg {
  margin: 90%; }

.mg-fl-x-bg {
  margin: 95%; }

.mg-fl-xx-bg {
  margin: 100%; }

.mg-fd-x-bt {
  margin: .2rem; }

.mg-fd-bt {
  margin: .5rem; }

.mg-fd-xxx-tn {
  margin: 1rem; }

.mg-fd-xx-tn {
  margin: 1.5rem; }

.mg-fd-x-tn {
  margin: 2rem; }

.mg-fd-tn {
  margin: 2.5rem; }

.mg-fd-xxx-sm {
  margin: 3rem; }

.mg-fd-xx-sm {
  margin: 3.5rem; }

.mg-fd-x-sm {
  margin: 4rem; }

.mg-fd-sm {
  margin: 4.5rem; }

.mg-left-fl-x-bt {
  margin-left: 2%; }

.mg-left-fl-bt {
  margin-left: 5%; }

.mg-left-fl-xxx-tn {
  margin-left: 10%; }

.mg-left-fl-xx-tn {
  margin-left: 15%; }

.mg-left-fl-x-tn {
  margin-left: 20%; }

.mg-left-fl-tn {
  margin-left: 25%; }

.mg-left-fl-xxx-sm {
  margin-left: 30%; }

.mg-left-fl-xx-sm {
  margin-left: 35%; }

.mg-left-fl-x-sm {
  margin-left: 40%; }

.mg-left-fl-sm {
  margin-left: 45%; }

.mg-left-fl-md {
  margin-left: 50%; }

.mg-left-fl-x-md {
  margin-left: 55%; }

.mg-left-fl-xx-md {
  margin-left: 60%; }

.mg-left-fl-xxx-md {
  margin-left: 65%; }

.mg-left-fl-lg {
  margin-left: 70%; }

.mg-left-fl-x-lg {
  margin-left: 75%; }

.mg-left-fl-xx-lg {
  margin-left: 80%; }

.mg-left-fl-xxx-lg {
  margin-left: 85%; }

.mg-left-fl-bg {
  margin-left: 90%; }

.mg-left-fl-x-bg {
  margin-left: 95%; }

.mg-left-fl-xx-bg {
  margin-left: 100%; }

.mg-left-fd-x-bt {
  margin-left: .2rem; }

.mg-left-fd-bt {
  margin-left: .5rem; }

.mg-left-fd-xxx-tn {
  margin-left: 1rem; }

.mg-left-fd-xx-tn {
  margin-left: 1.5rem; }

.mg-left-fd-x-tn {
  margin-left: 2rem; }

.mg-left-fd-tn {
  margin-left: 2.5rem; }

.mg-left-fd-xxx-sm {
  margin-left: 3rem; }

.mg-left-fd-xx-sm {
  margin-left: 3.5rem; }

.mg-left-fd-x-sm {
  margin-left: 4rem; }

.mg-left-fd-sm {
  margin-left: 4.5rem; }

.mg-right-fl-x-bt {
  margin-right: 2%; }

.mg-right-fl-bt {
  margin-right: 5%; }

.mg-right-fl-xxx-tn {
  margin-right: 10%; }

.mg-right-fl-xx-tn {
  margin-right: 15%; }

.mg-right-fl-x-tn {
  margin-right: 20%; }

.mg-right-fl-tn {
  margin-right: 25%; }

.mg-right-fl-xxx-sm {
  margin-right: 30%; }

.mg-right-fl-xx-sm {
  margin-right: 35%; }

.mg-right-fl-x-sm {
  margin-right: 40%; }

.mg-right-fl-sm {
  margin-right: 45%; }

.mg-right-fl-md {
  margin-right: 50%; }

.mg-right-fl-x-md {
  margin-right: 55%; }

.mg-right-fl-xx-md {
  margin-right: 60%; }

.mg-right-fl-xxx-md {
  margin-right: 65%; }

.mg-right-fl-lg {
  margin-right: 70%; }

.mg-right-fl-x-lg {
  margin-right: 75%; }

.mg-right-fl-xx-lg {
  margin-right: 80%; }

.mg-right-fl-xxx-lg {
  margin-right: 85%; }

.mg-right-fl-bg {
  margin-right: 90%; }

.mg-right-fl-x-bg {
  margin-right: 95%; }

.mg-right-fl-xx-bg {
  margin-right: 100%; }

.mg-right-fd-x-bt {
  margin-right: .2rem; }

.mg-right-fd-bt {
  margin-right: .5rem; }

.mg-right-fd-xxx-tn {
  margin-right: 1rem; }

.mg-right-fd-xx-tn {
  margin-right: 1.5rem; }

.mg-right-fd-x-tn {
  margin-right: 2rem; }

.mg-right-fd-tn {
  margin-right: 2.5rem; }

.mg-right-fd-xxx-sm {
  margin-right: 3rem; }

.mg-right-fd-xx-sm {
  margin-right: 3.5rem; }

.mg-right-fd-x-sm {
  margin-right: 4rem; }

.mg-right-fd-sm {
  margin-right: 4.5rem; }

.mg-right-fd-md {
  margin-right: 5rem; }

.mg-right-fd-x-md {
  margin-right: 5.5rem; }

.mg-right-fd-xx-md {
  margin-right: 6rem; }

.mg-right-fd-xxx-md {
  margin-right: 6.5rem; }

.mg-right-fd-lg {
  margin-right: 7rem; }

.mg-right-fd-x-lg {
  margin-right: 7.5rem; }

.mg-right-fd-xx-lg {
  margin-right: 8rem; }

.mg-right-fd-xxx-lg {
  margin-right: 8.5rem; }

.mg-right-fd-bg {
  margin-right: 9rem; }

.mg-right-fd-x-bg {
  margin-right: 9.5rem; }

.mg-right-fd-xx-bg {
  margin-right: 10rem; }

.mg-top-fl-x-bt {
  margin-top: 2%; }

.mg-top-fl-bt {
  margin-top: 5%; }

.mg-top-fl-xxx-tn {
  margin-top: 10%; }

.mg-top-fl-xx-tn {
  margin-top: 15%; }

.mg-top-fl-x-tn {
  margin-top: 20%; }

.mg-top-fl-tn {
  margin-top: 25%; }

.mg-top-fl-xxx-sm {
  margin-top: 30%; }

.mg-top-fl-xx-sm {
  margin-top: 35%; }

.mg-top-fl-x-sm {
  margin-top: 40%; }

.mg-top-fl-sm {
  margin-top: 45%; }

.mg-top-fl-md {
  margin-top: 50%; }

.mg-top-fl-x-md {
  margin-top: 55%; }

.mg-top-fl-xx-md {
  margin-top: 60%; }

.mg-top-fl-xxx-md {
  margin-top: 65%; }

.mg-top-fl-lg {
  margin-top: 70%; }

.mg-top-fl-x-lg {
  margin-top: 75%; }

.mg-top-fl-xx-lg {
  margin-top: 80%; }

.mg-top-fl-xxx-lg {
  margin-top: 85%; }

.mg-top-fl-bg {
  margin-top: 90%; }

.mg-top-fl-x-bg {
  margin-top: 95%; }

.mg-top-fl-xx-bg {
  margin-top: 100%; }

.mg-top-fd-x-bt {
  margin-top: .2rem; }

.mg-top-fd-bt {
  margin-top: .5rem; }

.mg-top-fd-xxx-tn {
  margin-top: 1rem; }

.mg-top-fd-xx-tn {
  margin-top: 1.5rem; }

.mg-top-fd-x-tn {
  margin-top: 2rem; }

.mg-top-fd-tn {
  margin-top: 2.5rem; }

.mg-top-fd-xxx-sm {
  margin-top: 3rem; }

.mg-top-fd-xx-sm {
  margin-top: 3.5rem; }

.mg-top-fd-x-sm {
  margin-top: 4rem; }

.mg-top-fd-sm {
  margin-top: 4.5rem; }

.mg-top-fd-md {
  margin-top: 5rem; }

.mg-top-fd-x-md {
  margin-top: 5.5rem; }

.mg-top-fd-xx-md {
  margin-top: 6rem; }

.mg-top-fd-xxx-md {
  margin-top: 6.5rem; }

.mg-top-fd-lg {
  margin-top: 7rem; }

.mg-top-fd-xx-bg {
  margin-top: 10rem; }

.mg-bottom-fl-x-bt {
  margin-bottom: 2%; }

.mg-bottom-fl-bt {
  margin-bottom: 5%; }

.mg-bottom-fl-xxx-tn {
  margin-bottom: 10%; }

.mg-bottom-fl-xx-tn {
  margin-bottom: 15%; }

.mg-bottom-fl-x-tn {
  margin-bottom: 20%; }

.mg-bottom-fl-tn {
  margin-bottom: 25%; }

.mg-bottom-fl-xxx-sm {
  margin-bottom: 30%; }

.mg-bottom-fl-xx-sm {
  margin-bottom: 35%; }

.mg-bottom-fl-x-sm {
  margin-bottom: 40%; }

.mg-bottom-fl-sm {
  margin-bottom: 45%; }

.mg-bottom-fl-md {
  margin-bottom: 50%; }

.mg-bottom-fl-x-md {
  margin-bottom: 55%; }

.mg-bottom-fl-xx-md {
  margin-bottom: 60%; }

.mg-bottom-fl-xxx-md {
  margin-bottom: 65%; }

.mg-bottom-fl-lg {
  margin-bottom: 70%; }

.mg-bottom-fl-x-lg {
  margin-bottom: 75%; }

.mg-bottom-fl-xx-lg {
  margin-bottom: 80%; }

.mg-bottom-fl-xxx-lg {
  margin-bottom: 85%; }

.mg-bottom-fl-bg {
  margin-bottom: 90%; }

.mg-bottom-fl-x-bg {
  margin-bottom: 95%; }

.mg-bottom-fl-xx-bg {
  margin-bottom: 100%; }

.mg-bottom-fd-x-bt {
  margin-bottom: .2rem; }

.mg-bottom-fd-bt {
  margin-bottom: .5rem; }

.mg-bottom-fd-xxx-tn {
  margin-bottom: 1rem; }

.mg-bottom-fd-xx-tn {
  margin-bottom: 1.5rem; }

.mg-bottom-fd-x-tn {
  margin-bottom: 2rem; }

.mg-bottom-fd-tn {
  margin-bottom: 2.5rem; }

.mg-bottom-fd-xxx-sm {
  margin-bottom: 3rem; }

.mg-bottom-fd-xx-sm {
  margin-bottom: 3.5rem; }

.mg-bottom-fd-x-sm {
  margin-bottom: 4rem; }

.mg-bottom-fd-sm {
  margin-bottom: 4.5rem; }

.mg-bottom-fd-md {
  margin-bottom: 5rem; }

.mg-bottom-fd-x-md {
  margin-bottom: 5.5rem; }

.mg-bottom-fd-xx-md {
  margin-bottom: 6rem; }

.mg-bottom-fd-xxx-md {
  margin-bottom: 6.5rem; }

.mg-bottom-fd-xxx-md {
  margin-bottom: 6.5rem; }

.mg-bottom-fd-lg {
  margin-bottom: 7rem; }

.mg-bottom-fd-x-lg {
  margin-bottom: 7.5rem; }

.mg-bottom-fd-xx-lg {
  margin-bottom: 8rem; }

.mg-bottom-fd-xxx-lg {
  margin-bottom: 8.5rem; }

.mg-bottom-fd-bg {
  margin-bottom: 9rem; }

.mg-bottom-fd-x-bg {
  margin-bottom: 9.5rem; }

.mg-bottom-fd-xx-bg {
  margin-bottom: 10rem; }

.mg-bottom-fd-xxx-bg {
  margin-bottom: 15rem; }

.mg-bottom-fd-hg {
  margin-bottom: 20rem; }

.mg-bottom-fd-x-hg {
  margin-bottom: 25rem; }

.mg-bottom-fd-xx-hg {
  margin-bottom: 30rem; }

.bd-none {
  border: none; }

.bd-fd-dark-xx-bt {
  border: solid #000 .1rem; }

.bd-fd-light-xx-bt {
  border: solid #FFF .1rem; }

.bd-fd-red-xx-bt {
  border: solid #FFF .1rem; }

.bd-fd-primary-xx-bt {
  border: solid #009999 0.1rem; }

.bd-fd-secondary-xx-bt {
  border: solid #cc3333 0.1rem; }

.bd-fd-dashed-secondary-xx-bt {
  border: dashed #cc3333 0.1rem; }

.bd-fd-dark-x-bt {
  border: solid #000 .2rem; }

.bd-fd-light-x-bt {
  border: solid #FFF .2rem; }

.bd-fd-red-x-bt {
  border: solid #FFF .2rem; }

.bd-fd-dark-green-x-bt {
  border: solid 	#096 .2rem; }

.bd-fd-primary-x-bt {
  border: solid #009999 0.2rem; }

.bd-fd-secondary-x-bt {
  border: solid #cc3333 0.2rem; }

.bd-fd-dark-bt {
  border: solid #000 .5rem; }

.bd-fd-light-bt {
  border: solid #FFF .5rem; }

.bd-fd-red-bt {
  border: solid #FFF .5rem; }

.bd-fd-primary-bt {
  border: solid #009999 0.5rem; }

.bd-fd-secondary-bt {
  border: solid #cc3333 0.5rem; }

.bd-fd-dark-green-bt {
  border: solid #cc3333 0.5rem; }

.bd-left-fd-dark-xx-bt {
  border-left: solid #000 .1rem; }

.bd-left-fd-light-xx-bt {
  border-left: solid #FFF .1rem; }

.bd-left-fd-red-xx-bt {
  border-left: solid #FFF .1rem; }

.bd-left-fd-primary-xx-bt {
  border-left: solid #009999 0.1rem; }

.bd-left-fd-secondary-xx-bt {
  border-left: solid #cc3333 0.1rem; }

.bd-left-fd-dark-x-bt {
  border-left: solid #000 .2rem; }

.bd-left-fd-light-x-bt {
  border-left: solid #FFF .2rem; }

.bd-left-fd-red-x-bt {
  border-left: solid #FFF .2rem; }

.bd-left-fd-primary-x-bt {
  border-left: solid #009999 0.2rem; }

.bd-left-fd-secondary-x-bt {
  border-left: solid #cc3333 0.2rem; }

.bd-left-fd-dark-bt {
  border-left: solid #000 .5rem; }

.bd-left-fd-light-bt {
  border-left: solid #FFF .5rem; }

.bd-left-fd-red-bt {
  border-left: solid #FFF .5rem; }

.bd-left-fd-primary-bt {
  border-left: solid #009999 0.5rem; }

.bd-left-fd-secondary-bt {
  border-left: solid #cc3333 0.5rem; }

.bd-left-fd-dark-tn {
  border-left: solid black 2.5rem; }

.bd-right-fd-dark-xx-bt {
  border-right: solid #000 .1rem; }

.bd-right-fd-light-xx-bt {
  border-right: solid #FFF .1rem; }

.bd-right-fd-red-xx-bt {
  border-right: solid #FFF .1rem; }

.bd-right-fd-primary-xx-bt {
  border-right: solid #009999 0.1rem; }

.bd-right-fd-secondary-xx-bt {
  border-right: solid #cc3333 0.1rem; }

.bd-right-fd-dark-x-bt {
  border-right: solid #000 .2rem; }

.bd-right-fd-light-x-bt {
  border-right: solid #FFF .2rem; }

.bd-right-fd-red-x-bt {
  border-right: solid #FFF .2rem; }

.bd-right-fd-primary-x-bt {
  border-right: solid #009999 0.2rem; }

.bd-right-fd-secondary-x-bt {
  border-right: solid #cc3333 0.2rem; }

.bd-right-fd-dark-bt {
  border-right: solid #000 .5rem; }

.bd-right-fd-light-bt {
  border-right: solid #FFF .5rem; }

.bd-right-fd-red-bt {
  border-right: solid #FFF .5rem; }

.bd-right-fd-primary-bt {
  border-right: solid #009999 0.5rem; }

.bd-right-fd-primary-xx-tn {
  border-right: solid #009999 1.5rem; }

.bd-right-fd-secondary-bt {
  border-right: solid #cc3333 0.5rem; }

.bd-bottom-fd-dark-xx-bt {
  border-bottom: solid #000 .1rem; }

.bd-bottom-fd-light-xx-bt {
  border-bottom: solid #FFF .1rem; }

.bd-bottom-fd-red-xx-bt {
  border-bottom: solid #FFF .1rem; }

.bd-bottom-fd-primary-xx-bt {
  border-bottom: solid #009999 0.1rem; }

.bd-bottom-fd-secondary-xx-bt {
  border-bottom: solid #cc3333 0.1rem; }

.bd-bottom-fd-dark-xx-bt {
  border-bottom: solid rgba(0, 0, 0, 0.3) 0.2rem; }

.bd-bottom-fd-light-x-bt {
  border-bottom: solid #FFF .2rem; }

.bd-bottom-fd-red-x-bt {
  border-bottom: solid #FFF .2rem; }

.bd-bottom-fd-primary-x-bt {
  border-bottom: solid #009999 0.2rem; }

.bd-bottom-fd-secondary-x-bt {
  border-bottom: solid #cc3333 0.2rem; }

.bd-bottom-fd-dark-bt {
  border-bottom: solid #000 .5rem; }

.bd-bottom-fd-light-bt {
  border-bottom: solid #FFF .5rem; }

.bd-bottom-fd-red-bt {
  border-bottom: solid #FFF .5rem; }

.bd-bottom-fd-primary-bt {
  border-bottom: solid #009999 0.5rem; }

.bd-bottom-fd-secondary-bt {
  border-bottom: solid #cc3333 0.5rem; }

.bd-bottom-dk-green-xx-bt {
  border-bottom: solid .1rem #096; }

.bd-top-fd-dark-xx-bt {
  border-top: solid #000 .1rem; }

.bd-top-fd-light-xx-bt {
  border-top: solid #FFF .1rem; }

.bd-top-fd-red-xx-bt {
  border-top: solid #FFF .1rem; }

.bd-top-fd-primary-xx-bt {
  border-top: solid #009999 0.1rem; }

.bd-top-fd-secondary-xx-bt {
  border-top: solid #009999 0.1rem; }

.bd-top-fd-dark-x-bt {
  border-top: solid #000 .2rem; }

.bd-top-fd-light-x-bt {
  border-top: solid #FFF .2rem; }

.bd-top-fd-red-x-bt {
  border-top: solid #FFF .2rem; }

.bd-top-fd-primary-x-bt {
  border-top: solid #009999 0.2rem; }

.bd-top-fd-secondary-x-bt {
  border-top: solid #009999 0.2rem; }

.bd-top-fd-dark-bt {
  border-top: solid #000 .5rem; }

.bd-top-fd-light-bt {
  border-top: solid #FFF .5rem; }

.bd-top-fd-red-bt {
  border-top: solid #FFF .5rem; }

.bd-top-fd-primary-bt {
  border-top: solid #009999 0.5rem; }

.bd-top-fd-secondary-bt {
  border-top: solid #009999 0.5rem; }

.bd-top-fd-dk-green-xx-bt {
  border-top: solid .1rem #096; }

.bd-rad-xx-bt {
  border-radius: .1rem; }

.bd-rad-x-bt {
  border-radius: .2rem; }

.bd-rad-bt {
  border-radius: .5rem; }

.bd-rad-xxx-tn {
  border-radius: 1rem; }

.bd-rad-xx-bg {
  border-radius: 10rem; }

.bd-top-left-rad-fd-xx-bt {
  border-top-left-radius: .5rem; }

.bd-bottom-left-rad-fd-xx-bt {
  border-bottom-left-radius: .5rem; }

.bd-top-right-rad-fd-xx-bt {
  border-top-right-radius: .5rem; }

.bd-top-right-rad-fd-xx-bt {
  border-top-right-radius: .5rem; }

.bd-rad-xxx-tn {
  border-radius: 1rem; }

.bd-rad-fl-sm {
  border-radius: 45%; }

.bd-rad-fl-md {
  border-radius: 50%; }

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

.text-align-left {
  text-align: left; }

.text-align-right {
  text-align: right; }

.text-align-jusfity {
  text-align: justify; }

.float-left {
  float: left; }

.pos-rel {
  position: relative; }

.pos-abs {
  position: absolute; }

.pos-fd {
  position: fixed !important; }

.font-wt-bold {
  font-weight: 700; }

.font-wt-bolder {
  font-weight: 900; }

.top-offset-0 {
  top: 0; }

.top-offset-fl-x-bt {
  top: 2%; }

.top-offset-fl-bt {
  top: 5%; }

.top-offset-fl-xxx-tn {
  top: 10%; }

.top-offset-fl-xx-tn {
  top: 15%; }

.top-offset-fl-x-tn {
  top: 20%; }

.top-offset-fl-tn {
  top: 25%; }

.top-offset-fl-xxx-sm {
  top: 30%; }

.top-offset-fl-xx-sm {
  top: 35%; }

.top-offset-fl-x-sm {
  top: 40%; }

.top-offset-fl-sm {
  top: 45%; }

.top-offset-fl-md {
  top: 50%; }

.top-offset-fl-x-md {
  top: 55%; }

.top-offset-fl-xx-md {
  top: 60%; }

.top-offset-fl-xxx-md {
  top: 65%; }

.top-offset-fl-lg {
  top: 70%; }

.top-offset-fl-x-lg {
  top: 75%; }

.top-offset-fl-xx-lg {
  top: 80%; }

.top-offset-fl-xxx-lg {
  top: 85%; }

.top-offset-fl-bg {
  top: 90%; }

.top-offset-fl-x-bg {
  top: 95%; }

.top-offset-fl-xx-bg {
  top: 100%; }

.top-offset-vh-xx-bt {
  top: 1vh; }

.top-offset-vh-x-bt {
  top: 2vh; }

.top-offset-vh-bt {
  top: 5vh; }

.top-offset-vh-xxx-tn {
  top: 10vh; }

.top-offset-vh-xx-tn {
  top: 15vh; }

.top-offset-vh-x-tn {
  top: 20vh; }

.top-offset-vh-tn {
  top: 25vh; }

.top-offset-vh-xxx-sm {
  top: 30vh; }

.top-offset-vh-xx-sm {
  top: 35vh; }

.top-offset-vh-x-sm {
  top: 40vh; }

.top-offset-vh-sm {
  top: 45vh; }

.top-offset-vh-md {
  top: 50vh; }

.top-offset-vh-x-md {
  top: 55vh; }

.top-offset-vh-xx-md {
  top: 60vh; }

.top-offset-vh-xxx-md {
  top: 65vh; }

.top-offset-vh-lg {
  top: 70vh; }

.top-offset-vh-x-lg {
  top: 75vh; }

.top-offset-vh-xx-lg {
  top: 80vh; }

.top-offset-vh-xxx-lg {
  top: 85vh; }

.top-offset-vh-bg {
  top: 90vh; }

.top-offset-vh-x-bg {
  top: 95vh; }

.top-offset-vh-xx-bg {
  top: 100vh; }

.top-offset-fd-x-bt {
  top: .2rem; }

.top-offset-fd-bt {
  top: .5rem; }

.top-offset-fd-xxx-tn {
  top: 1rem; }

.top-offset-fd-xx-tn {
  top: 1.5rem; }

.top-offset-fd-x-tn {
  top: 2rem; }

.top-offset-fd-tn {
  top: 2.5rem; }

.top-offset-fd-xxx-sm {
  top: 3rem; }

.top-offset-fd-xx-sm {
  top: 3.5rem; }

.top-offset-fd-x-sm {
  top: 4rem; }

.top-offset-fd-sm {
  top: 4.5rem; }

.top-offset-fd-md {
  top: 5rem; }

.top-offset-fd-x-md {
  top: 5.5rem; }

.top-offset-fd-xx-md {
  top: 6rem; }

.top-offset-fd-xxx-md {
  top: 6.5rem; }

.top-offset-fd-lg {
  top: 7rem; }

.top-offset-fd-x-lg {
  top: 7.5rem; }

.top-offset-fd-xx-lg {
  top: 8rem; }

.top-offset-fd-xxx-lg {
  top: 8.5rem; }

.top-offset-fd-bg {
  top: 9rem; }

.top-offset-fd-x-bg {
  top: 9.5rem; }

.top-offset-fd-xx-bg {
  top: 10rem; }

.left-offset-0 {
  left: 0; }

.left-offset-fl-x-bt {
  left: 2%; }

.left-offset-fl-bt {
  left: 5%; }

.left-offset-fl-xxx-tn {
  left: 10%; }

.left-offset-fl-xx-tn {
  left: 15%; }

.left-offset-fl-x-tn {
  left: 20%; }

.left-offset-fl-tn {
  left: 25%; }

.left-offset-fl-xxx-sm {
  left: 30%; }

.left-offset-fl-xx-sm {
  left: 35%; }

.left-offset-fl-x-sm {
  left: 40%; }

.left-offset-fl-sm {
  left: 45%; }

.left-offset-fl-md {
  left: 50%; }

.left-offset-fl-x-md {
  left: 55%; }

.left-offset-fl-xx-md {
  left: 60%; }

.left-offset-fl-xxx-md {
  left: 65%; }

.left-offset-fl-lg {
  left: 70%; }

.left-offset-fl-x-lg {
  left: 75%; }

.left-offset-fl-xx-lg {
  left: 80%; }

.left-offset-fl-xxx-lg {
  left: 85%; }

.left-offset-fl-bg {
  left: 90%; }

.left-offset-fl-x-bg {
  left: 95%; }

.left-offset-fl-xx-bg {
  left: 100%; }

.left-offset-fd-x-bt {
  left: .2rem; }

.left-offset-fd-bt {
  left: .5rem; }

.left-offset-fd-xxx-tn {
  left: 1rem; }

.left-offset-fd-xx-tn {
  left: 1.5rem; }

.left-offset-fd-x-tn {
  left: 2rem; }

.left-offset-fd-tn {
  left: 2.5rem; }

.left-offset-fd-xxx-sm {
  left: 3rem; }

.left-offset-fd-xx-sm {
  left: 3.5rem; }

.left-offset-fd-x-sm {
  left: 4rem; }

.left-offset-fd-sm {
  left: 4.5rem; }

.left-offset-fd-md {
  left: 5rem; }

.left-offset-fd-x-md {
  left: 5.5rem; }

.left-offset-fd-xx-md {
  left: 6rem; }

.left-offset-fd-xxx-md {
  left: 6.5rem; }

.left-offset-fd-lg {
  left: 7rem; }

.left-offset-fd-x-lg {
  left: 7.5rem; }

.left-offset-fd-xx-lg {
  left: 8rem; }

.left-offset-fd-xxx-lg {
  left: 8.5rem; }

.left-offset-fd-bg {
  left: 9rem; }

.left-offset-fd-x-bg {
  left: 9.5rem; }

.left-offset-fd-xx-bg {
  left: 10rem; }

.bottom-offset-0 {
  bottom: 0; }

.bottom-offset-fl-x-bt {
  bottom: 2%; }

.bottom-offset-fl-bt {
  bottom: 5%; }

.bottom-offset-fl-xxx-tn {
  bottom: 10%; }

.bottom-offset-fl-xx-tn {
  bottom: 15%; }

.bottom-offset-fl-x-tn {
  bottom: 20%; }

.bottom-offset-fl-tn {
  bottom: 25%; }

.bottom-offset-fl-xxx-sm {
  bottom: 30%; }

.bottom-offset-fl-xx-sm {
  bottom: 35%; }

.bottom-offset-fl-x-sm {
  bottom: 40%; }

.bottom-offset-fl-sm {
  bottom: 45%; }

.bottom-offset-fl-md {
  bottom: 50%; }

.bottom-offset-fl-x-md {
  bottom: 55%; }

.bottom-offset-fl-xx-md {
  bottom: 60%; }

.bottom-offset-fl-xxx-md {
  bottom: 65%; }

.bottom-offset-fl-lg {
  bottom: 70%; }

.bottom-offset-fl-x-lg {
  bottom: 75%; }

.bottom-offset-fl-xx-lg {
  bottom: 80%; }

.bottom-offset-fl-xxx-lg {
  bottom: 85%; }

.bottom-offset-fl-bg {
  bottom: 90%; }

.bottom-offset-fl-x-bg {
  bottom: 95%; }

.bottom-offset-fl-xx-bg {
  bottom: 100%; }

.bottom-offset-n-fl-x-bt {
  bottom: -2%; }

.bottom-offset-n-fl-x-tn {
  bottom: -20%; }

.right-offset-0 {
  right: 0; }

.right-offset-fl-x-bt {
  right: 1%; }

.right-offset-fl-x-bt {
  right: 2%; }

.right-offset-fl-bt {
  right: 5%; }

.right-offset-fl-xxx-tn {
  right: 10%; }

.right-offset-fl-xx-tn {
  right: 15%; }

.right-offset-fl-x-tn {
  right: 20%; }

.right-offset-fl-tn {
  right: 25%; }

.align-center {
  left: 50%;
  top: 50%;
  transform: translateX(-50%); }

.align-top-center {
  top: 50%;
  transform: translateY(-50%); }

.align-left-center {
  left: 50%;
  transform: translateX(-50%); }

.z-index {
  z-index: 1000; }

.z-index-md {
  z-index: 500; }

.fixed-bar {
  top: 91vh;
  position: fixed; }

.cursor-pointer {
  cursor: pointer; }

.font-style-i {
  font-style: italic; }

.mg-auto {
  margin-left: auto;
  margin-right: auto; }

.bx-shadow-primary {
  box-shadow: 0 1rem 2rem rgba(0, 153, 153, 0.5);
  transform: translateY(-0.3rem); }

.bx-shadow-green {
  box-shadow: 0 1rem 2rem rgba(0, 153, 102, 0.5);
  transform: translateY(-0.3rem); }

.bx-shadow-dark {
  /*box-shadow: 0 1rem 2rem  rgba(0,0,0,0.05);
	transform: translateY(-.3rem);*/
  -webkit-box-shadow: -10px 10px 20px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: -10px 10px 20px 1px rgba(0, 0, 0, 0.2);
  box-shadow: -10px 10px 20px 1px rgba(0, 0, 0, 0.2); }

.bx-shadow-a {
  -webkit-box-shadow: -10px 10px 20px 5px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: -10px 10px 20px 5px rgba(0, 0, 0, 0.06);
  box-shadow: -10px 10px 20px 5px rgba(0, 0, 0, 0.06); }

.dots {
  width: .2rem;
  padding: .3rem; }

.hr-size-fd-hi-2 {
  width: 50rem; }

.bx-raised {
  -webkit-box-shadow: -15px 10px 25px 5px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: -15px 10px 25px 5px rgba(0, 0, 0, 0.04);
  box-shadow: -15px 10px 25px 5px rgba(0, 0, 0, 0.04); }

.bx-raised-red {
  -webkit-box-shadow: -5px 10px 25px 2px rgba(226, 17, 17, 0.07);
  -moz-box-shadow: -5px 10px 25px 2px rgba(238, 17, 17, 0.07);
  box-shadow: -5px 10px 25px 2px rgba(236, 10, 10, 0.07); }

.bx-raised-1 {
  -webkit-box-shadow: -15px 10px 25px 5px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: -15px 10px 25px 5px rgba(0, 0, 0, 0.04);
  box-shadow: -5px 10px 5px 2px rgba(0, 0, 0, 0.04); }

.bx-raised-rt {
  -webkit-box-shadow: 13px -4px 5px -7px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 13px -4px 5px -7px rgba(0, 0, 0, 0.04);
  box-shadow: 13px -4px 5px -7px rgba(0, 0, 0, 0.04); }

.bx-raised-lt {
  -webkit-box-shadow: -4px 0px 5px 0px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: -4px 0px 5px 0px rgba(0, 0, 0, 0.04);
  box-shadow: -4px 0px 5px 0px rgba(0, 0, 0, 0.04); }

.line-vt-size-fd-bt {
  height: .2rem; }

.slant-40d {
  height: 150px;
  width: 1rem;
  margin-bottom: 2em;
  box-shadow: -5px 10px 5px 2px rgba(0, 0, 0, 0.04);
  transform: rotate(40deg); }

.slant-anti-40d {
  transform: rotate(-40deg);
  width: 10rem; }

.slant-anti-5d {
  transform: rotate(-15deg); }

.moon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 15px 15px 0 0 red; }

.half-circle {
  border-bottom-right-radius: 90px;
  border-top-right-radius: 90px;
  height: 90px;
  width: 45px; }

.half-circle-lt {
  border-bottom-left-radius: 200px;
  border-top-left-radius: 200px;
  height: 200px;
  width: 100px; }

.half-circle-rt {
  border-bottom-right-radius: 200px;
  border-top-right-radius: 200px;
  height: 200px;
  width: 100px; }

.teardrop {
  height: 480px;
  padding: 50px 30px 80px 30px;
  width: 480px;
  border-top-left-radius: 240px;
  border-bottom-left-radius: 240px;
  border-bottom-right-radius: 240px;
  display: block; }

.bar-fd-md {
  height: 2rem;
  width: 5rem; }

.bar-fd-md-primary {
  height: .2rem;
  width: 4rem;
  content: "";
  background-color: #009999; }

.bar-fd-md-secondary {
  height: .2rem;
  width: 4rem;
  background-color: #cc3333;
  content: ""; }

.bar-fd-xx-md-primary {
  height: .2rem;
  width: 6rem;
  background-color: #009999;
  content: ""; }

.circle {
  border-radius: 50%; }

.circle-fd-x-bt {
  height: .2rem;
  width: .2rem; }

.circle-fd-bt {
  height: .5rem;
  width: .5rem; }

.circle-fd-xxx-tn {
  height: 1rem;
  width: 1rem; }

.circle-fd-x-bt {
  height: .2rem;
  width: .2rem; }

.circle-fd-xx-tn {
  height: 1.5rem;
  width: 1.5rem; }

.circle-fd-x-tn {
  height: 2rem;
  width: 2rem; }

.circle-fd-tn {
  height: 2.5rem;
  width: 2.5rem; }

.circle-fd-xxx-sm {
  height: 3rem;
  width: 3rem; }

.circle-fd-xx-sm {
  height: 3.5rem;
  width: 3.5rem; }

.circle-fd-x-sm {
  height: 4rem;
  width: 4rem; }

.circle-fd-sm {
  height: 4.5rem;
  width: 4.5rem; }

.circle-fd-md {
  height: 5rem;
  width: 5rem; }

.scrollHeight {
  height: 35rem;
  overflow-y: scroll; }

.accordion {
  padding-top: 1%;
  height: 2rem; }
  .accordion__text, .accordion__btn {
    float: left; }
  .accordion__text {
    position: relative;
    padding-top: .5%;
    width: 85%; }
    .accordion__text-node {
      width: 100%;
      text-align: center; }
  .accordion__btn {
    position: relative;
    width: 15%; }
    .accordion__btn--exp-con {
      background-color: #FFF;
      border: none;
      height: 3.5rem;
      position: absolute;
      width: 5rem;
      display: block;
      color: #cc3333; }
      .accordion__btn--exp-con:hover {
        cursor: pointer; }
  .accordion--pos-rel {
    position: relative; }
  .accordion--pos-abs {
    position: abs; }
  .accordion--pos-fd {
    position: fixed; }
  .accordion--bg-primary {
    background-color: #009999; }
  .accordion--bg-primary-lt {
    background-color: rgba(0, 153, 153, 0.5); }
  .accordion--bg-primary-lta {
    background-color: rgba(0, 153, 153, 0.2); }
  .accordion--bg-secondary {
    background-color: #cc3333; }
  .accordion--hr-size-fl-x-bt {
    width: 2%; }
  .accordion--hr-size-fl-bt {
    width: 5%; }
  .accordion--hr-size-fl-xxx-tn {
    width: 10%; }
  .accordion--hr-size-fl-xx-tn {
    width: 15%; }
  .accordion--hr-size-fl-x-tn {
    width: 20%; }
  .accordion--hr-size-fl-tn {
    width: 25%; }
  .accordion--hr-size-fl-xxx-sm {
    width: 30%; }
  .accordion--hr-size-fl-xx-sm {
    width: 35%; }
  .accordion--hr-size-fl-x-sm {
    width: 40%; }
  .accordion--hr-size-fl-sm {
    width: 45%; }
  .accordion--hr-size-fl-md {
    width: 50%; }
  .accordion--hr-size-fl-x-md {
    width: 55%; }
  .accordion--hr-size-fl-xx-md {
    width: 60%; }
  .accordion--hr-size-fl-xxx-md {
    width: 65%; }
  .accordion--hr-size-fl-lg {
    width: 70%; }
  .accordion--hr-size-fl-x-lg {
    width: 75%; }
  .accordion--hr-size-fl-xx-lg {
    width: 80%; }
  .accordion--hr-size-fl-xxx-lg {
    width: 85%; }
  .accordion--hr-size-fl-bg {
    width: 90%; }
  .accordion--hr-size-fl-x-bg {
    width: 95%; }
  .accordion--hr-size-fl-xx-bg {
    width: 100%; }
  .accordion--size-fd-x-bt {
    width: .2rem; }
  .accordion--size-fd-bt {
    width: .5rem; }
  .accordion--size-fd-xxx-tn {
    width: 1rem; }
  .accordion--size-fd-xx-tn {
    width: 1.5rem; }
  .accordion--size-fd-x-tn {
    width: 2rem; }
  .accordion--size-fd-tn {
    width: 2.5rem; }
  .accordion--size-fd-xxx-sm {
    width: 3rem; }
  .accordion--size-fd-xx-sm {
    width: 3.5rem; }
  .accordion--size-fd-x-sm {
    width: 4rem; }
  .accordion--size-fd-sm {
    width: 4.5rem; }
  .accordion--size-fd-md {
    width: 5rem; }
  .accordion--size-fl-x-md {
    width: 5.5rem; }
  .accordion--size-fd-xx-md {
    width: 6rem; }
  .accordion--size-fd-xxx-md {
    width: 6.5rem; }
  .accordion--size-fd-lg {
    width: 7rem; }
  .accordion--size-fd-x-lg {
    width: 7.5rem; }
  .accordion--size-fd-xx-lg {
    width: 8rem; }
  .accordion--size-fd-xxx-lg {
    width: 8.5rem; }
  .accordion--size-fd-bg {
    width: 9rem; }
  .accordion--size-fd-x-bg {
    width: 9.5rem; }
  .accordion--size-fd-xx-bg {
    width: 10rem; }
  .accordion--vt-size-fd-x-bt {
    height: 2rem; }
  .accordion--vt-size-fd-bt {
    height: 5rem; }
  .accordion--vt-size-fd-xxx-tn {
    height: 10rem; }
  .accordion--vt-size-fd-xx-tn {
    height: 15rem; }
  .accordion--vt-size-fd-x-tn {
    height: 20rem; }
  .accordion--vt-size-fd-tn {
    height: 25rem; }
  .accordion--vt-size-fd-xxx-sm {
    height: 30rem; }
  .accordion--vt-size-fd-xx-sm {
    height: 35rem; }
  .accordion--vt-size-fd-x-sm {
    height: 40rem; }
  .accordion--vt-size-fd-sm {
    height: 45rem; }
  .accordion--vt-size-fd-md {
    height: 50rem; }
  .accordion--vt-size-fl-x-md {
    height: 55rem; }
  .accordion--vt-size-fd-xx-md {
    height: 60rem; }
  .accordion--vt-size-fd-xxx-md {
    height: 65rem; }
  .accordion--vt-size-fd-lg {
    height: 70rem; }
  .accordion--vt-size-fd-x-lg {
    height: 75rem; }
  .accordion--vt-size-fd-xx-lg {
    height: 80rem; }
  .accordion--vt-size-fd-xxx-lg {
    height: 85rem; }
  .accordion--vt-size-fd-bg {
    height: 90rem; }

.avatar--size {
  width: 20rem; }

.avatar--pos-abs {
  left: 10%;
  top: 45%;
  position: absolute; }

.avatar--pos-rel {
  left: 0;
  top: 0;
  position: relative; }

.avatar__fig {
  overflow: hidden;
  transition: all .4s; }

.avatar__fig--bd-rad-fd-x-bt {
  border-radius: .2rem; }

.avatar__fig--bd-rad-fd-xxx-tn {
  border-radius: 1rem; }

.avatar__fig--bd-rad-fd-x-tn {
  border-radius: 2rem; }

.avatar__fig--bd-rad-fl-md {
  border-radius: 50%; }

.avatar__fig--bd-fd-light-xx-bt {
  border: solid 1px #FFF; }

.avatar__fig--bd-fd-secondary-xx-bt {
  border: solid 1px #cc3333; }

.avatar__fig--bd-fd-light-x-bt {
  border: solid 2px #FFF; }

.avatar__fig--bd-fd-light-xx-lg {
  border: solid 8px #FFF; }

.avatar__fig--bd-fd-seconday-xx-lg {
  border: solid 8px #cc3333; }

.avatar__fig--zoomout:hover {
  transform: scale(1.4);
  overflow: hidden; }

.avatar__fig--hr-size-fd-xxx-sm {
  width: 3rem;
  height: 3rem; }

.avatar__fig--hr-size-fd-xx-sm {
  width: 3.5rem;
  height: 3.5rem; }

.avatar__fig--hr-size-fd-x-sm {
  width: 4rem;
  height: 4rem; }

.avatar__fig--hr-size-fd-md {
  width: 5rem;
  height: 5rem; }

.avatar__fig--hr-size-fd-xx-md {
  width: 6rem;
  height: 6rem; }

.avatar__fig--hr-size-fd-xx-lg {
  width: 8rem;
  height: 8rem; }

.avatar__fig--hr-size-fd-bg {
  width: 9rem;
  height: 9rem; }

.avatar__fig--hr-size-fd-hi-x-bt {
  width: 12rem;
  height: 12rem; }

.avatar__fig--hr-size-fd-hi-xx-tn {
  width: 15rem;
  height: 15rem; }

.avatar__fig--hr-size-fd-hi-xx-bg {
  width: 20rem;
  height: 20rem; }

.avatar__fig--bg-secondary {
  background-color: #cc3333; }

.avatar__pik--bd-rad-fd-x-bt {
  border-radius: .2rem; }

.avatar__pik--bd-rad-fd-x-tn {
  border-radius: 2rem; }

.avatar__pik--bd-rad-fl-md {
  border-radius: 50%; }

.avatar__pik--hr-size-fd-xxx-sm {
  width: 3rem;
  height: 3rem; }

.avatar__pik--hr-size-fd-xx-sm {
  width: 3.5rem;
  height: 3.5rem; }

.avatar__pik--hr-size-fd-x-sm {
  width: 4rem;
  height: 4rem; }

.avatar__pik--hr-size-fd-md {
  width: 5rem;
  height: 5rem; }

.avatar__pik--hr-size-fd-xx-md {
  width: 6rem;
  height: 6rem; }

.avatar__pik--hr-size-fd-bg {
  width: 9rem;
  height: 9rem; }

.avatar__pik--hr-size-fd-hi-x-bt {
  width: 12rem;
  height: 12rem; }

.avatar__pik--hr-size-fd-hi-xx-bg {
  width: 20rem;
  height: 20rem; }

.avatar__title {
  text-align: center;
  border-radius: .2rem; }

.avatar__title--bg-secondary {
  background-color: #cc3333; }

.avatar__title--fg-color {
  color: #FFF; }

.avatar__title--pos-abs-right {
  position: absolute;
  top: 1rem;
  font-size: 1.3rem;
  width: 11rem;
  left: 20%; }

.avatar__title--pos-abs-tp-right {
  position: absolute;
  top: 6rem;
  font-size: 1.5rem;
  left: 20%; }

.avatar__title--pos-abs-tp-right-xsmall {
  position: absolute;
  top: 5rem;
  font-size: 1.5rem;
  left: 18%; }

.avatar__title--position-rel-right {
  position: relative; }

.avatar__info {
  width: 60%; }

.avatar__info--pos-tp-right {
  position: absolute;
  top: 10rem;
  font-size: 1.5rem;
  left: 20%; }

.avatar__info--pos-tp-right-xsmall {
  position: absolute;
  top: 8rem;
  font-size: 1.5rem;
  left: 20%; }

.box {
  padding-left: 2%;
  margin-bottom: .6rem; }
  .box__title {
    font-size: 1.8rem;
    margin-bottom: 1rem; }
  .box__text {
    font-size: 1.3rem; }
  .box--hr-size-fd-xx-bg {
    width: 10rem; }
  .box--hr-size-fd-hi-md {
    width: 15rem; }
  .box--hr-size-fd-hi-xx-bg {
    width: 20rem; }
  .box--hr-size-fd-hi-2-md {
    width: 25rem; }
  .box--hr-size-fl-x-bt {
    width: 2%; }
  .box--hr-size-fl-bt {
    width: 5%; }
  .box--hr-size-fl-xxx-tn {
    width: 10%; }
  .box--hr-size-fl-xx-tn {
    width: 15%; }
  .box--hr-size-fl-x-tn {
    width: 20%; }
  .box--hr-size-fl-tn {
    width: 25%; }
  .box--hr-size-fl-xxx-sm {
    width: 30%; }
  .box--hr-size-fl-xx-sm {
    width: 35%; }
  .box--hr-size-fl-x-sm {
    width: 40%; }
  .box--hr-size-fl-sm {
    width: 45%; }
  .box--hr-size-fl-md {
    width: 50%; }
  .box--hr-size-fl-x-md {
    width: 55%; }
  .box--hr-size-fl-xx-md {
    width: 60%; }
  .box--hr-size-fl-xxx-md {
    width: 65%; }
  .box--hr-size-fl-lg {
    width: 70%; }
  .box--hr-size-fl-x-lg {
    width: 75%; }
  .box--hr-size-fl-xx-lg {
    width: 80%; }
  .box--hr-size-fl-xxx-lg {
    width: 85%; }
  .box--hr-size-fl-bg {
    width: 90%; }
  .box--hr-size-fl-x-bg {
    width: 95%; }
  .box--hr-size-fl-xx-bg {
    width: 100%; }
  .box--left-offset-0 {
    left: 0; }
  .box--left-offset-fl-x-bt {
    left: 2%; }
  .box--left-offset-fl-bt {
    left: 5%; }
  .box--left-offset-fl-xxx-tn {
    left: 10%; }
  .box--left-offset-fl-xx-tn {
    left: 15%; }
  .box--left-offset-fl-x-tn {
    left: 20%; }
  .box--left-offset-fl-tn {
    left: 25%; }
  .box--left-offset-fl-xxx-sm {
    left: 30%; }
  .box--left-offset-fl-xx-sm {
    left: 35%; }
  .box--left-offset-fl-x-sm {
    left: 40%; }
  .box--left-offset-fl-sm {
    left: 45%; }
  .box--left-offset-fl-md {
    left: 50%; }
  .box--left-offset-fl-x-md {
    left: 55%; }
  .box--left-offset-fl-xx-md {
    left: 60%; }
  .box--left-offset-fl-xxx-md {
    left: 65%; }
  .box--left-offset-fl-lg {
    left: 70%; }
  .box--left-offset-fl-x-lg {
    left: 75%; }
  .box--left-offset-fl-xx-lg {
    left: 80%; }
  .box--bd-fd-primary-xx-bt {
    border: solid 0.1rem #009999; }
  .box--bd-left-fd-secondary-xx-bt {
    border-left: solid 0.1rem #cc3333; }
  .box--bd-fd-secondary-xx-bt {
    border: solid 0.1rem #cc3333; }
  .box--bd-0 {
    border: none; }
  .box--bd-rad-fd-xx-bt {
    border-radius: .2rem; }
  .box--bg-primary {
    background-color: #009999; }
  .box--bg-primary-lt {
    background-color: rgba(0, 153, 153, 0.8); }
  .box--bg-secondary {
    background-color: #cc3333; }
  .box--bg-light-lt {
    background-color: rgba(255, 255, 255, 0.8); }
  .box--vt-size-fd-hi-md {
    height: 15rem; }
  .box--pos-rel {
    position: relative; }
  .box--pos-abs {
    position: absolute;
    left: 0;
    top: 86.5%; }

.btn {
  padding: 1rem 2rem;
  border: none;
  transition: transform 1s; }

.btn--size-xx-tiny {
  width: 5%; }

.btn--size-x-tiny {
  width: 10%; }

.btn--size-tiny {
  width: 15%; }

.btn--size-2xsmall {
  width: 20%; }

.btn--size-xsmall {
  width: 30%; }

.btn--size-small {
  width: 40%; }

.btn--size-medium {
  width: 50%; }

.btn--size-xmedium {
  width: 80%; }

.btn--size-large {
  width: 100%; }

.btn--size-3xsmall {
  width: 20%; }

.btn--font-size-3xsmall {
  font-size: .5rem; }

.btn--font-size-2xsmall {
  font-size: 1rem; }

.btn--font-size-xsmall {
  font-size: 1.5rem; }

.btn--font-size-small {
  font-size: 2rem; }

.btn--pos-rel {
  position: relative; }

.btn--pos-abs {
  position: absolute; }

.btn--left-offset-2xsmall {
  left: 20%; }

.btn--left-offset-xsmall {
  left: 30%; }

.btn--left-offset-small {
  left: 40%; }

.btn--left-offset-medium {
  left: 50%; }

.btn--left-offset-large {
  left: 82.5%; }

.btn--top-offset-small {
  top: -.2rem; }

.btn--right-offset-default {
  right: 0; }

.btn--d-block {
  display: block; }

.btn--d-inlineblock {
  display: inline-block; }

.btn--border-rad-small {
  border-radius: .5rem; }

.btn:hover {
  box-shadow: 0 1rem 2rem rgba(0, 153, 153, 0.5);
  cursor: pointer;
  transform: translateY(-0.3rem); }

.btn:active {
  box-shadow: 0 1rem 2rem rgba(0, 153, 153, 0.3); }

.btn--secondary {
  background-color: #cc3333;
  color: #FFF; }

.btn--primary {
  background-color: #009999;
  color: #FFF; }

.btn--primary-light {
  background-color: rgba(0, 153, 153, 0.1); }

.btn--white {
  background-color: #FFF;
  color: #096; }

.btn::after {
  content: "";
  display: inline-block;
  border-radius: 10rem;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  transition: all 1s;
  left: 0;
  z-index: -1; }

.btn--white::after {
  background-color: #FFF; }

.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0; }

.btn--animated {
  animation-name: moveInBottom;
  animation-duration: 3s;
  animation-timing-function: ease-out;
  animation-delay: .75s;
  animation-fill-mode: backwards; }

.collapsable {
  z-index: 1000;
  padding-top: 2rem !important;
  transform: scale(0);
  transition: all .5s; }
  .collapsable:hover {
    transition: all 1s; }
  .collapsable--top-offset-fd-x-bt {
    top: .2rem; }
  .collapsable--top-offset-fd-bt {
    top: .5rem; }
  .collapsable--top-offset-fd-xxx-tn {
    top: 1rem; }
  .collapsable--top-offset-fd-xx-tn {
    top: 1.5rem; }
  .collapsable--top-offset-fd-x-tn {
    top: 2rem; }
  .collapsable--top-offset-fd-tn {
    top: 2.5rem; }
  .collapsable--top-offset-fd-xxx-sm {
    top: 3rem; }
  .collapsable--top-offset-fd-xx-sm {
    top: 3.5rem; }
  .collapsable--top-offset-fd-x-sm {
    top: 4rem; }
  .collapsable--top-offset-fd-sm {
    top: 4.5rem; }
  .collapsable--top-offset-fd-md {
    top: 5rem; }
  .collapsable--top-offset-fl-x-md {
    top: 5.5rem; }
  .collapsable--top-offset-fd-xx-md {
    top: 6rem; }
  .collapsable--top-offset-fd-xxx-md {
    top: 6.5rem; }
  .collapsable--top-offset-fd-lg {
    top: 7rem; }
  .collapsable--top-offset-fd-x-lg {
    top: 7.5rem; }
  .collapsable--top-offset-fd-xx-lg {
    top: 8rem; }
  .collapsable--top-offset-fd-xxx-lg {
    top: 8.5rem; }
  .collapsable--top-offset-fd-bg {
    top: 9rem; }
  .collapsable--top-offset-fd-x-bg {
    top: 9.5rem; }
  .collapsable--top-offset-fd-xx-bg {
    top: 10rem; }
  .collapsable--right-offset-fl-x-bt {
    right: 2%; }
  .collapsable--right-offset-fl-bt {
    right: 5%; }
  .collapsable--right-offset-fl-xxx-tn {
    right: 10%; }
  .collapsable--right-offset-fl-xx-tn {
    right: 15%; }
  .collapsable--right-offset-fl-x-tn {
    right: 20%; }
  .collapsable--right-offset-fl-tn {
    right: 25%; }
  .collapsable--right-offset-fl-xxx-sm {
    right: 30%; }
  .collapsable--right-offset-fl-xx-sm {
    right: 35%; }
  .collapsable--right-offset-fl-x-sm {
    right: 40%; }
  .collapsable--right-offset-fl-sm {
    right: 45%; }
  .collapsable--right-offset-fl-md {
    right: 50%; }
  .collapsable--right-offset-fl-x-md {
    right: 55%; }
  .collapsable--right-offset-fl-xx-md {
    right: 60%; }
  .collapsable--right-offset-fl-xxx-md {
    right: 65%; }
  .collapsable--right-offset-fl-lg {
    right: 70%; }
  .collapsable--right-offset-fl-x-lg {
    right: 75%; }
  .collapsable--right-offset-fl-xx-lg {
    right: 80%; }
  .collapsable--right-offset-fl-xxx-lg {
    right: 85%; }
  .collapsable--right-offset-fl-bg {
    right: 90%; }
  .collapsable--right-offset-fl-x-bg {
    right: 95%; }
  .collapsable--right-offset-fl-xx-bg {
    right: 100%; }
  .collapsable--hr-size-fl-x-bt {
    width: 2%; }
  .collapsable--hr-size-fl-bt {
    width: 5%; }
  .collapsable--hr-size-fl-xxx-tn {
    width: 10%; }
  .collapsable--hr-size-fl-xx-tn {
    width: 15%; }
  .collapsable--hr-size-fl-x-tn {
    width: 20%; }
  .collapsable--hr-size-fl-tn {
    width: 25%; }
  .collapsable--hr-size-fl-xxx-sm {
    width: 30%; }
  .collapsable--hr-size-fl-xx-sm {
    width: 35%; }
  .collapsable--hr-size-fl-x-sm {
    width: 40%; }
  .collapsable--hr-size-fl-sm {
    width: 45%; }
  .collapsable--hr-size-fl-md {
    width: 50%; }
  .collapsable--hr-size-fl-x-md {
    width: 55%; }
  .collapsable--hr-size-fl-xx-md {
    width: 60%; }
  .collapsable--hr-size-fl-xxx-md {
    width: 65%; }
  .collapsable--hr-size-fl-lg {
    width: 70%; }
  .collapsable--hr-size-fl-x-lg {
    width: 75%; }
  .collapsable--hr-size-fl-xx-lg {
    width: 80%; }
  .collapsable--hr-size-fl-xxx-lg {
    width: 85%; }
  .collapsable--hr-size-fl-bg {
    width: 90%; }
  .collapsable--hr-size-fl-x-bg {
    width: 95%; }
  .collapsable--hr-size-fl-xx-bg {
    width: 100%; }
  .collapsable--bg-primary {
    background-color: #009999; }
  .collapsable--bg-primary-lta {
    background-color: rgba(0, 153, 153, 0.3); }
  .collapsable--bg-secondary {
    background-color: #cc3333; }
  .collapsable--bg-dark {
    background-color: #000; }
  .collapsable--bg-light {
    background-color: #FFF; }

.card {
  padding-left: 2%;
  margin-bottom: .6rem;
  -webkit-box-shadow: -10px 10px 20px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: -10px 10px 20px 1px rgba(0, 0, 0, 0.2);
  box-shadow: -10px 10px 20px 1px rgba(0, 0, 0, 0.2);
  width: 30rem;
  height: 8rem;
  padding-top: 1.5rem;
  padding-left: 1rem;
  margin-bottom: 1rem;
  cursor: pointer; }
  .card:hover {
    transform: scale(1.01);
    transition-property: width;
    transition-duration: .2s; }
  .card__avatar {
    width: 20%;
    display: inline-block; }
    .card__avatar__pik {
      width: 4rem;
      height: 4rem;
      border-radius: 50%; }
    .card__avatar__fig {
      width: 4rem;
      height: 4rem;
      overflow: hidden;
      display: block; }
  .card__text {
    width: 80%;
    display: inline-block; }
    .card__text__info {
      color: #383535;
      display: inline-block;
      width: 65%; }
      .card__text__info__title {
        margin-bottom: 1rem; }
      .card__text__info__message {
        font-size: 1.2rem; }
    .card__text__time {
      display: inline-block;
      font-size: 1.1rem;
      width: 30%; }
  .card--hr-size-fd-xx-bg {
    width: 10rem; }
  .card--hr-size-fd-hi-md {
    width: 15rem; }
  .card--hr-size-fd-hi-xx-bg {
    width: 20rem; }
  .card--hr-size-fd-hi-2-md {
    width: 25rem; }
  .card--hr-size-fl-x-bt {
    width: 2%; }
  .card--hr-size-fl-xxx-tn {
    width: 10%; }
  .card--hr-size-fl-xxx-sm {
    width: 30%; }
  .card--hr-size-fl-md {
    width: 50%; }
  .card--hr-size-fl-x-lg {
    width: 75%; }
  .card--hr-size-fl-xx-bg {
    width: 100%; }
  .card--left-offset-0 {
    left: 0; }
  .card--left-offset-fl-x-bt {
    left: 2%; }
  .card--left-offset-fl-xxx-tn {
    left: 10%; }
  .card--left-offset-fl-xxx-sm {
    left: 30%; }
  .card--left-offset-fl-md {
    left: 50%; }
  .card--left-offset-fl-lg {
    left: 70%; }
  .card--left-offset-fl-x-lg {
    left: 75%; }
  .card--left-offset-fl-xx-bg {
    left: 100%; }
  .card--bd-fd-primary-xx-bt {
    border: solid 0.1rem #009999; }
  .card--bd-left-fd-secondary-xx-bt {
    border-left: solid 0.1rem #cc3333; }
  .card--bd-fd-secondary-xx-bt {
    border: solid 0.1rem #cc3333; }
  .card--bd-0 {
    border: none; }
  .card--bd-rad-fd-xx-bt {
    border-radius: .2rem; }
  .card--bg-primary {
    background-color: #009999; }
  .card--bg-primary-lt {
    background-color: rgba(0, 153, 153, 0.8); }
  .card--bg-secondary {
    background-color: #cc3333; }
  .card--bg-light-lt {
    background-color: rgba(255, 255, 255, 0.8); }
  .card--vt-size-fd-hi-md {
    height: 15rem; }
  .card--pos-rel {
    position: relative; }
  .card--pos-abs {
    position: absolute;
    left: 0;
    top: 86.5%; }

.contentbox {
  padding-top: 2rem;
  padding-bottom: 2rem; }
  .contentbox--hr-size-fl-xxx-sm {
    width: 30%; }
  .contentbox--hr-size-fl-md {
    width: 50%; }
  .contentbox--hr-size-fl-xx-bg {
    left: 100%; }
  .contentbox--left-offset-fl-xxx-sm {
    left: 30%;
    position: relative; }
  .contentbox--left-offset-fl-md {
    left: 50%;
    position: relative; }
  .contentbox--left-offset-fl-xx-lg {
    left: 80%;
    position: relative; }
  .contentbox--bd-fd-primary-xx-bt {
    border: solid 1px #009999; }
  .contentbox--bd-fd-secondary-xx-bt {
    border: solid 1px #cc3333; }
  .contentbox--bd-0 {
    border: none; }

.favourite {
  position: absolute;
  top: 2rem;
  left: 10%; }
  .favourite:hover {
    cursor: pointer; }
  .favourite--bg-default {
    background-color: #FFF;
    border-radius: .3rem;
    border: solid 1px #cc3333;
    width: 6rem;
    padding-left: .5rem;
    position: relative; }
  .favourite__icon {
    color: #ffcc66;
    font-size: 1.6rem;
    width: 2rem; }
  .favourite__common {
    display: inline-block; }
  .favourite__text {
    position: absolute;
    font-size: 1.1rem;
    top: .5rem; }

.generic-box--vt-size-fd-hi-3-xxx-sm {
  height: 30rem; }

.generic-box--vt-size-fd-hi-6-xx-bg {
  height: 60rem; }

.generic-box--hr-size-fl-xxx-sm {
  width: 30%; }

.generic-box--hr-size-fl-xx-sm {
  width: 35%; }

.generic-box--hr-size-fl-x-sm {
  width: 40%; }

.generic-box--hr-size-fl-sm {
  width: 45%; }

.generic-box--hr-size-fl-md {
  width: 50%; }

.generic-box--hr-size-fl-xxx-md {
  width: 65%; }

.generic-box--hr-size-fl-xx-bg {
  width: 100%; }

.generic-box--pos-rel {
  position: relative; }

.generic-box--pos-abs {
  position: absolute; }

.generic-box--bg-primary-lt {
  background-color: rgba(0, 153, 153, 0.3); }

.generic-box--bg-primary-lta {
  background-color: rgba(0, 153, 153, 0.2); }

.generic-box__text-small, .generic-box__text-medium, .generic-box__text-large {
  display: block;
  color: #cc3333;
  position: absolute; }

.generic-box__text-small {
  font-size: 2.5rem;
  left: 25%;
  width: 50rem; }
  .generic-box__text-small--top-offset-fl-x-sm {
    top: 40%; }
  .generic-box__text-small--top-offset-fl-md {
    top: 50%; }

.generic-box__text-medium {
  font-size: 2.5rem;
  left: 25%;
  top: 37%; }

.generic-box__text-large {
  left: 13%;
  top: 20%;
  font-size: 4rem; }

.jb-box {
  width: 90%;
  border: solid 2px #009999;
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem; }
  .jb-box__link {
    text-decoration: none;
    color: #000; }
  .jb-box__id {
    color: #cc3333;
    font-size: 5rem;
    margin-bottom: 2rem; }
  .jb-box__title {
    font-size: 3rem; }

.jobcard {
  width: 100%;
  background-color: #FFF;
  padding: 2.5rem;
  position: relative;
  margin-bottom: 4rem;
  -webkit-box-shadow: -15px 10px 25px 5px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: -15px 10px 25px 5px rgba(0, 0, 0, 0.04);
  box-shadow: -5px 10px 5px 2px rgba(0, 0, 0, 0.04); }
  .jobcard__mainfeatured {
    background-color: #009999;
    padding: 1rem;
    width: 15rem;
    position: absolute;
    color: #FFF;
    font-size: 1.3rem;
    top: -4vh;
    text-align: center; }
  .jobcard__sponsored {
    background-color: rgba(255, 69, 0, 0.8);
    padding: 1rem;
    width: 15rem;
    position: absolute;
    color: #FFF;
    font-size: 1.3rem;
    top: -4vh;
    text-align: center; }
  .jobcard__featured {
    padding: 1rem;
    position: absolute;
    color: orangered;
    font-size: 1.3rem;
    text-align: center; }
  .jobcard__new {
    background-color: #009999;
    padding: 1rem;
    width: 15rem;
    position: absolute;
    color: #FFF;
    font-size: 1.3rem;
    top: -3vh;
    text-align: center; }
  .jobcard__ad {
    background-color: #009999;
    padding: 1rem;
    width: 15rem;
    position: absolute;
    color: #FFF;
    font-size: 1.3rem;
    top: -3vh;
    text-align: center; }
  .jobcard__brand {
    width: 20%;
    float: left;
    color: yellow;
    position: relative; }
    .jobcard__brand img {
      width: 65%;
      position: relative;
      display: inline-block;
      top: 2vh; }
  .jobcard__job {
    width: 40%;
    float: left; }
    .jobcard__job-bx {
      display: inline-block;
      width: 12rem;
      height: 10rem;
      background-color: #FFF;
      position: relative; }
      .jobcard__job-bx small {
        color: rgba(0, 0, 0, 0.5);
        display: inline-block;
        top: 3rem;
        position: relative;
        padding-left: 20%;
        padding-top: 2rem;
        font-size: 1.3rem;
        border-left: solid red .3rem;
        height: 7rem;
        bottom: 0; }
    .jobcard__job-title-cont {
      margin-bottom: 1.5rem; }
    .jobcard__job-title {
      font-size: 1.8rem;
      display: inline-block;
      margin-right: .8rem; }
    .jobcard__job-sub-title {
      font-size: 1rem;
      color: gray;
      display: inline-block; }
    .jobcard__job-salary {
      font-size: 1.2rem;
      color: grey; }
  .jobcard__more {
    width: 25%;
    float: left;
    position: relative; }
    .jobcard__more-location {
      font-size: 1.2rem;
      color: grey;
      position: relative;
      display: block;
      padding-left: 1rem;
      top: 8vh; }
    .jobcard__more-apply {
      font-size: 1.2rem;
      color: #000000;
      position: relative;
      display: block;
      cursor: pointer;
      padding-top: 1rem;
      padding-bottom: 1rem;
      padding-left: .5rem;
      padding-right: .5rem;
      text-align: center;
      background-color: #ffcc66;
      border: solid 0.1rem rgba(128, 128, 128, 0.07);
      border-radius: .3rem;
      width: 13rem;
      top: 14vh; }
      .jobcard__more-apply:hover {
        background-color: rgba(128, 128, 128, 0.07); }
  .jobcard__extra {
    width: 15%;
    float: left;
    position: relative; }
    .jobcard__extra-type {
      font-size: 1.2rem;
      color: #009999;
      position: relative;
      top: 8vh; }
    .jobcard__extra-date {
      font-size: 1.2rem;
      color: #cc3333;
      position: relative;
      display: block;
      top: 14vh; }
    .jobcard__extra-icon {
      font-size: 1.2rem;
      color: #ffcc66;
      position: absolute;
      display: block;
      cursor: pointer;
      top: 10vh;
      right: -20%; }

.link {
  text-decoration: none;
  color: #000; }
  .link__fg-dark {
    color: #000; }
  .link__fg-primary {
    color: #009999; }
  .link__fg-secondary {
    color: #cc3333; }

.list {
  padding: 0; }
  .list__hr > li {
    display: inline-block; }
  .list--pos-rel {
    position: relative; }
  .list--pos-abs {
    position: absolute; }
  .list--bg-primary {
    background-color: #009999; }
  .list--bg-secondary {
    background-color: #cc3333; }
  .list--bg-dark {
    background-color: #000; }
  .list--bg-light {
    background-color: #FFF; }
  .list--left-offset-0 {
    left: 0; }
  .list--left-offset-fl-x-bt {
    left: 2%; }
  .list--left-offset-fl-bt {
    left: 5%; }
  .list--left-offset-fl-xxx-tn {
    left: 10%; }
  .list--left-offset-fl-xx-tn {
    left: 15%; }
  .list--left-offset-fl-x-tn {
    left: 20%; }
  .list--left-offset-fl-tn {
    left: 25%; }
  .list--left-offset-fl-xxx-sm {
    left: 30%; }
  .list--left-offset-fl-xx-sm {
    left: 35%; }
  .list--left-offset-fl-x-sm {
    left: 40%; }
  .list--left-offset-fl-sm {
    left: 45%; }
  .list--left-offset-fl-md {
    left: 50%; }
  .list--left-offset-fl-x-md {
    left: 55%; }
  .list--left-offset-fl-xx-md {
    left: 60%; }
  .list--left-offset-fl-xxx-md {
    left: 65%; }
  .list--left-offset-fl-lg {
    left: 70%; }
  .list--left-offset-fl-x-lg {
    left: 75%; }
  .list--left-offset-fl-xx-lg {
    left: 80%; }
  .list--left-offset-fl-xxx-lg {
    left: 85%; }
  .list--left-offset-fl-bg {
    left: 90%; }
  .list--left-offset-fl-x-bg {
    left: 95%; }
  .list--left-offset-fl-xx-bg {
    left: 100%; }
  .list--hr-size-fl-x-bt {
    width: 2%; }
  .list--hr-size-fl-bt {
    width: 5%; }
  .list--hr-size-fl-xxx-tn {
    width: 10%; }
  .list--hr-size-fl-xx-tn {
    width: 15%; }
  .list--hr-size-fl-x-tn {
    width: 20%; }
  .list--hr-size-fl-tn {
    width: 25%; }
  .list--hr-size-fl-xxx-sm {
    width: 30%; }
  .list--hr-size-fl-xx-sm {
    width: 35%; }
  .list--hr-size-fl-x-sm {
    width: 40%; }
  .list--hr-size-fl-sm {
    width: 45%; }
  .list--hr-size-fl-md {
    width: 50%; }
  .list--hr-size-fl-x-md {
    width: 55%; }
  .list--hr-size-fl-xx-md {
    width: 60%; }
  .list--hr-size-fl-xxx-md {
    width: 65%; }
  .list--hr-size-fl-lg {
    width: 70%; }
  .list--hr-size-fl-x-lg {
    width: 75%; }
  .list--hr-size-fl-xx-lg {
    width: 80%; }
  .list--hr-size-fl-xxx-lg {
    width: 85%; }
  .list--hr-size-fl-bg {
    width: 90%; }
  .list--hr-size-fl-x-bg {
    width: 95%; }
  .list--hr-size-fl-xx-bg {
    width: 100%; }
  .list--none {
    list-style-type: none; }
  .list--drop-down {
    background-color: yellow;
    top: 2rem;
    z-index: 20; }
  .list__item {
    padding: 0;
    padding-top: .2rem;
    padding-bottom: .2rem; }
  .list__item--vt {
    display: block; }
  .list__item--hr {
    display: inline-block; }
  .list__item--pos-rel {
    position: relative; }
  .list__item--pos-abs {
    position: absolute; }
  .list__item--offset-bottom-fd-xxx-tn {
    bottom: 1rem; }
  .list__item--offset-bottom-fd-xx-tn {
    bottom: 1.5rem; }
  .list__item--offset-bottom-fd-x-tn {
    bottom: 2rem; }
  .list__item--hr-size-fl-x-bt {
    width: 2%; }
  .list__item--hr-size-fl-bt {
    width: 5%; }
  .list__item--hr-size-fl-xxx-tn {
    width: 10%; }
  .list__item--hr-size-fl-xx-tn {
    width: 15%; }
  .list__item--hr-size-fl-x-tn {
    width: 20%; }
  .list__item--hr-size-fl-tn {
    width: 25%; }
  .list__item--hr-size-fl-xxx-sm {
    width: 30%; }
  .list__item--hr-size-fl-xx-sm {
    width: 35%; }
  .list__item--hr-size-fl-x-sm {
    width: 40%; }
  .list__item--hr-size-fl-sm {
    width: 45%; }
  .list__item--hr-size-fl-md {
    width: 50%; }
  .list__item--hr-size-fl-x-md {
    width: 55%; }
  .list__item--hr-size-fl-xx-md {
    width: 60%; }
  .list__item--hr-size-fl-xxx-md {
    width: 65%; }
  .list__item--hr-size-fl-lg {
    width: 70%; }
  .list__item--hr-size-fl-x-lg {
    width: 75%; }
  .list__item--hr-size-fl-xx-lg {
    width: 80%; }
  .list__item--hr-size-fl-xxx-lg {
    width: 85%; }
  .list__item--hr-size-fl-bg {
    width: 90%; }
  .list__item--hr-size-fl-x-bg {
    width: 95%; }
  .list__item--hr-size-fl-xx-bg {
    width: 100%; }
  .list__item--fg-primary {
    color: #009999; }
  .list__item--fg-secondary {
    color: #009999; }
  .list__item--fg-light {
    color: #FFF; }
  .list__item--fg-dark {
    color: #000; }
  .list__item--border-bottom-primary {
    border-bottom: solid 0.1rem #009999;
    padding-bottom: .5rem; }
  .list__item--border-bottom-secondary {
    border-bottom: solid 0.1rem rgba(204, 51, 51, 0.2);
    padding-bottom: 1rem; }
  .list__item--mg-offset-right-4xsmall:not(last-child) {
    margin-right: 1%; }
  .list__item--mg-offset-right-3xsmall {
    margin-right: 2%; }
  .list__item--mg-offset-right-2xsmall:not(last-child) {
    margin-right: 3%; }
  .list__item--mg-offset-right-xsmall:not(last-child) {
    margin-right: 4%; }
  .list__item--mg-offset-right-small:not(last-child) {
    margin-right: 5%; }
  .list__item--mg-offset-right-medium:not(last-child) {
    margin-right: 8%; }
  .list__item--mg-offset-right-xmedium:not(last-child) {
    margin-right: 10%; }
  .list__item--mg-offset-bottom-small {
    margin-bottom: 1.5rem; }
  .list__item--mg-offset-left-4xsmall {
    margin-left: 1%; }
  .list__item--pd-offset-left-3xsmall {
    padding-left: 10%; }
  .list__item--pd-offset-left-2xsmall {
    padding-left: 20%; }
  .list__item--pd-offset-left-xsmall {
    padding-left: 30%; }
  .list__item--pd-offset-left-small {
    padding-left: 40%; }
  .list__item--bg-primary {
    background-color: #009999; }
  .list__item--bg-secondary {
    background-color: #cc3333; }
  .list__item--border-rad-small {
    border-radius: .2rem; }
  .list__pd-left-fd-bt {
    padding-left: .5rem; }
  .list__pd-right-fd-bt {
    padding-right: .5rem; }
  .list__pd-right-fd-xxx-tn {
    padding-right: 1rem; }
  .list__pd-fd-xxx-tn {
    padding: 1rem; }

.modal {
  display: none;
  height: 100%;
  position: fixed;
  overflow: auto;
  backdrop-filter: blur(1rem);
  top: 0;
  width: 100%;
  z-index: 1500; }
  .modal__content {
    margin: 0 auto;
    overflow: visible; }
  .modal__head {
    position: relative;
    margin-bottom: 3rem; }
  .modal__body {
    position: relative;
    display: block;
    padding-left: 2%;
    padding-top: 2rem;
    margin-bottom: 2rem; }
  .modal__foot {
    padding-bottom: .1rem;
    width: 100%; }
  .modal__button {
    cursor: pointer;
    position: relative;
    display: inline-block; }
  .modal__close-top-btn {
    font-size: 2.5rem;
    width: 20%;
    left: 70%;
    transform: translateX(-5%);
    margin-top: 2rem;
    transition: color .5s;
    position: relative;
    text-align: center;
    color: #cc3333; }
    .modal__close-top-btn:hover {
      color: #cc3333; }
  .modal__close-bottom-btn {
    border: none;
    border-radius: 3px;
    background-color: #0CC;
    color: #FFF;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    transition: background-color 1.2s;
    text-align: center; }
    .modal__close-bottom-btn:hover {
      background-color: #000;
      color: #FFF; }
  .modal__close-bottom-btn--hr-size-fd-tn {
    width: 10rem; }
  .modal__close-bottom-btn--hr-size-fd-sm {
    width: 15rem; }
  .modal__close-bottom-btn--hr-size-fd-md {
    width: 20rem; }
  .modal__close-bottom-btn--hr-size-fd-lg {
    width: 30rem; }
  .modal__content--bg-primary {
    background-color: #009999; }
  .modal__content--bg-secondary {
    background-color: #cc3333; }
  .modal__content--bg-dark {
    background-color: #000; }
  .modal__content--bg-light {
    background-color: #FFF; }
  .modal__content--bd-rad-fd-bt {
    border-radius: .2rem; }
  .modal__content--size-fl-x-bt {
    width: 2%; }
  .modal__content--size-fl-bt {
    width: 5%; }
  .modal__content--size-fl-xxx-tn {
    width: 10%; }
  .modal__content--size-fl-xx-tn {
    width: 15%; }
  .modal__content--size-fl-x-tn {
    width: 20%; }
  .modal__content--size-fl-tn {
    width: 25%; }
  .modal__content--size-fl-xxx-sm {
    width: 30%; }
  .modal__content--size-fl-xx-sm {
    width: 35%; }
  .modal__content--size-fl-x-sm {
    width: 40%; }
  .modal__content--size-fl-sm {
    width: 45%; }
  .modal__content--size-fl-md {
    width: 50%; }
  .modal__content--size-fl-x-md {
    width: 55%; }
  .modal__content--size-fl-xx-md {
    width: 60%; }
  .modal__content--size-fl-xxx-md {
    width: 65%; }
  .modal__content--size-fl-lg {
    width: 70%; }
  .modal__content--size-fl-x-lg {
    width: 75%; }
  .modal__content--size-fl-xx-lg {
    width: 80%; }
  .modal__content--size-fl-xxx-lg {
    width: 85%; }
  .modal__content--size-fl-bg {
    width: 90%; }
  .modal__content--size-fl-x-bg {
    width: 95%; }
  .modal__content--size-fl-xx-bg {
    width: 100%; }
  .modal__content--top-offset-fl-x-bt {
    top: 2%; }
  .modal__content--top-offset-fl-bt {
    top: 5%; }
  .modal__content--top-offset-fl-xxx-tn {
    top: 10%; }
  .modal__content--top-offset-fl-xx-tn {
    top: 15%; }
  .modal__content--top-offset-fl-x-tn {
    top: 20%; }
  .modal__content--top-offset-fl-tn {
    top: 25%; }
  .modal__content--top-offset-fl-xxx-sm {
    top: 30%; }
  .modal__content--top-offset-fl-xx-sm {
    top: 35%; }
  .modal__content--top-offset-fl-x-sm {
    top: 40%; }
  .modal__content--top-offset-fl-sm {
    top: 45%; }
  .modal__content--top-offset-fl-md {
    top: 50%; }
  .modal__content--top-offset-fl-x-md {
    top: 55%; }
  .modal__content--top-offset-fl-xx-md {
    top: 60%; }
  .modal__content--top-offset-fl-xxx-md {
    top: 65%; }
  .modal__content--top-offset-fl-lg {
    top: 70%; }
  .modal__content--top-offset-fl-x-lg {
    top: 75%; }
  .modal__content--top-offset-fl-xx-lg {
    top: 80%; }
  .modal__content--top-offset-fl-xxx-lg {
    top: 85%; }
  .modal__content--top-offset-fl-bg {
    top: 90%; }
  .modal__content--top-offset-fl-x-bg {
    top: 95%; }
  .modal__content--top-offset-fl-xx-bg {
    top: 100%; }
  .modal__content--top-offset-vh-x-bt {
    top: 2vh; }
  .modal__content--top-offset-vh-bt {
    top: 5vh; }
  .modal__content--top-offset-vh-xxx-tn {
    top: 10vh; }
  .modal__content--top-offset-vh-xx-tn {
    top: 15vh; }
  .modal__content--top-offset-vh-x-tn {
    top: 20vh; }
  .modal__content--top-offset-vh-tn {
    top: 25vh; }
  .modal__content--top-offset-vh-xxx-sm {
    top: 30vh; }
  .modal__content--top-offset-vh-xx-sm {
    top: 35vh; }
  .modal__content--top-offset-vh-x-sm {
    top: 40vh; }
  .modal__content--top-offset-vh-sm {
    top: 45vh; }
  .modal__content--top-offset-vh-md {
    top: 50vh; }
  .modal__content--top-offset-vh-x-md {
    top: 55vh; }
  .modal__content--top-offset-vh-xx-md {
    top: 60vh; }
  .modal__content--top-offset-vh-xxx-md {
    top: 65vh; }
  .modal__content--top-offset-vh-lg {
    top: 70vh; }
  .modal__content--top-offset-vh-x-lg {
    top: 75vh; }
  .modal__content--top-offset-vh-xx-lg {
    top: 80vh; }
  .modal__content--top-offset-vh-xxx-lg {
    top: 85vh; }
  .modal__content--top-offset-vh-bg {
    top: 90vh; }
  .modal__content--top-offset-vh-x-bg {
    top: 95vh; }
  .modal__content--top-offset-vh-xx-bg {
    top: 100vh; }
  .modal__content--left-offset-0 {
    left: 0; }
  .modal__content--left-offset-fl-x-bt {
    left: 2%; }
  .modal__content--left-offset-fl-bt {
    left: 5%; }
  .modal__content--left-offset-fl-xxx-tn {
    left: 10%; }
  .modal__content--left-offset-fl-xx-tn {
    left: 15%; }
  .modal__content--left-offset-fl-x-tn {
    left: 20%; }
  .modal__content--left-offset-fl-tn {
    left: 25%; }
  .modal__content--left-offset-fl-xxx-sm {
    left: 30%; }
  .modal__content--left-offset-fl-xx-sm {
    left: 35%; }
  .modal__content--left-offset-fl-x-sm {
    left: 40%; }
  .modal__content--left-offset-fl-sm {
    left: 45%; }
  .modal__content--left-offset-fl-md {
    left: 50%; }
  .modal__content--left-offset-fl-x-md {
    left: 55%; }
  .modal__content--left-offset-fl-xx-md {
    left: 60%; }
  .modal__content--left-offset-fl-xxx-md {
    left: 65%; }
  .modal__content--left-offset-fl-lg {
    left: 70%; }
  .modal__content--left-offset-fl-x-lg {
    left: 75%; }
  .modal__content--left-offset-fl-xx-lg {
    left: 80%; }
  .modal__content--left-offset-fl-xxx-lg {
    left: 85%; }
  .modal__content--left-offset-fl-bg {
    left: 90%; }
  .modal__content--left-offset-fl-x-bg {
    left: 95%; }
  .modal__content--left-offset-fl-xx-bg {
    left: 100%; }
  .modal__content--bottom-offset-0 {
    bottom: 0; }
  .modal__content--pos-rel {
    position: relative; }
  .modal__content--pos-abs {
    position: absolute; }
  .modal__content--pos-fd {
    position: fixed !important; }

.pager__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 14%;
  top: 0; }

.pager__item {
  display: inline-block;
  width: 2rem; }

.pager__btn:hover {
  background-color: #009999;
  cursor: pointer;
  color: #FFF; }

.pager__btn {
  width: 100%;
  border: solid 1px #009999;
  background-color: #FFF;
  border-radius: .5rem;
  color: #999;
  font-weight: 700; }

.pager__coalescence {
  position: absolute;
  top: 0;
  left: 65%;
  width: 9rem; }

.pager__elipses {
  font-size: 2rem;
  font-weight: 700;
  color: #999;
  margin-right: .5rem; }

.pager__next-icon, .pager__prev-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: #cc3333; }
  .pager__next-icon:hover, .pager__prev-icon:hover {
    cursor: pointer; }

.pager__count {
  position: absolute;
  left: 40%;
  top: 0;
  border: solid 1px #009999;
  text-align: center;
  font-size: 1.3rem;
  width: 5rem; }

.pagination {
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  position: relative; }
  .pagination__page-item {
    display: inline-block;
    margin-right: 1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    position: relative;
    cursor: pointer; }
  .pagination__page-next {
    margin-right: 1rem; }
  .pagination__page-prev {
    margin-right: 2.5rem; }
  .pagination__active {
    color: black !important;
    background-color: #00bfbf !important;
    border-color: #009999 !important;
    display: inline-block; }
  .pagination__page-link {
    padding: 0.75rem 1rem;
    text-align: center;
    box-shadow: none !important;
    border-color: #009999 !important;
    color: black;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    font-weight: 900;
    font-size: 1rem;
    text-decoration: none; }
    .pagination__page-link:hover {
      background-color: #cc3333; }
  .pagination__head {
    font-size: 1rem;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.00938em;
    margin-bottom: 5rem; }
  .pagination__pager {
    margin: 0;
    display: flex;
    padding: 0;
    flex-wrap: wrap;
    list-style: none;
    align-items: center; }

.preloader {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #cc3333;
  z-index: 3000;
  display: none; }
  .preloader .loader {
    width: 10rem;
    height: 3rem;
    background-color: #FFF;
    backface-visibility: hidden;
    border-bottom: solid 2px transparent;
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    transform: skewX(-12deg);
    position: relative;
    animation-name: shake-shake;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in; }
    .preloader .loader p {
      padding-top: 5%;
      position: relative;
      color: #ffcc66; }
    .preloader .loader > * {
      transform: skewX(12deg);
      text-align: center;
      font-size: 1.1rem; }

.form {
  position: relative;
  width: 100%; }
  .form__group {
    display: block;
    margin-bottom: 2rem;
    width: 100%;
    position: relative; }
    @media only screen and (max-width: 600px) {
      .form__group {
        width: 95%; } }
  .form__group--hr-size-fl-xx-bg {
    width: 100% !important; }
  .form__input {
    height: 3rem;
    padding: .5rem 1rem; }
    @media only screen and (max-width: 600px) {
      .form__input {
        width: 100%; } }
    .form__input::input-placeholder {
      color: red; }
    .form__input:focus {
      border: none;
      border-bottom: solid 1px #009999;
      transition: all .5s; }
    .form__input:invalid {
      border: none;
      border-bottom: solid 1px red;
      transition: all .5s; }
  .form__input--hr-size-fl-x-bt {
    width: 2%; }
  .form__input--hr-size-fl-bt {
    width: 5%; }
  .form__input--hr-size-fl-xxx-tn {
    width: 10%; }
  .form__input--hr-size-fl-xx-tn {
    width: 15%; }
  .form__input--hr-size-fl-x-tn {
    width: 20%; }
  .form__input--hr-size-fl-tn {
    width: 25%; }
  .form__input--hr-size-fl-xxx-sm {
    width: 30%; }
  .form__input--hr-size-fl-xx-sm {
    width: 35%; }
  .form__input--hr-size-fl-x-sm {
    width: 40%; }
  .form__input--hr-size-fl-sm {
    width: 45%; }
  .form__input--hr-size-fl-md {
    width: 50%; }
  .form__input--hr-size-fl-x-md {
    width: 55%; }
  .form__input--hr-size-fl-xx-md {
    width: 60%; }
  .form__input--hr-size-fl-xxx-md {
    width: 65%; }
  .form__input--hr-size-fl-lg {
    width: 70%; }
  .form__input--hr-size-fl-x-lg {
    width: 75%; }
  .form__input--hr-size-fl-xx-lg {
    width: 80%; }
  .form__input--hr-size-fl-xxx-lg {
    width: 85%; }
  .form__input--hr-size-fl-bg {
    width: 90%; }
  .form__input--hr-size-fl-x-bg {
    width: 95%; }
  .form__input--hr-size-fl-xx-bg {
    width: 100%; }
  .form__input--box-bd-fd-primary-xx-bt {
    border: none;
    border: solid 1px #009999; }
  .form__input--box-bd-fd-secondary-xx-bt {
    border: none;
    border: solid 1px #cc3333; }
  .form__input--box-bd-bottom-fd-secondary-xx-bt {
    border: none;
    border-bottom: solid 1px #cc3333; }
  .form__input--box-bd-bottom-fd-light-xx-bt {
    border: none;
    border-bottom: solid 1px #fff; }
  .form__input--box-bd-rad-bt {
    border-radius: .5rem; }
  .form__textarea {
    border: none;
    width: 85%;
    padding-top: 2rem;
    padding-left: 2rem;
    height: 10rem; }
  .form__textarea--hr-size-fl-x-bt {
    width: 2%; }
  .form__textarea--hr-size-fl-bt {
    width: 5%; }
  .form__textarea--hr-size-fl-xxx-tn {
    width: 10%; }
  .form__textarea--hr-size-fl-xx-tn {
    width: 15%; }
  .form__textarea--hr-size-fl-x-tn {
    width: 20%; }
  .form__textarea--hr-size-fl-tn {
    width: 25%; }
  .form__textarea--hr-size-fl-xxx-sm {
    width: 30%; }
  .form__textarea--hr-size-fl-xx-sm {
    width: 35%; }
  .form__textarea--hr-size-fl-x-sm {
    width: 40%; }
  .form__textarea--hr-size-fl-sm {
    width: 45%; }
  .form__textarea--hr-size-fl-md {
    width: 50%; }
  .form__textarea--hr-size-fl-x-md {
    width: 55%; }
  .form__textarea--hr-size-fl-xx-md {
    width: 60%; }
  .form__textarea--hr-size-fl-xxx-md {
    width: 65%; }
  .form__textarea--hr-size-fl-lg {
    width: 70%; }
  .form__textarea--hr-size-fl-x-lg {
    width: 75%; }
  .form__textarea--hr-size-fl-xx-lg {
    width: 80%; }
  .form__textarea--hr-size-fl-xxx-lg {
    width: 85%; }
  .form__textarea--hr-size-fl-bg {
    width: 90%; }
  .form__textarea--hr-size-fl-x-bg {
    width: 95%; }
  .form__textarea--hr-size-fl-xx-bg {
    width: 100%; }
  .form__textarea--box-bd-fd-secondary-xx-bt {
    border: solid 1px #cc3333; }
  .form__label {
    display: block;
    padding: 1rem;
    transition: all .4s; }
  .form__input:placeholder-shown + .form__label {
    opacity: 0;
    transform: translateY(-3rem);
    visibility: hidden; }
  .form__select__group {
    display: inline-block;
    width: 40%; }
    @media only screen and (max-width: 600px) {
      .form__select__group {
        display: block;
        width: 80%; } }
  .form__select__group:not(:last-child) {
    margin-right: 5%; }
  .form__select__label {
    color: #cc3333;
    display: block;
    font-size: 1.2rem;
    margin-bottom: 1.1rem; }
  .form__select {
    border: none;
    display: block;
    height: 3rem;
    width: 100%; }
  .form__radio__group {
    display: inline-block;
    position: relative; }
  .form__radio__group:not(:last-child) {
    margin-right: 5rem; }
  .form__radio__group__title {
    display: inline-block;
    margin-right: 5rem; }
  .form__radio {
    display: none; }
  .form__radio:checked + .form__radio__label .form__radio__button::after {
    opacity: 1; }
  .form__radio__label {
    font-size: 1.35rem; }
  .form__radio__button {
    border: solid 3px #cc3333;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: .3rem;
    width: 1.5rem;
    height: 1.5rem; }
    .form__radio__button::after {
      content: "";
      display: block;
      background-color: #009999;
      height: .5rem;
      width: .5rem;
      position: relative;
      opacity: 0;
      top: .2rem;
      transition: opacity .4s;
      left: .2rem;
      border-radius: 50%; }
      @media only screen and (max-width: 900px) {
        .form__radio__button::after {
          left: .1rem;
          top: .1rem; } }
  .form__checkbox__group__title {
    display: inline-block; }
  .form__checkbox__group {
    display: inline-block;
    position: relative; }
  .form__checkbox {
    display: none; }
  .form__checkbox:checked ~ .form__checkbox__label small {
    opacity: 1; }
  .form__checkbox__label {
    bottom: 1.5rem;
    font-size: 1.1rem; }
  .form__checkbox__button {
    border: solid 3px #cc3333;
    border-radius: 2px;
    display: inline-block;
    font-size: 1.2rem;
    position: absolute;
    bottom: 0;
    top: 1rem;
    margin-left: 1rem;
    width: 1.5rem;
    height: 1.5rem; }
    .form__checkbox__button small {
      position: relative;
      color: #000;
      font-size: 1.6rem;
      font-weight: 700;
      opacity: 0;
      transition: opacity .4s;
      top: -1rem; }
  .form__submit_btn {
    margin-top: 3rem;
    position: absolute;
    right: 30%; }
  .form__submit-btn--pos-rel {
    margin-top: 3rem;
    position: relative;
    left: 50%; }
  .form__submit-btn {
    border: none;
    border: solid 1px rgba(204, 51, 51, 0.3);
    border-radius: 2px;
    background-color: #cc3333;
    color: #FFF;
    transition: all .4s; }
    .form__submit-btn:hover {
      background-color: #FFF;
      border: solid 1px #cc3333;
      color: #cc3333; }
  .form__submit-btn--hr-size-fd-xx-bg {
    width: 10rem; }
  .form__submit-btn--hr-size-fd-hi-md {
    width: 15rem; }
  .form__submit-btn--font-fd-xx-tn {
    font-size: 1.2rem; }
  .form__submit-btn--font-fd-x-tn {
    font-size: 2rem; }
  .form__submit-btn--pd-fd-cs {
    padding: .8rem; }
  .form__hidden {
    opacity: 0; }

.pik {
  width: 18.5%;
  position: relative;
  float: left; }
  .pik:hover .pik__extras {
    opacity: 1; }

.search {
  left: 30%;
  position: absolute;
  top: 15rem;
  width: 40%; }
  .search__activate {
    display: none; }
  .search__button {
    display: none;
    height: 3rem;
    left: 45%;
    position: absolute;
    width: 3rem;
    border-radius: 50%;
    border: solid 0.1rem #009999; }
    .search__button-stick {
      background-color: #009999;
      display: none;
      left: 50%;
      top: 2.2rem;
      position: relative;
      width: .3rem;
      height: 1.5rem;
      transform: rotate(-45deg); }
      .search__button-stick:hover {
        cursor: pointer; }
    .search__button:hover {
      cursor: pointer; }

.search__form {
  transform: all 3s;
  display: block; }
  .search__form--ps-rel {
    position: relative;
    left: 30%; }
  .search__form--ps-abs {
    position: absolute; }
  .search__form--hr-size-fl-x-bt {
    width: 2%; }
  .search__form--hr-size-fl-bt {
    width: 5%; }
  .search__form--hr-size-fl-xxx-tn {
    width: 10%; }
  .search__form--hr-size-fl-xx-tn {
    width: 15%; }
  .search__form--hr-size-fl-x-tn {
    width: 20%; }
  .search__form--hr-size-fl-tn {
    width: 25%; }
  .search__form--hr-size-fl-xxx-sm {
    width: 30%; }
  .search__form--hr-size-fl-xx-sm {
    width: 35%; }
  .search__form--hr-size-fl-x-sm {
    width: 40%; }
  .search__form--hr-size-fl-sm {
    width: 45%; }
  .search__form--hr-size-fl-md {
    width: 50%; }
  .search__form--hr-size-fl-x-md {
    width: 55%; }
  .search__form--hr-size-fl-xx-md {
    width: 60%; }
  .search__form--hr-size-fl-xxx-md {
    width: 65%; }
  .search__form--hr-size-fl-lg {
    width: 70%; }
  .search__form--hr-size-fl-x-lg {
    width: 75%; }
  .search__form--hr-size-fl-xx-lg {
    width: 80%; }
  .search__form--hr-size-fl-xxx-lg {
    width: 85%; }
  .search__form--hr-size-fl-bg {
    width: 90%; }
  .search__form--hr-size-fl-x-bg {
    width: 95%; }
  .search__form--hr-size-fl-xx-bg {
    width: 100%; }
  .search__form-input {
    border: solid 0.1rem #009999;
    border-bottom-left-radius: 2rem;
    display: inline-block;
    height: 4rem;
    padding: .5rem 1rem;
    width: 80%; }
    .search__form-input::input-placeholder {
      color: red; }
    .search__form-input:focus {
      border: solid 1px #2E8B57;
      transition: all .5s; }
    .search__form-input:invalid {
      border: none;
      border-bottom: solid 1px red;
      transition: all .5s; }
  .search__form-submit-btn {
    border: none;
    width: 19%;
    height: 4rem;
    border-left: solid 3px #009999;
    border-right: solid 4px #2E8B57; }
    .search__form-submit-btn:hover {
      cursor: pointer;
      border-left: solid 3px #2E8B57;
      border-right: solid 4px #009999;
      background-color: white; }
  .search__form-submit-btn--hr-size-fd-xx-md {
    width: 6rem; }

.slider {
  position: relative;
  height: 40rem; }
  .slider__item {
    height: 40rem;
    background-image: url(img/camero.jpg);
    position: absolute;
    width: 100%;
    display: none;
    font-size: 2rem;
    color: white;
    animation-name: fadeIn;
    animation-duration: 3s; }
  .slider__controls--pos-left-center {
    position: absolute;
    top: 40%;
    left: 1%; }
  .slider__controls--pos-bottom-center {
    position: absolute;
    top: 90%;
    left: 50%; }
  .slider__controls-bubble {
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    border: solid 0.1rem #009999;
    position: relative; }
    .slider__controls-bubble--hr {
      display: inline-block;
      margin-right: 1rem; }
    .slider__controls-bubble--vt {
      display: block;
      margin-bottom: 2rem; }
    .slider__controls-bubble:hover {
      background-color: #cc3333;
      cursor: pointer; }
    .slider__controls-bubble-active {
      background-color: #cc3333; }
  .slider__controls-bar {
    background-color: #009999;
    display: inline-block;
    height: .25rem;
    width: 3.5rem;
    margin-right: 1rem;
    position: relative; }
    .slider__controls-bar:hover {
      background-color: #cc3333;
      cursor: pointer; }
    .slider__controls-bar-active {
      background-color: #cc3333; }
  .slider__controls-arrow {
    color: #cc3333;
    display: none;
    font-size: 7rem;
    margin-right: 1rem;
    position: absolute; }
    .slider__controls-arrow-prev {
      position: absolute;
      left: 5%; }
      .slider__controls-arrow-prev--pos-center {
        top: 40%; }
    .slider__controls-arrow-next {
      position: absolute;
      right: 5%; }
      .slider__controls-arrow-next--pos-center {
        top: 40%; }
    .slider__controls-arrow:hover {
      cursor: pointer; }
  .slider__active {
    display: block; }
  .slider__item-d-block {
    display: block; }
  .slider__item-d-inline-block {
    display: inline-block; }
  .slider__item-d-none {
    display: none; }

.social-platforms {
  list-style-type: none;
  margin: 0;
  padding: 0; }
  .social-platforms__platform {
    display: inline-block; }
    .social-platforms__platform:not(last-child) {
      margin-right: .3rem; }
  .social-platforms__image--size {
    width: 3.5rem; }
  .social-platforms__image--border-all-secondary {
    border: solid 1px #cc3333; }
  .social-platforms__image--border-rad {
    border-radius: 50%; }

.sponsored__title {
  font-size: 2.3rem;
  margin-bottom: 3rem;
  color: #cc3333; }
  .sponsored__title-solid-fg {
    color: #ffcc66;
    font-size: 1.8rem; }

.sponsored__pik {
  width: 100%; }

.sponsored__pik--border-rad-small {
  border-radius: .2rem; }

.tag {
  padding-left: .5rem;
  padding-top: .5rem; }
  .tag--grid-layout-1 {
    column-count: 1;
    width: 100%; }
  .tag--grid-layout-2 {
    column-count: 2;
    width: 100%; }
  .tag--grid-layout-3 {
    column-count: 3;
    width: 100%; }
  .tag--grid-layout-4 {
    column-count: 4;
    width: 100%; }
  .tag--grid-layout-5 {
    column-count: 5;
    width: 100%; }
  .tag--pad-left-offset {
    padding-left: 5%; }
  .tag--bg-primary {
    background-color: rgba(204, 51, 51, 0.4); }
  .tag--bg-default {
    background-color: white; }
  .tag__list {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    margin-bottom: 1rem;
    width: auto; }
  .tag__list--width-small {
    width: 6rem; }
    .tag__list--width-small li {
      width: 100%; }
  .tag__list--width-medium {
    width: 80%; }
  .tag__list--width-big {
    width: 90%; }
  .tag__item {
    display: inline-block;
    font-size: 1.3rem;
    padding-left: 1rem;
    width: 19%; }
    .tag__item:not(last-child) {
      margin-right: 1%; }
    .tag__item--bg-primary {
      background-color: #FFF; }
    .tag__item--bg-secondary {
      background-color: #cc3333; }
    .tag__item--font-size-small {
      font-size: 1.3rem; }
    .tag__item--font-size-medium {
      font-size: 1.6rem; }
    .tag__item--border-rad-small {
      border-radius: .2rem; }
    .tag__item--border-small-primary {
      border: solid 1px #009999; }
  .tag__link {
    text-decoration: none; }
  .tag__link--color-primary {
    color: #cc3333; }
  .tag__link--color-default {
    color: #FFF; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg) translate(-50%);
    transform: rotate(0deg) translate(-50%); }
  100% {
    -webkit-transform: rotate(360deg) translate(-50%);
    transform: rotate(360deg) translate(-50%); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg) translate(-50%);
    transform: rotate(0deg) translate(-50%); }
  100% {
    -webkit-transform: rotate(360deg) translate(-50%);
    transform: rotate(360deg) translate(-50%); } }

.upload__avatar-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  -webkit-animation: spin 0.35s infinite linear;
  animation: spin 0.35s infinite linear;
  border: 2px solid #707070;
  border-radius: 50%;
  border-top-color: white;
  height: 25px;
  -webkit-transform-origin: left;
  transform-origin: left;
  top: 45%;
  width: 25px; }

.upload__avatar-hidden-input {
  left: -999px;
  position: absolute; }

.upload__avatar-profile {
  *zoom: 1;
  background-color: white;
  border-radius: 2px;
  display: block;
  float: none;
  margin: 5px auto;
  overflow: hidden;
  padding-bottom: 20px;
  width: 400px; }

.upload__avatar-profile:before, .upload__avatar-profile:after {
  content: "";
  display: table; }

.upload__avatar-profile:after {
  clear: both; }

.upload__avatar-about {
  font-family: Helvetica, "Helvetica Neue", "Tahoma";
  font-size: 12px;
  color: #adadad;
  line-height: 17px; }

.upload__avatar-image-wrapper {
  background: rgba(0, 0, 0, 0.2);
  bottom: -50px;
  height: 50px;
  left: 0;
  position: absolute;
  -webkit-transition: bottom 0.15s linear;
  transition: bottom 0.15s linear;
  width: 100%; }

.upload__avatar-edit {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: white;
  cursor: pointer;
  font-size: 22px;
  top: 10px; }

.upload__avatar-name {
  font-family: Helvetica, "Helvetica Neue", "Tahoma";
  font-size: 18px; }

.upload__avatar-profile-pic {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  border: 4px solid white;
  height: 210px;
  overflow: hidden;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 210px;
  top: 0; }
  .upload__avatar-profile-pic img {
    box-sizing: border-box;
    height: 100%;
    left: 50%;
    max-height: 100%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
    width: auto; }
  .upload__avatar-profile-pic:hover .upload__avatar-profile-pic-image-wrapper {
    bottom: 0; }

.upload__avatar-user-info {
  *zoom: 1;
  padding: 8px;
  position: relative; }

.upload__avatar-user-info:before, .upload__avatar-user-info:after {
  content: "";
  display: table; }

.upload__avatar-user-info:after {
  clear: both; }

.upload__avatar body {
  background-color: #202020; }

.upload__avatar-container {
  margin: 40px auto 50px;
  max-width: 960px; }

.upload__avatar-layer {
  background-color: rgba(0, 0, 0, 0.25);
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%; }
  .upload__avatar-layer-visible {
    display: block; }

.util--bt-offset-small {
  margin-bottom: 5rem; }

.util--bt-offset-medium {
  margin-bottom: 10rem; }

.util--bt-offset-large {
  margin-bottom: 20rem; }

.util--tp-offset-small {
  margin-top: 5rem; }

.util--tp-offset-medium {
  margin-top: 10rem; }

.util--tp-offset-large {
  margin-top: 20rem; }

.util__content {
  width: 80%;
  margin: 0 auto; }

.util__text-alt {
  display: inline-block;
  margin-left: 20%;
  margin-bottom: .2rem; }

.util__text--font-small {
  font-size: 2.5rem; }

.util__text--font-medium {
  font-size: 3rem; }

.util__text--font-large {
  font-size: 4rem; }

.util__text--offset {
  margin-top: 5rem; }

.app__brand {
  position: relative;
  right: 10%;
  margin-top: 2rem; }
  .app__brand--logo img {
    width: 7rem; }
  .app__brand--name {
    font-size: 2rem;
    position: relative;
    margin-top: 1.5rem;
    margin-bottom: 4rem;
    margin-left: 60%;
    padding: 2%; }
  .app__brand--name-footer {
    font-size: 2rem;
    position: relative;
    margin-top: 1.5rem;
    margin-bottom: 4rem;
    margin-left: 3.5%;
    padding: 2%; }

.dashboard-items-nav {
  width: 100%;
  height: 6.8rem;
  padding-top: 4rem; }
  .dashboard-items-nav--pos-fixed {
    position: fixed;
    top: 8rem;
    z-index: 1;
    background-color: #FFF; }

.accounts-dashboard-items-nav {
  width: 70%;
  position: relative;
  left: 26%; }
  .accounts-dashboard-items-nav-list {
    width: 100%; }
    .accounts-dashboard-items-nav-list-item {
      display: inline-block;
      width: 12%;
      padding-bottom: 1rem;
      border-bottom: solid 2px transparent;
      margin-bottom: 3rem;
      font-size: 1.5rem;
      text-align: center; }
      .accounts-dashboard-items-nav-list-item:hover, .accounts-dashboard-items-nav-list-item:active {
        border-bottom: solid 2px #009999; }
    .accounts-dashboard-items-nav-list-link {
      text-decoration: none;
      color: #000; }
      .accounts-dashboard-items-nav-list-link:hover {
        color: #cc3333; }

.footer__company {
  width: 100%;
  margin-bottom: 8rem; }
  .footer__company--more {
    width: 32%;
    margin-right: 3%;
    float: left;
    background-color: rgba(192, 175, 175, 0.05);
    height: 43rem; }
    .footer__company--more-bar {
      height: .3rem;
      width: 5rem;
      background-color: rgba(192, 175, 175, 0.5);
      display: block;
      margin-left: 40%;
      margin-top: 2rem; }
  .footer__company--extras {
    width: 65%;
    float: left; }
    .footer__company--extras-nav {
      width: 35%;
      margin-right: 5%;
      margin-top: 5rem;
      float: left; }
    .footer__company--extras-alert {
      width: 60%;
      float: left;
      margin-top: 15rem; }

.footer__launch {
  width: 100%;
  margin-bottom: 10rem; }
  .footer__launch--notify {
    width: 60%;
    position: relative;
    padding-top: 5rem;
    float: left; }
    .footer__launch--notify-our {
      display: inline-block;
      color: #cc3333;
      font-size: 3rem;
      margin-right: 2%;
      margin-left: 5%; }
    .footer__launch--notify-mobile {
      display: inline-block;
      color: #FFF;
      background-color: #009999;
      width: 40%;
      padding: .5rem;
      font-size: 1.7rem;
      margin-bottom: 3rem;
      text-align: center; }
    .footer__launch--notify-soon {
      display: inline-block;
      background-color: #ffcc66;
      width: 35%;
      padding: .5rem;
      font-size: 1.7rem;
      margin-bottom: 3rem;
      text-align: center;
      position: relative;
      left: 25%; }
    .footer__launch--notify-date {
      display: inline-block;
      padding: .5rem;
      font-size: 1.4rem;
      text-align: center;
      position: relative;
      margin-bottom: 4.5rem;
      left: 30%; }
    .footer__launch--notify-form {
      position: relative;
      width: 70%;
      left: 25%; }
      .footer__launch--notify-form-mail {
        width: 60%;
        float: left; }
      .footer__launch--notify-form-notify {
        width: 30%;
        float: left; }
      .footer__launch--notify-form-input {
        width: 90%; }
  .footer__launch--vendors {
    width: 40%;
    float: left; }
    .footer__launch--vendors-phone {
      position: relative;
      width: 100%;
      margin-bottom: 4rem;
      padding-left: 20%; }
      .footer__launch--vendors-phone img {
        width: 50%; }
    .footer__launch--vendors-google, .footer__launch--vendors-itunes {
      display: inline-block;
      width: 30%;
      padding-left: 20%;
      cursor: pointer; }

.footer__alert {
  background-color: #FFF;
  padding-left: 1.5rem;
  height: 8rem;
  border: none;
  border-left: solid #009999 0.3rem;
  width: 85%; }

.footer__brand {
  width: 100%;
  padding-bottom: 2rem; }
  .footer__brand--brand {
    float: left;
    width: 33%;
    padding-top: 3.3rem; }
  .footer__brand--social {
    float: left;
    width: 40%;
    position: relative; }
    .footer__brand--social-social span {
      display: inline-block;
      width: 19%;
      position: relative;
      margin-right: 1%; }
  .footer__brand--policy {
    float: left;
    width: 26%;
    padding-top: 11.5rem;
    padding-left: 10%;
    position: relative; }
    .footer__brand--policy span {
      display: inline-block;
      font-size: 1.4rem;
      margin-right: 2rem; }

.footer__social--text-1 {
  font-size: 2rem;
  color: #000000; }

.footer__social--text-2 {
  font-size: 1.7rem;
  color: #009999; }

.footer__social--bg {
  background-color: rgba(192, 175, 175, 0.1);
  width: 7rem;
  height: 3rem;
  display: inline-block;
  position: absolute;
  z-index: -100;
  left: 20%; }

.grid-row {
  margin: 0 auto;
  max-width: 150rem;
  position: relative;
  width: 100%;
  content: "";
  display: table;
  clear: both; }
  .grid-row:not(:last-child) {
    margin-bottom: 0.2rem; }
  .grid-row > :not(:last-child) {
    margin-right: 1rem;
    padding-left: 1%; }
    @media only screen and (max-width: 900px) {
      .grid-row > :not(:last-child) {
        margin-right: 0 !important; } }
  .grid-row [class^="grid-col-"] {
    float: left; }
    @media only screen and (max-width: 900px) {
      .grid-row [class^="grid-col-"] {
        width: 100% !important; } }
  .grid-row .grid-col-12 {
    width: 100%; }
  .grid-row .grid-col-11 {
    width: calc(100% - (8.33333% * 1) - 1rem); }
  .grid-row .grid-col-10 {
    width: calc(100% - (8.33333%* 2) - 1rem); }
  .grid-row .grid-col-9 {
    width: calc(100% - (8.33333% * 3) - 1rem); }
  .grid-row .grid-col-8 {
    width: calc(100% - (8.33333% * 4) - 1rem); }
  .grid-row .grid-col-7 {
    width: calc(100% - (8.33333% * 5) - 1rem); }
  .grid-row .grid-col-6 {
    width: calc(100% - (8.33333% * 6) - 1rem); }
  .grid-row .grid-col-5 {
    width: calc(100% - (8.33333% * 7) - 1rem); }
  .grid-row .grid-col-4 {
    width: calc(100% - (8.33333% * 8) - 1rem); }
  .grid-row .grid-col-3 {
    width: calc(100% - (8.33333% * 9) - 1rem); }
  .grid-row .grid-col-2 {
    width: calc(100% - (8.33333% * 10) -  1rem); }
  .grid-row .grid-col-1 {
    width: calc(100% - (8.33333% * 11) - 1rem); }
  .grid-row .grid-offset-11 {
    left: 40%;
    position: relative; }

.accounts-u-header-content {
  padding-top: 2rem;
  background-color: #FFF; }
  .accounts-u-header-content--pos-fixed {
    position: fixed;
    z-index: 50; }
  .accounts-u-header-content--pos-fixed-alt {
    top: 0;
    position: fixed;
    z-index: 50; }

.accounts-u-header {
  position: relative; }
  .accounts-u-header .accounts-u-brand-fig {
    margin: 0 auto;
    padding-top: 1rem;
    padding-bottom: 1rem; }
    .accounts-u-header .accounts-u-brand-fig-logo {
      width: 5rem;
      position: relative;
      left: 40%; }
  .accounts-u-header .accounts-u-data {
    padding-left: 15%; }
  .accounts-u-header .accounts-u-coalescence {
    position: relative; }
    .accounts-u-header .accounts-u-coalescence .accounts-u-submit {
      position: absolute;
      left: 2%; }

.header {
  width: 100%; }
  .header__dropdown {
    width: 100%;
    z-index: 1000; }
    .header__dropdown--list {
      padding-left: 10%;
      padding-bottom: 1.5rem;
      background-color: #FFF;
      width: 100%; }
      .header__dropdown--list-i {
        list-style: none;
        padding: none;
        margin-bottom: 1.3rem; }
        .header__dropdown--list-i-link {
          text-decoration: none;
          color: #000;
          font-size: 1.3rem; }
    .header__dropdown--list-abs {
      position: absolute;
      width: 30%;
      z-index: 1;
      padding-left: 2%;
      padding-top: 2rem; }
  .header--fxd-logged {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: #FFF; }
  .header__offset {
    margin-bottom: 10rem; }
  .header__nav {
    position: absolute;
    padding-top: 2.5rem;
    right: 5%;
    z-index: 100; }
    .header__nav--item {
      color: #FFF;
      font-size: 1.5rem;
      margin-right: 2.5rem;
      display: inline-block;
      list-style: none;
      padding: 0;
      margin-bottom: 1.2rem; }
      .header__nav--item-link {
        text-decoration: none;
        color: #000; }
    .header__nav--item-offset {
      position: relative;
      margin-right: 10%; }
  .header__avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    margin-right: 15%;
    position: absolute;
    left: 35%;
    top: 3vh; }
    .header__avatar--img {
      width: 3rem;
      height: 3rem;
      border-radius: 50%; }

.menu-default {
  width: 20rem;
  height: 25rem;
  padding-top: 2rem; }

.menu-logged {
  width: 25rem;
  height: 15rem;
  padding-top: 2rem;
  position: fixed;
  z-index: 1000; }

.menu-custom {
  width: 20rem;
  height: 8rem;
  padding-top: 2rem; }

.bar {
  height: .1rem;
  display: block;
  background: #FFF;
  margin-bottom: 1rem; }

.bar-1 {
  width: 3.5rem; }

.bar-2 {
  width: 4rem; }

.bar-3 {
  width: 3.5rem; }

.mat-icon {
  display: inline-block;
  margin-top: .5rem;
  position: absolute;
  top: 2rem;
  right: 32%; }

.menu-text {
  font-size: 1.3rem; }

.menu-link {
  display: inline-block;
  margin-right: 1.5rem; }

.job-type {
  background-color: #FFF;
  position: absolute;
  top: 25%;
  height: 5rem;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  padding-left: 1rem;
  padding-right: 1.2rem; }

.sign {
  font-size: 1.4rem; }

.navigation_checkbox {
  display: none; }

.navigation_checkbox:checked ~ .navigation_background {
  transform: scale(80); }

.navigation_checkbox:checked ~ .navigation_nav {
  opacity: 1;
  width: 50%; }

.navigation_checkbox:checked ~ .navigation_button > .navigation_bar::after {
  opacity: 0; }

.navigation_checkbox:checked ~ .navigation_button > .navigation_bar {
  top: 2rem;
  background-color: #000;
  transform: rotate(135deg); }

.navigation_checkbox:checked ~ .navigation_button > .navigation_bar::before {
  top: 0;
  transform: rotate(-90deg); }

.navigation_button {
  background-color: #FFF;
  border: solid 0.1rem #009999;
  border-radius: 50%;
  height: 4rem;
  position: absolute;
  transition: transform .4s;
  width: 4rem;
  z-index: 500; }
  .navigation_button:hover {
    cursor: pointer; }
  .navigation_button:hover > * {
    background-color: #009999; }

.navigation_button--tp-offset-small {
  left: 2.5rem;
  top: .5rem; }

.navigation_button--tp-offset-medium {
  left: 2.5rem;
  top: 15.5rem; }

.navigation_bar {
  display: block;
  background-color: #000;
  width: 2.3rem;
  height: .14rem;
  position: relative;
  top: 1.2rem;
  transition: transform .3s;
  left: .8rem; }
  .navigation_bar::before, .navigation_bar::after {
    background-color: #000;
    content: "";
    display: block;
    position: absolute;
    width: 2.3rem;
    height: .14rem; }
  .navigation_bar::before {
    top: .7rem; }
  .navigation_bar::after {
    top: 1.5rem; }

.navigation_background {
  background-color: #009999;
  background-image: linear-gradient(to right bottom, rgba(0, 153, 153, 0.7), rgba(204, 51, 51, 0.5));
  border: none;
  border-radius: 50%;
  height: 4rem;
  position: absolute;
  overflow-x: hidden;
  transition: all .4s;
  width: 4rem;
  z-index: 400; }

.navigation_background--tp-offset-small {
  left: 2.5rem;
  top: .5rem; }

.navigation_background--tp-offset-medium {
  left: 2.5rem;
  top: 15.5rem; }

.navigation_nav {
  left: 30%;
  opacity: 0;
  position: fixed;
  transform: translate(-40%, -50%);
  top: 50%;
  transition: opacity .3s;
  width: 0;
  z-index: 450; }

.navigation_list {
  left: 35%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative; }
  @media only screen and (max-width: 600px) {
    .navigation_list {
      left: 0; } }

.navigation_item {
  background-image: linear-gradient(105deg, #cc3333 0%, #cc3333 50%, #FFF 50%);
  background-size: 195%;
  font-size: 2rem;
  height: 5rem;
  margin: 0 auto;
  padding-top: 1rem;
  transition: all .4s;
  width: 50%;
  /*@include responsive(tablet-portrait){


					width: 60%;

			}

			@include responsive(phone){



					width: 100%;


			}*/ }
  .navigation_item:hover {
    background-position: 100%; }

.navigation_item:hover > .navigation_link {
  color: black; }

.navigation_item:not(:last-child) {
  margin-bottom: 1rem; }

.navigation_link:link, .navigation_link:visited, .navigation_link:active {
  color: #FFF;
  display: block;
  text-decoration: none;
  margin: 0 auto;
  width: 50%; }
  @media only screen and (max-width: 600px) {
    .navigation_link:link, .navigation_link:visited, .navigation_link:active {
      width: 70%; } }

.accounts-chats-nav {
  width: 100%;
  position: relative;
  height: auto;
  padding-bottom: 15rem; }

.accounts-dashboard-nav {
  width: 100%; }
  .accounts-dashboard-nav-list {
    width: 100%; }
    .accounts-dashboard-nav-list-item {
      width: 100%;
      padding-bottom: 2rem;
      border-bottom: solid 1px #cc3333;
      margin-bottom: 3rem;
      font-size: 1.5rem; }
      .accounts-dashboard-nav-list-item:hover {
        border-bottom: solid 1px #000; }
    .accounts-dashboard-nav-list-link {
      width: 100%;
      text-decoration: none;
      color: #000;
      display: block;
      padding-left: 30%; }
      .accounts-dashboard-nav-list-link:hover {
        color: #cc3333; }

.pills {
  width: 100%; }
  .pills__pill {
    -webkit-box-shadow: -10px 10px 20px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: -10px 10px 20px 1px rgba(0, 0, 0, 0.2);
    box-shadow: -10px 10px 20px 1px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-bottom: 1.5rem;
    display: block;
    color: #000000;
    text-decoration: none;
    font-size: 2rem;
    border-radius: .5rem;
    padding: 1rem; }
    .pills__pill:hover {
      cursor: pointer;
      background-color: #cc3333; }
    .pills__pill:hover > * {
      background-color: #cc3333;
      color: #FFF; }
  .pills__pill-item {
    display: block; }
  .pills__pill-size-fl-tn {
    width: 10%; }
  .pills__pill-size-fl-xxx-sm {
    width: 30%; }
  .pills__pill-size-fl-md {
    width: 50%; }
  .pills__pill-size-fl-lg {
    width: 80%; }
  .pills__pill-size-fl-xx-bg {
    width: 100%; }
  .pills__pill-fg-primary {
    color: #009999; }
  .pills__pill-fg-dk {
    color: #000000; }
  .pills__pill-size-fg-secondary {
    color: #cc3333; }

.accounts-u-header {
  position: relative; }
  .accounts-u-header-nav-secondary {
    position: relative; }

.user-noti-nav-item {
  padding-top: .7rem; }

.message-icon {
  color: #FFF;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  position: relative;
  top: 50%;
  left: 50%;
  font-size: 1.5rem;
  transform: translate(-50%, -50%); }
  .message-icon small {
    font-size: 1.5rem;
    text-transform: uppercase; }

.message-alert {
  color: #FFF;
  font-size: 1.2rem;
  background-color: #ffcc66;
  text-align: center;
  display: inline-block;
  position: absolute;
  left: 30%;
  bottom: 2.5rem;
  height: 1.8rem;
  border-radius: .2rem; }

.accounts-u-id {
  position: relative;
  width: 100%;
  bottom: 1.5rem; }

.accounts-u--id {
  width: 4rem;
  background-color: #009999;
  height: .2rem;
  position: absolute;
  left: 50%;
  top: .6rem;
  transform: translateX(-50%);
  transition: all .5s; }

.koka-header__coalescence .koka-header__nav-secondary {
  position: absolute;
  top: 15rem;
  width: 25%;
  right: 0; }

.login-item {
  border-bottom: solid 2px #009999;
  padding-left: .6rem;
  padding-bottom: .8rem; }

.join-item {
  border: solid 0.1rem #2E8B57;
  padding-top: .2rem;
  padding-bottom: .7rem;
  padding-left: .4rem;
  width: 22%;
  margin-left: 2rem;
  margin-right: 2rem; }
  .join-item-text-variant {
    color: #2E8B57;
    font-size: 1.8rem;
    font-weight: 500; }

.hidden-menu-modify {
  padding-top: 4rem; }

.hidden-menu-common:hover {
  cursor: pointer; }

.hidden-menu-common:hover > .menu-icons {
  color: #cc3333; }

.hidden-menu-common:hover > .collapsable {
  transform: scale(1); }

.hidden-menu-common .menu-icons {
  font-size: 1.8rem;
  font-weight: bold;
  color: rgba(153, 153, 153, 0.8);
  position: absolute; }
  .hidden-menu-common .menu-icons span {
    display: inline-block;
    position: relative;
    bottom: .5rem; }
    .hidden-menu-common .menu-icons span:not(last-child) {
      margin-right: .8rem; }

.hidden-menu-common .u-menu-icons span {
  bottom: 2.5rem; }

.about {
  margin-bottom: 40rem; }
  .about__us {
    width: 100%;
    margin-bottom: 25rem;
    position: relative; }
    .about__us--jo {
      width: 20%;
      float: left; }
      .about__us--jo-pik {
        width: 30%;
        position: absolute;
        top: 15vh;
        left: 5%; }
      .about__us--jo-title {
        position: relative;
        left: 40%;
        top: 3vh; }
        .about__us--jo-title-text {
          font-size: 1.7rem; }
        .about__us--jo-title-bar {
          height: .2rem;
          width: 3rem;
          background-color: #cc3333;
          display: block;
          margin-left: 10%;
          margin-top: 1rem; }
    .about__us--bio {
      width: 80%;
      float: left;
      position: relative; }
      .about__us--bio-cont {
        background-color: rgba(192, 175, 175, 0.1);
        height: 43rem;
        width: 90%;
        position: relative; }
      .about__us--bio-detail {
        width: 70%;
        position: relative;
        left: 40%;
        top: 20vh; }
        .about__us--bio-detail-title {
          position: relative; }
          .about__us--bio-detail-title-text {
            font-size: 1.6rem; }
          .about__us--bio-detail-title-bar {
            height: .2rem;
            width: 3rem;
            background-color: #009999;
            display: block;
            margin-left: 7%;
            margin-top: 1rem; }
        .about__us--bio-detail-msg {
          background-color: #fff;
          width: 50%;
          position: relative;
          left: 2%;
          padding-top: 3rem;
          padding-right: 3rem;
          padding-left: 3rem;
          padding-bottom: 4rem;
          margin-top: 7vh; }
          .about__us--bio-detail-msg-text {
            font-size: 1.6rem; }
      .about__us--bio-value {
        position: absolute;
        width: 15rem;
        padding-top: 4.5rem;
        padding-bottom: 3rem;
        padding-left: 1.5rem;
        right: -8%;
        top: 21vh; }
        .about__us--bio-value-title {
          position: relative;
          left: -2.5rem;
          margin-bottom: 3rem; }
          .about__us--bio-value-title-text-1 {
            font-size: 1.6rem;
            color: #009999;
            display: inline-block;
            margin-right: .5rem; }
          .about__us--bio-value-title-text-2 {
            font-size: 1.6rem; }
        .about__us--bio-value-box-i {
          margin-bottom: 2rem; }
        .about__us--bio-value-box-point {
          width: 1rem;
          height: 1rem;
          background-color: #cc3333;
          display: inline-block;
          margin-right: .7rem; }
        .about__us--bio-value-box-text {
          display: inline-block;
          font-size: 1.6rem; }
  .about__players {
    width: 100%;
    margin-bottom: 15rem;
    position: relative; }
    .about__players--header {
      width: 100%;
      padding-left: 35%;
      margin-bottom: 15rem;
      position: relative; }
      .about__players--header-title {
        position: relative; }
        .about__players--header-title-text {
          font-size: 4.5rem;
          display: inline-block;
          margin-right: .2rem; }
        .about__players--header-title-dot {
          width: .9rem;
          height: .9rem;
          border-radius: 50%;
          display: inline-block;
          background-color: #ffd966; }
        .about__players--header-title-sub {
          width: 40%;
          display: block;
          position: relative;
          right: -23%;
          margin-top: 1.3rem;
          font-size: 1.3rem;
          color: #009999; }
    .about__players--to {
      width: 70%;
      padding-left: 20%; }
      .about__players--to-text {
        font-size: 1.7rem; }
    .about__players--appreciate {
      position: relative;
      width: 20rem;
      margin-left: 2%;
      height: 20rem;
      border-radius: 50%;
      margin-top: 12rem;
      text-align: center;
      background-color: #cc3333;
      cursor: pointer; }
      .about__players--appreciate-text {
        position: relative;
        font-size: 1.9rem;
        display: inline-block;
        color: #FFF;
        top: 40%; }
  .about__service {
    width: 100%; }
    .about__service--wrap {
      width: 40%;
      float: left; }
      .about__service--wrap-title {
        margin-left: 15%; }
        .about__service--wrap-title-text {
          display: inline-block;
          font-size: 2.5rem;
          width: 60%;
          margin-top: 25vh; }
    .about__service--key {
      width: 60%;
      float: left;
      position: relative; }
      .about__service--key-title {
        position: absolute;
        right: 1%;
        padding: 5rem;
        height: 20rem;
        width: 80%;
        background-color: #009999; }
        .about__service--key-title-text {
          display: inline-block;
          font-size: 3.5rem;
          margin-top: 5vh;
          color: #FFF;
          position: absolute;
          right: 35%; }
  .about__jobseeker {
    width: 100%;
    margin-top: 15rem; }
    .about__jobseeker--header {
      width: 100%;
      padding-left: 35%;
      position: relative; }
      .about__jobseeker--header-title {
        position: relative;
        margin-bottom: 10rem; }
        .about__jobseeker--header-title-text {
          font-size: 3rem;
          display: inline-block;
          margin-right: .2rem;
          margin-left: 5%; }
        .about__jobseeker--header-title-bar-1 {
          height: .2rem;
          width: 3rem;
          background-color: #cc3333;
          display: block;
          margin-left: 10%;
          margin-top: 1rem;
          background-color: #ffd966; }
        .about__jobseeker--header-title-bar-2 {
          height: .2rem;
          width: 10rem;
          background-color: #cc3333;
          display: block;
          margin-left: 10%;
          margin-top: 1rem;
          background-color: #ffd966; }
        .about__jobseeker--header-title-sub {
          width: 40%;
          display: block;
          position: relative;
          margin-left: 8%;
          margin-top: 1.3rem;
          margin-bottom: 1.2rem;
          font-size: 1.5rem; }
    .about__jobseeker--b {
      width: 33%;
      float: left; }
      .about__jobseeker--b p {
        background-color: #FFF;
        padding: 4rem;
        height: 15rem;
        width: 80%;
        margin: 0 auto; }
      .about__jobseeker--b-icon {
        display: inline-block;
        text-align: center;
        margin-right: 2.5rem; }
      .about__jobseeker--b-title {
        display: inline-block;
        text-align: center; }
      .about__jobseeker--b-text {
        display: block;
        margin-top: 7rem;
        font-size: 1.6rem; }
    .about__jobseeker--b2 {
      width: 33%;
      float: left; }
      .about__jobseeker--b2 p {
        background-color: #FFF;
        padding: 4rem;
        height: 15rem;
        width: 80%;
        margin: 0 auto; }
    .about__jobseeker--b3 {
      width: 33%;
      float: left; }
      .about__jobseeker--b3 p {
        background-color: #FFF;
        padding: 4rem;
        width: 80%;
        height: 15rem; }
    .about__jobseeker--influ {
      width: 80%;
      margin: 0 auto;
      margin-top: 18rem; }
      .about__jobseeker--influ-search {
        width: 48%;
        float: left;
        margin-right: 3%; }
      .about__jobseeker--influ-alert {
        width: 48%;
        float: left; }
  .about__employer {
    width: 100%;
    margin-top: 15rem;
    position: relative; }
    .about__employer--header {
      width: 100%;
      padding-left: 35%;
      position: relative; }
      .about__employer--header-title {
        position: relative;
        margin-bottom: 10rem; }
        .about__employer--header-title-text {
          font-size: 3rem;
          display: inline-block;
          margin-right: .2rem;
          margin-left: 5%; }
        .about__employer--header-title-bar-1 {
          height: .2rem;
          width: 3rem;
          background-color: #cc3333;
          display: block;
          margin-left: 10%;
          margin-top: 1rem;
          background-color: #ffd966; }
        .about__employer--header-title-bar-2 {
          height: .2rem;
          width: 10rem;
          background-color: #cc3333;
          display: block;
          margin-left: 10%;
          margin-top: 1rem;
          background-color: #ffd966; }
        .about__employer--header-title-sub {
          width: 40%;
          display: block;
          position: relative;
          margin-left: 8%;
          margin-top: 1.3rem;
          margin-bottom: 1.2rem;
          font-size: 1.5rem; }
    .about__employer--b {
      width: 33%;
      float: left; }
      .about__employer--b p {
        background-color: #FFF;
        padding: 4rem;
        height: 15rem;
        width: 80%;
        margin: 0 auto; }
      .about__employer--b-icon {
        display: inline-block;
        text-align: center;
        margin-right: 2.5rem; }
      .about__employer--b-title {
        display: inline-block;
        text-align: center; }
      .about__employer--b-text {
        display: block;
        margin-top: 7rem;
        font-size: 1.6rem; }
      .about__employer--b-button {
        width: 20rem;
        border: none;
        border-radius: .2rem;
        padding: 1rem;
        background-color: #009999;
        margin-top: 6rem;
        color: #FFf; }
    .about__employer--post {
      position: absolute;
      bottom: 5%;
      right: 10%;
      top: 80vh; }
      .about__employer--post-button {
        width: 20rem;
        font-size: 1.4rem;
        border: none;
        border-radius: .2rem;
        padding: 4rem;
        margin-top: 6rem;
        color: #cc3333;
        background-color: rgba(192, 175, 175, 0.1); }
        .about__employer--post-button:hover {
          color: #FFf;
          background-color: #cc3333; }
  .about__platform-circle {
    display: inline-block;
    position: relative;
    top: 35%;
    font-size: 1.2rem;
    width: 80%;
    left: 25%; }
  .about__platform-circle-1 {
    position: relative;
    left: 33%;
    top: 3vh; }
  .about__platform-circle-2 {
    position: absolute;
    right: 31%;
    top: 8vh; }
  .about__platform-circle-3 {
    position: absolute;
    left: 25%;
    top: 25vh; }
  .about__platform-circle-4 {
    position: absolute;
    right: 33%;
    top: 31vh; }
  .about__platform-text {
    left: 46%;
    top: 25vh; }
  .about__declare-1 {
    margin-bottom: 3rem;
    width: 5rem;
    font-size: 2rem; }
  .about__declare-2 {
    margin-left: 3%;
    font-size: 2rem;
    width: 5rem; }
  .about__focus-slant-txt {
    position: relative;
    left: 7%;
    font-size: 1.5rem;
    top: 5vh;
    transform: rotate(-30deg);
    width: 30%; }
  .about__focus-slant-line {
    left: 25%;
    position: relative;
    transform: rotate(60deg);
    height: 16rem;
    width: 1rem;
    top: -5vh;
    box-shadow: -5px 10px 5px 2px rgba(0, 0, 0, 0.04); }
  .about__focus-slant-line-anti-40 {
    left: 25%;
    position: absolute;
    transform: rotate(-60deg);
    height: 16rem;
    width: 1rem;
    box-shadow: -5px 10px 5px 2px rgba(0, 0, 0, 0.04); }
  .about__video {
    margin-left: 13%;
    height: 32rem; }
  .about__perspective {
    height: 50rem;
    transform: rotate(-10deg);
    width: 95%;
    top: 2%;
    height: 30rem;
    margin-left: 5%; }
  .about__tangle-tp-lt-primary {
    width: 0;
    height: 0;
    border-top: 150px solid #009999;
    border-right: 150px solid transparent; }
  .about__tangle-tp-lt-red {
    width: 0;
    height: 0;
    border-top: 150px solid #F00;
    border-right: 150px solid transparent; }
  .about__tangle-tp-lt-green {
    width: 0;
    height: 0;
    border-top: 150px solid	#096;
    border-right: 150px solid transparent; }
  .about__top-offset-vh-a-xxx-bt {
    top: -1vh; }
  .about__top-offset-vh-4 {
    top: 4vh; }
  .about__top-offset-vh-a-bt {
    top: -5vh; }
  .about__parallelogram-anti-2 {
    width: 60%;
    background: #fff;
    /* Skew */
    -webkit-transform: skew(-20deg);
    -moz-transform: skew(-20deg);
    -o-transform: skew(-20deg);
    transform: skew(-20deg); }

.contact {
  width: 100%; }
  .contact__mail {
    width: 100%;
    margin-bottom: 25rem;
    position: relative; }
    .contact__mail--jo {
      width: 20%;
      float: left; }
      .contact__mail--jo-form {
        background-color: #fff;
        z-index: 100;
        width: 65%;
        position: absolute;
        top: 15vh;
        left: 5%;
        padding-left: 2%;
        padding-top: 2%; }
        .contact__mail--jo-form-i {
          width: 33%;
          float: left; }
        .contact__mail--jo-form-textbox {
          margin-top: 7rem; }
          .contact__mail--jo-form-textbox-box {
            background-color: rgba(192, 175, 175, 0.1);
            padding-left: 1.5rem;
            height: 10rem;
            border: none;
            border-left: solid #009999 0.3rem;
            width: 85%;
            padding-top: 2rem;
            padding-left: 2%; }
        .contact__mail--jo-form-text {
          background-color: #FFF;
          padding-left: 1.5rem;
          height: 8rem;
          border: none;
          border-left: solid #009999 0.3rem;
          width: 85%; }
        .contact__mail--jo-form-submit {
          position: absolute;
          width: 12rem;
          height: 12rem;
          border-radius: 50%;
          right: -5%;
          text-align: center;
          background-color: #009999;
          bottom: -7vh;
          cursor: pointer; }
          .contact__mail--jo-form-submit span {
            position: relative;
            display: inline-block;
            color: #FFF;
            top: 70vh; }
      .contact__mail--jo-title {
        position: relative;
        left: 40%;
        top: 3vh; }
        .contact__mail--jo-title-text {
          font-size: 1.7rem; }
        .contact__mail--jo-title-bar {
          height: .2rem;
          width: 3rem;
          background-color: #cc3333;
          display: block;
          margin-left: 10%;
          margin-top: 1rem; }
    .contact__mail--bio {
      width: 80%;
      float: left;
      position: relative; }
      .contact__mail--bio-cont {
        background-color: rgba(192, 175, 175, 0.1);
        height: 43rem;
        width: 90%;
        position: relative; }
      .contact__mail--bio-detail {
        width: 70%;
        position: relative;
        left: 40%;
        top: 20vh; }
        .contact__mail--bio-detail-title {
          position: relative; }
          .contact__mail--bio-detail-title-text {
            font-size: 1.6rem; }
          .contact__mail--bio-detail-title-bar {
            height: .2rem;
            width: 3rem;
            background-color: #009999;
            display: block;
            margin-left: 7%;
            margin-top: 1rem; }
        .contact__mail--bio-detail-msg {
          background-color: #fff;
          width: 50%;
          position: relative;
          left: 2%;
          padding-top: 3rem;
          padding-right: 3rem;
          padding-left: 3rem;
          padding-bottom: 4rem;
          margin-top: 7vh; }
          .contact__mail--bio-detail-msg-text {
            font-size: 1.6rem; }
      .contact__mail--bio-value {
        position: absolute;
        width: 20rem;
        padding-top: 4.5rem;
        padding-bottom: 3rem;
        padding-left: 1.5rem;
        right: -8%;
        top: 21vh; }
        .contact__mail--bio-value-title {
          position: relative;
          left: -4.5rem;
          margin-bottom: 3rem; }
          .contact__mail--bio-value-title-text-1 {
            font-size: 1.6rem;
            color: #009999;
            display: inline-block;
            margin-right: .5rem; }
          .contact__mail--bio-value-title-text-2 {
            font-size: 1.6rem; }
        .contact__mail--bio-value-box-i {
          margin-bottom: 2rem; }
        .contact__mail--bio-value-box-point {
          width: 1rem;
          height: 1rem;
          background-color: #cc3333;
          display: inline-block;
          margin-right: .7rem; }
        .contact__mail--bio-value-box-text {
          display: inline-block;
          font-size: 1.6rem; }
  .contact__touch {
    width: 100%;
    margin-top: 15rem;
    position: relative; }
    .contact__touch--header {
      width: 100%;
      padding-left: 35%;
      position: relative; }
      .contact__touch--header-title {
        position: relative;
        margin-bottom: 10rem; }
        .contact__touch--header-title-text {
          font-size: 3rem;
          display: inline-block;
          margin-right: .2rem;
          margin-left: 5%; }
        .contact__touch--header-title-bar-1 {
          height: .2rem;
          width: 3rem;
          background-color: #cc3333;
          display: block;
          margin-left: 10%;
          margin-top: 1rem;
          background-color: #ffd966; }
        .contact__touch--header-title-bar-2 {
          height: .2rem;
          width: 10rem;
          background-color: #cc3333;
          display: block;
          margin-left: 10%;
          margin-top: 1rem;
          background-color: #ffd966; }
        .contact__touch--header-title-sub {
          width: 40%;
          display: block;
          position: relative;
          margin-left: 8%;
          margin-top: 1.3rem;
          margin-bottom: 1.2rem;
          font-size: 1.5rem; }
    .contact__touch--content {
      width: 80%;
      margin: 0 auto;
      height: 15rem;
      margin-bottom: 25rem;
      padding-left: 2%;
      padding-top: 3rem;
      height: 25rem; }
      .contact__touch--content-1 {
        width: 40%;
        float: left;
        background-color: #009999;
        margin-right: 2%;
        padding-top: 1.5rem;
        height: 15rem; }
        .contact__touch--content-1 h2 {
          color: yellow;
          font-size: 1.7rem;
          margin-bottom: 3rem;
          text-align: center; }
        .contact__touch--content-1 div {
          color: #fff;
          font-size: 1.5rem;
          padding-bottom: 1.5rem;
          text-align: center; }
          .contact__touch--content-1 div span {
            display: block;
            margin-bottom: 1rem; }
      .contact__touch--content-2 {
        width: 40%;
        float: left;
        background-color: #009999;
        height: 15rem; }
        .contact__touch--content-2 h2 {
          color: yellow;
          font-size: 1.7rem;
          margin-bottom: 3rem;
          text-align: center;
          padding-top: 1.5rem; }
        .contact__touch--content-2 div {
          color: #fff;
          font-size: 1.5rem;
          padding-bottom: 1.5rem;
          text-align: center; }
          .contact__touch--content-2 div span {
            display: block;
            margin-bottom: 1rem; }
    .contact__touch--circle {
      position: absolute;
      width: 40rem;
      margin-left: 2%;
      height: 40rem;
      border-radius: 50%;
      right: 2%;
      top: 35vh;
      z-index: -1000;
      background-color: #cc3333; }

.action-btn {
  right: 2.5%;
  bottom: 17.5%; }

.track-offset-sm {
  margin-top: 15rem; }

.track-offset-lg {
  margin-top: 25rem; }

.portfolio-title-container {
  background-color: rgba(0, 0, 0, 0.8);
  width: 65%;
  height: 8rem;
  color: white;
  transform: skew(-10deg);
  position: relative; }

.portfolio-title {
  position: absolute;
  top: 30%;
  left: 10%;
  font-size: 1.7rem;
  transform: translateY(-50%); }

.item-adjust {
  position: absolute;
  border-bottom: solid 0.2rem #cc3333;
  font-size: 2.5rem;
  display: block;
  left: 30%;
  top: 50%;
  padding-bottom: .3rem; }

.blog {
  height: auto;
  padding-bottom: 5rem;
  width: 100%;
  height: 100vh;
  margin-top: 10rem;
  margin-bottom: 15rem;
  position: relative; }
  .blog__header--container {
    top: -5vh;
    width: 30%;
    position: relative;
    left: 35%;
    margin-bottom: 8rem; }
  .blog__header {
    background-color: #FFF;
    height: 7rem;
    position: relative;
    width: 68%; }
    .blog__header--signup, .blog__header--signin, .blog__header--vbar {
      display: inline-block;
      position: absolute; }
    .blog__header--signup, .blog__header--signin {
      font-size: 1.4rem; }
    .blog__header--signup {
      left: 5%;
      top: 2vh; }
    .blog__header--signin {
      top: 5vh;
      right: 20%; }
    .blog__header--vbar {
      background-color: #009999;
      width: .2rem;
      height: 4rem;
      left: 45%;
      top: 1.5vh; }
  .blog__primary {
    width: 70%;
    float: left; }
    .blog__primary--sm {
      width: 35%;
      float: left;
      padding-left: 2%;
      padding-top: 5rem; }
    .blog__primary--lg {
      width: 65%;
      float: left;
      position: relative; }
    .blog__primary--post {
      width: 100%;
      position: relative; }
      .blog__primary--post-content {
        width: 80%;
        font-size: 1.5rem;
        color: rgba(0, 0, 0, 0.6); }
      .blog__primary--post-offset {
        position: relative;
        left: 2%;
        top: 25vh; }
      .blog__primary--post-lg-title {
        font-size: 2.5rem;
        margin-bottom: 1.1rem;
        color: rgba(0, 0, 0, 0.8); }
      .blog__primary--post-lg-author {
        position: absolute;
        left: -15%;
        top: 30vh;
        width: 18%; }
        .blog__primary--post-lg-author-name {
          font-size: 1.2rem;
          display: block;
          margin-bottom: 1rem;
          text-align: right;
          margin-right: 1rem; }
        .blog__primary--post-lg-author-pik {
          width: 4rem;
          height: 4rem;
          display: inline-block;
          border-radius: .3rem;
          position: relative;
          left: 64%; }
      .blog__primary--post-lg-date {
        font-size: 1.1rem;
        margin-bottom: 5rem;
        display: inline-block;
        color: #cc3333;
        position: relative;
        left: 25%; }
      .blog__primary--post-lg-fig {
        width: 80%;
        margin-bottom: 2.5rem;
        padding-left: 3%; }
      .blog__primary--post-lg-pik {
        width: 100%;
        position: relative; }
      .blog__primary--post-sm-title {
        font-size: 1.3rem;
        margin-bottom: .6rem;
        color: rgba(0, 0, 0, 0.7); }
      .blog__primary--post-sm-date {
        font-size: 1.1rem;
        margin-bottom: 1.4rem;
        display: inline-block;
        color: #009999;
        position: relative;
        left: 25%; }
      .blog__primary--post-sm-fig {
        width: 25%;
        margin-bottom: 1.3rem; }
      .blog__primary--post-sm-pik {
        width: 100%;
        position: relative; }
  .blog__secondary {
    width: 30%;
    float: left;
    padding-top: 20rem; }
    .blog__secondary--post {
      width: 100%;
      position: relative;
      margin-bottom: 5rem; }
      .blog__secondary--post-figda {
        width: 20%;
        float: left;
        padding-top: 1rem; }
      .blog__secondary--post-conti {
        width: 70%;
        float: left; }
      .blog__secondary--post-content {
        width: 80%;
        font-size: 1.3rem;
        color: rgba(0, 0, 0, 0.6);
        margin-bottom: 1.2rem; }
      .blog__secondary--post-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        color: rgba(0, 0, 0, 0.8); }
      .blog__secondary--post-date {
        font-size: 1rem;
        margin-bottom: 3rem;
        display: inline-block;
        color: #cc3333;
        position: relative; }
      .blog__secondary--post-fig {
        width: 90%;
        padding-left: .4rem; }
      .blog__secondary--post-pik {
        width: 4rem;
        position: relative;
        border-radius: .6rem;
        margin-bottom: .8rem; }
      .blog__secondary--post-tag {
        border: none;
        background-color: #cc3333;
        height: 2rem;
        width: 8rem;
        color: #FFF;
        cursor: pointer;
        display: inline-block;
        border-radius: .3rem; }
    .blog__secondary--views {
      position: relative;
      cursor: pointer;
      margin-left: 15%; }
      .blog__secondary--views:hover .blog__secondary--views-v {
        background-color: rgba(128, 128, 128, 0.3); }
      .blog__secondary--views-v, .blog__secondary--views-a {
        border: none;
        cursor: pointer; }
      .blog__secondary--views-v {
        background-color: rgba(128, 128, 128, 0.1);
        padding: .9rem;
        color: #009999;
        display: inline-block; }
      .blog__secondary--views-a {
        background-color: #cc3333;
        padding: 1rem;
        color: #FFF;
        display: inline-block; }

.post {
  height: auto;
  padding-bottom: 5rem;
  width: 100%;
  height: 100vh;
  margin-top: 10rem;
  margin-bottom: 15rem;
  position: relative; }
  .post__post {
    width: 75%;
    float: left; }
    .post__post--text {
      width: 45%;
      float: left;
      padding-left: 2%; }
      .post__post--text-wrap {
        margin-bottom: 10rem; }
      .post__post--text-title {
        font-size: 2.5rem;
        margin-bottom: 8rem;
        color: rgba(0, 0, 0, 0.8);
        margin-left: 10%; }
      .post__post--text-content {
        width: 85%;
        font-size: 1.5rem; }
        .post__post--text-content-p {
          margin-bottom: 1.4rem; }
      .post__post--text-social-share {
        background-color: #cc3333;
        padding: .8rem 3rem;
        color: #FFF;
        display: inline-block;
        cursor: pointer;
        border: none; }
      .post__post--text-social-s-wrap {
        display: inline-block;
        margin-right: 5rem; }
      .post__post--text-social-p-wrap {
        position: relative;
        display: inline-block;
        width: 20rem;
        padding: 3rem;
        padding-left: .5rem;
        padding-top: 1.5rem; }
        .post__post--text-social-p-wrap-1, .post__post--text-social-p-wrap-2, .post__post--text-social-p-wrap-3, .post__post--text-social-p-wrap-4 {
          display: inline-block;
          width: 4rem;
          height: 4rem;
          background-color: rgba(128, 128, 128, 0.1);
          position: absolute;
          top: 3vh;
          border: none;
          cursor: pointer; }
        .post__post--text-social-p-wrap-2 {
          left: 25%; }
        .post__post--text-social-p-wrap-3 {
          left: 48%; }
        .post__post--text-social-p-wrap-4 {
          left: 72%; }
        .post__post--text-social-p-wrap-img, .post__post--text-social-p-wrap-img, .post__post--text-social-p-wrap-img, .post__post--text-social-p-wrap-img {
          width: 90%; }
    .post__post--grafik {
      width: 50%;
      float: left;
      position: relative; }
      .post__post--grafik-fig {
        width: 95%;
        margin-bottom: 2.5rem; }
      .post__post--grafik-pik {
        width: 100%;
        position: relative; }
      .post__post--grafik-author {
        position: relative; }
        .post__post--grafik-author-by {
          display: inline-block;
          font-size: 1.3rem;
          margin-right: 2rem; }
        .post__post--grafik-author-pik {
          width: 5rem;
          height: 5rem;
          display: inline-block;
          border-radius: .5rem;
          position: relative;
          margin-right: 2rem;
          top: 3vh; }
        .post__post--grafik-author-wrap {
          display: inline-block;
          top: 2vh;
          position: relative; }
        .post__post--grafik-author-date {
          display: block;
          font-size: 1.5rem;
          display: block;
          margin-bottom: 1rem;
          color: rgba(0, 0, 0, 0.6); }
        .post__post--grafik-author-name {
          font-size: 1.2rem;
          display: block;
          margin-bottom: 1rem;
          text-align: right;
          margin-right: 1rem; }
  .post__related {
    width: 25%;
    float: left;
    padding-top: 15rem;
    position: relative; }
    .post__related--title {
      margin-bottom: 3rem; }
    .post__related--post-wrap {
      width: 60%;
      background-color: rgba(204, 191, 191, 0.3);
      padding: 1rem;
      position: absolute;
      right: 0%; }
    .post__related--post {
      width: 100%;
      position: relative;
      margin-bottom: 1.5rem;
      padding-bottom: 2rem;
      border-bottom: solid 0.1rem rgba(0, 153, 153, 0.4); }
      .post__related--post-title {
        font-size: 1.3rem;
        color: rgba(0, 0, 0, 0.8);
        display: inline-block; }
      .post__related--post-pik {
        width: 2.5rem;
        height: 2.5rem;
        position: relative;
        display: inline-block;
        border-radius: .6rem;
        margin-right: 1.5rem;
        top: 1vh; }

.archive {
  height: auto;
  padding-bottom: 5rem;
  width: 100%;
  height: 100vh;
  margin-top: 10rem;
  margin-bottom: 15rem;
  position: relative; }
  .archive__filters {
    width: 30%;
    float: left;
    padding-left: 2%;
    position: relative; }
    .archive__filters--title {
      margin-bottom: 5rem;
      font-size: 3rem; }
    .archive__filters--collection {
      margin-bottom: 3rem; }
      .archive__filters--collection-all, .archive__filters--collection-up, .archive__filters--collection-ca {
        background-color: #cc3333;
        padding: .8rem 3rem;
        color: #FFF;
        display: inline-block;
        cursor: pointer;
        margin-right: 1.5rem;
        border: none; }
        .archive__filters--collection-all:hover, .archive__filters--collection-up:hover, .archive__filters--collection-ca:hover {
          background-color: rgba(128, 128, 128, 0.1);
          color: #000000; }
    .archive__filters--date {
      width: 100%; }
      .archive__filters--date:hover .archive__filters--date-icon {
        color: rgba(0, 0, 0, 0.9); }
      .archive__filters--date:hover .archive__filters--date-text {
        color: rgba(0, 0, 0, 0.9); }
      .archive__filters--date-btn {
        display: inline-block;
        padding: 1rem;
        margin-right: 3%;
        background-color: rgba(128, 128, 128, 0.2);
        border: none; }
      .archive__filters--date-wrap {
        display: inline-block;
        width: 30%;
        padding: 1rem;
        cursor: pointer;
        background-color: #009999; }
        .archive__filters--date-wrap:hover {
          background-color: rgba(128, 128, 128, 0.1); }
      .archive__filters--date-icon {
        font-size: 1.3rem;
        color: #FFF;
        display: inline-block;
        position: relative;
        margin-right: 1.5rem;
        top: .4vh; }
      .archive__filters--date-text {
        color: #FFF;
        display: inline-block;
        font-size: 1.3rem; }
  .archive__posts {
    width: 70%;
    float: left;
    position: relative; }
    .archive__posts--row {
      width: 95%;
      margin-bottom: 7rem; }
      .archive__posts--row-i {
        width: 19%;
        float: left;
        margin-right: .5%; }
        .archive__posts--row-i-pik {
          width: 80%;
          position: relative;
          margin-bottom: 1rem; }
        .archive__posts--row-i-title {
          font-size: 1.4rem;
          margin-bottom: 1rem;
          color: rgba(0, 0, 0, 0.8); }
        .archive__posts--row-i-content {
          font-size: 1.1rem;
          margin-bottom: 1.1rem;
          width: 80%;
          color: rgba(0, 0, 0, 0.6); }
        .archive__posts--row-i-tag {
          color: #009999;
          font-size: 1.2rem;
          cursor: pointer; }

.careers__traits-offset-1 {
  top: -15vh; }

.careers__traits-offset-2 {
  top: -10vh; }

.careers__traits-offset-3 {
  top: -5vh; }

.accounts-chats {
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  top: 5rem;
  padding-top: 0;
  padding-bottom: 5rem; }

.settings__box {
  height: 8rem;
  width: 8rem;
  margin-left: 5%;
  cursor: pointer;
  text-align: center;
  margin-bottom: 1rem;
  background-color: #fff; }

.chats-bar {
  top: 14.8rem;
  position: fixed;
  width: 48%; }

.chat-content {
  top: 8rem;
  position: relative; }

.chats-profile {
  top: 14.8rem;
  width: 24%;
  left: 75%;
  height: 100vh; }

.chats-form-bar {
  top: 91.7vh;
  position: fixed;
  width: 48%; }

.main-content {
  position: relative; }

.accounts-dashboard {
  position: fixed;
  top: 15rem;
  padding-top: 3rem;
  background-color: rgba(0, 153, 153, 0.2);
  height: 100%;
  width: 25%; }

.accounts-content {
  position: relative;
  top: 15rem;
  left: 27%;
  height: 100%;
  width: 70%; }

.dashboard {
  width: 100%;
  position: relative;
  background-color: yellow; }
  .dashboard__sidebar {
    width: 25rem;
    background-color: #FFF;
    position: fixed;
    top: 23vh;
    height: 85vh;
    z-index: 1000; }
    .dashboard__sidebar--tools {
      width: 80%;
      margin: 0 auto;
      text-align: center;
      font-size: 2rem;
      padding: 1.5rem;
      background-color: #FFF;
      position: relative;
      top: -7vh; }
    .dashboard__sidebar--nav {
      padding-left: 25%;
      position: relative; }
      .dashboard__sidebar--nav-link {
        display: block;
        margin-bottom: 3.5rem; }
        .dashboard__sidebar--nav-link:hover {
          color: red; }
      .dashboard__sidebar--nav-icon {
        display: inline-block;
        margin-right: 2rem; }
      .dashboard__sidebar--nav-text {
        font-size: 1.5rem;
        display: inline-block;
        position: relative;
        bottom: .5vh;
        color: grey; }
    .dashboard__sidebar--settingoffset {
      padding-left: 13%;
      position: relative;
      bottom: 0;
      height: 15rem; }
      .dashboard__sidebar--settingoffset-icon {
        display: inline-block;
        margin-right: 2rem;
        position: relative;
        top: 15vh;
        color: red; }
      .dashboard__sidebar--settingoffset-text {
        font-size: 1.5rem;
        display: inline-block;
        position: relative;
        bottom: .5vh;
        color: grey;
        position: relative;
        top: 14.6vh; }
  .dashboard__candidatedash {
    position: relative;
    top: 15vh;
    left: 20%;
    width: 80%;
    padding-top: 15rem; }
    .dashboard__candidatedash--i {
      width: 33%;
      float: left;
      position: relative; }
      .dashboard__candidatedash--i-box {
        width: 80%;
        padding: 2rem;
        position: relative; }
        .dashboard__candidatedash--i-box-title {
          display: block;
          font-size: 2.3rem;
          color: #cc3333;
          margin-bottom: 3rem; }
        .dashboard__candidatedash--i-box-count {
          display: block;
          font-size: 2.5rem;
          margin-bottom: 5rem;
          padding-left: 25%; }
        .dashboard__candidatedash--i-box-actions {
          text-align: center; }
          .dashboard__candidatedash--i-box-actions-b1, .dashboard__candidatedash--i-box-actions-b2 {
            border: none;
            position: relative;
            background-color: rgba(192, 175, 175, 0.05);
            color: #009999;
            display: inline-block;
            padding: 1.5rem; }
            .dashboard__candidatedash--i-box-actions-b1:hover, .dashboard__candidatedash--i-box-actions-b2:hover {
              color: #000000; }
          .dashboard__candidatedash--i-box-actions-b1 {
            margin-right: 3%; }
          .dashboard__candidatedash--i-box-actions-b2-add {
            display: inline-block;
            margin-right: .5rem;
            color: #cc3333;
            font-weight: bold; }
  .dashboard__savedjobs {
    position: relative;
    top: 15vh;
    left: 20%;
    width: 80%;
    padding-top: 5rem; }
    .dashboard__savedjobs--i {
      width: 33%;
      position: relative;
      margin-bottom: 5rem; }
      .dashboard__savedjobs--i-box {
        width: 80%;
        padding: 2rem;
        padding: 4rem 3rem 2rem 3rem;
        position: relative; }
        .dashboard__savedjobs--i-box-title {
          display: block;
          font-size: 2.3rem;
          margin-bottom: 2rem; }
  .dashboard__searchhistory {
    position: relative;
    top: 15vh;
    left: 20%;
    width: 80%;
    padding-top: 5rem; }
    .dashboard__searchhistory--i {
      width: 33%;
      position: relative;
      margin-bottom: 5rem; }
      .dashboard__searchhistory--i-box {
        width: 80%;
        padding: 2rem;
        padding: 4rem 3rem 2rem 3rem;
        position: relative; }
        .dashboard__searchhistory--i-box-title {
          display: block;
          font-size: 2.3rem;
          margin-bottom: 2rem; }
  .dashboard__candsettings {
    position: relative;
    top: 5vh;
    left: 20%;
    width: 80%;
    padding-top: 15rem; }
    .dashboard__candsettings--settingpane {
      width: 25%;
      float: left;
      position: relative;
      background-color: rgba(192, 175, 175, 0.05);
      height: 70vh;
      position: fixed; }
      .dashboard__candsettings--settingpane-box {
        width: 80%;
        padding: 2rem;
        position: relative; }
        .dashboard__candsettings--settingpane-box-title {
          display: block;
          font-size: 2.3rem;
          color: #cc3333;
          margin-bottom: 3rem; }
        .dashboard__candsettings--settingpane-box-count {
          display: block;
          font-size: 2.5rem;
          margin-bottom: 5rem;
          padding-left: 25%; }
        .dashboard__candsettings--settingpane-box-actions {
          text-align: center; }
          .dashboard__candsettings--settingpane-box-actions-b1, .dashboard__candsettings--settingpane-box-actions-b2 {
            border: none;
            position: relative;
            background-color: rgba(192, 175, 175, 0.05);
            color: #009999;
            display: inline-block;
            padding: 1.5rem; }
            .dashboard__candsettings--settingpane-box-actions-b1:hover, .dashboard__candsettings--settingpane-box-actions-b2:hover {
              color: #000000; }
          .dashboard__candsettings--settingpane-box-actions-b1 {
            margin-right: 3%; }
          .dashboard__candsettings--settingpane-box-actions-b2-add {
            display: inline-block;
            margin-right: .5rem;
            color: #cc3333;
            font-weight: bold; }
      .dashboard__candsettings--settingpane-title {
        padding-left: 25%;
        color: #cc3333;
        font-size: 2rem;
        margin-bottom: 8rem; }
      .dashboard__candsettings--settingpane-link {
        width: 90%;
        margin: 0 auto;
        display: block;
        margin-bottom: 2rem;
        background-color: #FFF;
        padding: 2rem;
        text-align: center;
        color: #009999;
        font-size: 1.3rem; }
        .dashboard__candsettings--settingpane-link:hover {
          background-color: #009999;
          color: #FFF; }
    .dashboard__candsettings--editpane {
      width: 65%;
      left: 35%;
      float: left;
      position: relative; }
      .dashboard__candsettings--editpane-avatar-cont {
        margin-bottom: 2rem; }
      .dashboard__candsettings--editpane-avatar {
        width: 15rem;
        height: 15rem;
        border-radius: 50%;
        display: inline-block;
        cursor: pointer;
        margin-right: 15%;
        position: relative; }
        .dashboard__candsettings--editpane-avatar img {
          width: 15rem;
          height: 15rem;
          border-radius: 50%; }
      .dashboard__candsettings--editpane-avatar-input {
        display: none; }
      .dashboard__candsettings--editpane-avatar-edit-overlay {
        display: none;
        position: fixed;
        width: 15rem;
        height: 15rem;
        border-radius: 50%;
        text-align: center;
        top: 29vh;
        background-color: rgba(0, 0, 0, 0.3); }
      .dashboard__candsettings--editpane-avatar-edit-icon {
        display: inline-block;
        position: relative;
        top: 50%;
        border-radius: 50%;
        color: #FFF;
        font-size: bolder; }
      .dashboard__candsettings--editpane-group {
        margin-bottom: 2rem;
        width: 75%; }
      .dashboard__candsettings--editpane-name {
        width: 37%;
        display: inline-block; }
      .dashboard__candsettings--editpane-pass {
        display: inline-block;
        width: 60%; }
        .dashboard__candsettings--editpane-pass-input {
          width: 48%;
          display: inline-block; }
      .dashboard__candsettings--editpane-submit {
        position: fixed;
        top: 93vh;
        left: 55%; }
        .dashboard__candsettings--editpane-submit-input {
          border: none;
          background-color: #009999;
          padding: 1.6rem 15rem 1.6rem 15rem;
          color: #FFF;
          cursor: pointer; }
          .dashboard__candsettings--editpane-submit-input:hover {
            background-color: rgba(192, 175, 175, 0.3);
            color: #000000; }
      .dashboard__candsettings--editpane-label {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        position: relative; }
      .dashboard__candsettings--editpane-input {
        border-left: solid 0.3rem #009999;
        height: 4rem;
        margin-left: 1rem;
        width: 80%; }
      .dashboard__candsettings--editpane-changeav {
        position: relative;
        top: -10vh; }
      .dashboard__candsettings--editpane-changeav, .dashboard__candsettings--editpane-changepass {
        display: inline-block;
        border: none;
        background-color: rgba(192, 175, 175, 0.07);
        font-size: 1.4rem;
        color: #cc3333;
        padding: 2rem 6rem 2rem 6rem;
        cursor: pointer; }
        .dashboard__candsettings--editpane-changeav:hover, .dashboard__candsettings--editpane-changepass:hover {
          color: #000000; }
      .dashboard__candsettings--editpane-changepass {
        margin-bottom: 2rem; }
  .dashboard__candalertscat {
    position: relative;
    top: 15vh;
    left: 20%;
    width: 80%;
    padding-top: 5rem; }
    .dashboard__candalertscat--i {
      width: 19%;
      position: relative;
      float: left;
      margin-bottom: 5rem;
      margin-right: .9%;
      height: 15rem;
      background-color: #ee4c7c;
      cursor: pointer; }
      .dashboard__candalertscat--i-box {
        width: 90%;
        padding: 2rem;
        padding: 1rem 3rem 2rem 3rem;
        position: relative; }
        .dashboard__candalertscat--i-box-title {
          display: block;
          font-size: 1.1rem;
          padding-top: .4rem;
          position: relative;
          left: 95%;
          margin-bottom: 2rem;
          width: 2rem;
          height: 2rem;
          border-radius: 50%;
          text-align: center;
          background-color: #FFF; }
        .dashboard__candalertscat--i-box-icon {
          display: block;
          padding-top: .5rem;
          position: relative;
          margin-bottom: 2rem;
          text-align: center;
          color: #FFF; }
        .dashboard__candalertscat--i-box-name {
          display: block;
          padding-top: .5rem;
          font-size: 1.6rem;
          position: relative;
          margin-bottom: 2rem;
          margin-left: 4%;
          text-align: center; }
    .dashboard__candalertscat--alerts {
      height: 3rem;
      background-color: #ffcc66;
      width: 25%;
      margin-left: 7%; }
      .dashboard__candalertscat--alerts-butns-1 {
        width: 95%;
        padding: 1rem;
        border: none;
        cursor: pointer;
        border-radius: .3rem;
        position: relative; }
        .dashboard__candalertscat--alerts-butns-1:hover {
          color: #009999; }
  .dashboard__candalertlist {
    position: relative;
    top: 15vh;
    left: 20%;
    width: 80%;
    padding-top: 5rem; }
    .dashboard__candalertlist__card {
      width: 80%;
      background-color: #FFF;
      padding: 2.5rem;
      position: relative;
      margin-bottom: 4rem;
      -webkit-box-shadow: -15px 10px 25px 5px rgba(0, 0, 0, 0.04);
      -moz-box-shadow: -15px 10px 25px 5px rgba(0, 0, 0, 0.04);
      box-shadow: -5px 10px 5px 2px rgba(0, 0, 0, 0.04); }
      .dashboard__candalertlist__card__alertflag {
        background-color: #009999;
        padding: .4rem;
        padding-left: .5rem;
        width: 10rem;
        position: absolute;
        color: #FFF;
        font-size: 1.5rem;
        border-radius: .2rem;
        top: -3vh; }
      .dashboard__candalertlist__card__i {
        width: 40%;
        float: left; }
        .dashboard__candalertlist__card__i-title-cont {
          margin-bottom: 1.5rem; }
        .dashboard__candalertlist__card__i-title {
          font-size: 1.8rem;
          display: inline-block;
          margin-right: .8rem; }
        .dashboard__candalertlist__card__i-sub-title {
          font-size: 1rem;
          color: gray;
          display: inline-block; }
        .dashboard__candalertlist__card__i-salary {
          font-size: 1.2rem;
          color: grey; }
      .dashboard__candalertlist__card__more {
        width: 25%;
        float: left;
        position: relative; }
        .dashboard__candalertlist__card__more-location {
          font-size: 1.2rem;
          color: grey;
          position: relative;
          display: block;
          padding-left: 1rem;
          top: 2vh; }
        .dashboard__candalertlist__card__more-apply {
          font-size: 1.2rem;
          color: #000000;
          position: relative;
          display: block;
          padding-top: 1rem;
          padding-bottom: 1rem;
          padding-left: .5rem;
          padding-right: .5rem;
          text-align: center;
          background-color: #ffcc66;
          border: solid 0.1rem rgba(128, 128, 128, 0.07);
          border-radius: .3rem;
          width: 13rem;
          top: 7vh; }
          .dashboard__candalertlist__card__more-apply:hover {
            background-color: rgba(128, 128, 128, 0.07); }
      .dashboard__candalertlist__card__extra {
        width: 30%;
        float: left;
        position: relative; }
        .dashboard__candalertlist__card__extra-type {
          font-size: 1.2rem;
          color: #009999; }
        .dashboard__candalertlist__card__extra-date {
          font-size: 1.2rem;
          color: #cc3333;
          position: relative;
          display: inline-block;
          top: 5.5vh; }
        .dashboard__candalertlist__card__extra-manage-actions {
          font-size: 1.2rem;
          color: #cc3333;
          position: relative;
          display: inline-block;
          width: 90%;
          top: 5.5vh; }
          .dashboard__candalertlist__card__extra-manage-actions-icon {
            display: inline-block;
            margin-right: 1%;
            color: #ffcc66;
            padding: .5rem;
            width: 30%;
            border: none;
            cursor: pointer;
            background-color: rgba(192, 175, 175, 0.09); }
            .dashboard__candalertlist__card__extra-manage-actions-icon:hover {
              color: #000000; }
  .dashboard__candalertmanage {
    position: relative;
    top: 15vh;
    left: 20%;
    width: 80%;
    padding-top: 5rem; }
    .dashboard__candalertmanage--i {
      width: 33%;
      position: relative;
      margin-bottom: 5rem; }
      .dashboard__candalertmanage--i-box {
        width: 80%;
        padding: 2rem;
        padding: 4rem 3rem 2rem 3rem;
        position: relative; }
        .dashboard__candalertmanage--i-box-title {
          display: block;
          font-size: 2.3rem;
          margin-bottom: 2rem; }
        .dashboard__candalertmanage--i-box-label {
          display: block;
          font-size: 1.3rem;
          position: absolute;
          bottom: 1.5vh;
          right: 10%;
          color: rgba(0, 0, 0, 0.5); }
    .dashboard__candalertmanage__title {
      color: rgba(0, 0, 0, 0.4);
      font-size: 1.6rem;
      margin-bottom: 2.5rem; }
    .dashboard__candalertmanage__dropdown {
      border-left: solid 0.5rem #009999;
      background-color: rgba(192, 175, 175, 0.07);
      width: 30rem;
      padding-left: 1.5rem;
      font-size: 1.4rem;
      padding: 2.5rem;
      color: rgba(0, 0, 0, 0.5); }
      .dashboard__candalertmanage__dropdown-text {
        display: inline-block;
        width: 80%; }
      .dashboard__candalertmanage__dropdown-icon {
        display: inline-block;
        position: relative;
        top: 1.5vh;
        color: #ffcc66; }
    .dashboard__candalertmanage__selectOption {
      border: none; }
    .dashboard__candalertmanage__actions {
      position: fixed;
      background-color: #FFF;
      top: 93vh; }
      .dashboard__candalertmanage__actions-save, .dashboard__candalertmanage__actions-cancel {
        border: none;
        background-color: #009999;
        padding: 1.6rem 15rem 1.6rem 15rem;
        color: #FFF;
        display: inline-block;
        cursor: pointer; }
        .dashboard__candalertmanage__actions-save:hover, .dashboard__candalertmanage__actions-cancel:hover {
          background-color: rgba(192, 175, 175, 0.3);
          color: #000000; }
      .dashboard__candalertmanage__actions-save {
        width: 30%;
        margin-right: 3%; }
      .dashboard__candalertmanage__actions-cancel {
        width: 30%; }

.custom-file-upload {
  border-radius: 50%;
  display: inline-block;
  position: relative;
  padding: 6px;
  cursor: pointer;
  background: -webkit-gradient(linear, right top, left top, from(#3fa1a9), to(#79f1a4));
  background: linear-gradient(270deg, #3fa1a9, #79f1a4);
  margin-bottom: 25px; }

.avatar-label:hover .dashboard__candsettings--editpane-avatar-edit-overlay {
  display: block; }

/* KEYFRAMES */
@keyframes spin {
  from {
    transform: rotate(0); }
  to {
    transform: rotate(359deg); } }

@keyframes spin3D {
  from {
    transform: rotate3d(0.5, 0.5, 0.5, 360deg); }
  to {
    transform: rotate3d(0deg); } }

@keyframes configure-clockwise {
  0% {
    transform: rotate(0); }
  25% {
    transform: rotate(90deg); }
  50% {
    transform: rotate(180deg); }
  75% {
    transform: rotate(270deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes configure-xclockwise {
  0% {
    transform: rotate(45deg); }
  25% {
    transform: rotate(-45deg); }
  50% {
    transform: rotate(-135deg); }
  75% {
    transform: rotate(-225deg); }
  100% {
    transform: rotate(-315deg); } }

@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1); }
  to {
    opacity: .25;
    transform: scale(0.75); } }

/* GRID STYLING */
.loader-container {
  min-height: 100vh;
  background-color: #009999;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start; }

.spinner-box {
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  position: relative;
  left: 40%;
  top: 30vh; }

/* SOLAR SYSTEM */
.solar-system {
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center; }

.orbit {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ffffffa5;
  border-radius: 50%; }

.earth-orbit {
  width: 165px;
  height: 165px;
  animation: spin 12s linear 0s infinite; }

.venus-orbit {
  width: 120px;
  height: 120px;
  animation: spin 7.4s linear 0s infinite; }

.mercury-orbit {
  width: 90px;
  height: 90px;
  animation: spin 3s linear 0s infinite; }

.planet {
  position: absolute;
  top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #3ff9dc; }

.sun {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #ffab91; }

.progressBar {
  top: '40vh';
  left: '40%';
  position: 'relative'; }

.tooltip-container {
  text-align: center; }

p {
  margin-top: 30px;
  margin-bottom: 30px; }

.tooltip {
  position: relative; }

.tooltip-trigger {
  display: inline-block;
  text-decoration: underline; }

.tooltip-bubble {
  min-width: 120px;
  width: 25rem;
  position: absolute;
  z-index: 10; }
  .tooltip-bubble::after {
    content: '';
    position: absolute; }

.tooltip-top {
  bottom: 100%;
  left: 50%;
  padding-bottom: 9px;
  transform: translateX(-50%); }
  .tooltip-top::after {
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid rgba(255, 0, 0, 0.8);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); }

.tooltip-bottom {
  top: 100%;
  left: 50%;
  padding-top: 9px;
  transform: translateX(-50%); }
  .tooltip-bottom::after {
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid rgba(255, 0, 0, 0.8);
    top: 0;
    left: 50%;
    transform: translateX(-50%); }

.tooltip-left {
  top: 50%;
  right: 100%;
  padding-right: 9px;
  transform: translateY(-50%); }
  .tooltip-left::after {
    border-left: 9px solid rgba(255, 0, 0, 0.8);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    top: 50%;
    right: 0;
    transform: translateY(-50%); }

.tooltip-right {
  top: 50%;
  left: 100%;
  padding-left: 9px;
  transform: translateY(-50%); }
  .tooltip-right::after {
    border-right: 9px solid rgba(255, 0, 0, 0.8);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    top: 50%;
    left: 0;
    transform: translateY(-50%); }

 @media only screen and (max-width: 900px) {
    .tooltip-right {
     
        top: 100%;
        left: 50%;
        padding-top: 9px;
        transform: translateX(-90%);
    }
		
     
  }

  @media only screen and (max-width: 900px){

    .tooltip-right:after {

        border-left: 9px solid transparent;
        border-right: 9px solid transparent;
        border-bottom: 9px solid rgba(255, 0, 0, 0.8);
        top: 0;
        left: 50%;
        /* transform: translateX(-50%); */
      
  }
}

.tooltip-message {
  background: rgba(255, 0, 0, 0.8);
  border-radius: 3px;
  letter-spacing: .15rem;
  color: #FFF;
  font-size: 1.3rem;
  padding: .75em;
  text-align: center; }

.error-page-content {
  background-color: rgba(0, 153, 153, 0.2);
  position: relative;
  top: 10rem;
  padding-top: 10rem;
  padding-bottom: 10rem;
  padding-left: 2%; }

.error-number {
  color: #FFF;
  display: inline-block;
  font-size: 8rem;
  font-weight: 700;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); }

.description-text {
  width: 70%;
  padding-top: 2rem; }
  .description-text-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: rgba(0, 0, 0, 0.5); }
  .description-text-body p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem; }

.error-code-text {
  font-size: 1.2rem;
  font-weight: 700;
  width: 100%;
  position: relative;
  text-align: center; }

.error-search-box {
  padding-left: 10%; }

.fig-1, .fig-2,
.fig-4 {
  margin-bottom: 5rem !important; }

.error-2 {
  margin-left: 30%; }

.error-3 {
  margin-left: 70%; }

.faqs {
  width: 100%;
  padding-bottom: 15rem;
  padding-top: 5rem; }
  .faqs__i {
    width: 60%;
    margin: 0 auto; }
    .faqs__i-title {
      width: 60%; }
    .faqs__i-text {
      width: 50%; }
  .faqs__contact {
    padding-left: 30%;
    margin-top: 10rem; }
    .faqs__contact--text {
      font-size: 2rem;
      margin-bottom: 4rem;
      color: rgba(0, 0, 0, 0.9); }
    .faqs__contact--btn {
      border: none;
      display: inline-block;
      padding: 1rem;
      background-color: #009999;
      font-size: 1.3rem;
      width: 15rem;
      color: #FFF;
      margin-left: 2%;
      cursor: pointer; }

.home {
  width: 100%; }
  @media only screen and (max-width: 360px) {
    .home {
      width: 100%; } }
  .home__parallelogram {
    transform: skew(-20deg);
    width: 95%;
    height: 450px;
    padding: 3px;
    padding-left: 2%;
    padding-top: 10px;
    padding-right: 5%; }
    @media only screen and (max-width: 1200px) {
      .home__parallelogram {
        height: 350px;
        transform: skew(0deg); } }
    @media only screen and (max-width: 900px) {
      .home__parallelogram {
        height: auto;
        padding-bottom: 30px; } }
    .home__parallelogram--h {
      margin-bottom: 70px;
      font-size: 1.3rem;
      font-family: 'Roboto', sans-serif; }
    .home__parallelogram--q {
      margin-bottom: 30px;
      font-size: 1.3rem;
      color: #00b050;
      width: 80%;
      margin-left: 15%;
      font-family: 'Roboto', sans-serif; }
      @media only screen and (max-width: 450px) {
        .home__parallelogram--q {
          width: 90%;
          margin-left: 5%; } }
    .home__parallelogram--txt {
      margin-bottom: 30px;
      font-size: 1.4rem;
      width: 80%;
      margin-left: 15%;
      font-family: 'Roboto', sans-serif; }
      @media only screen and (max-width: 450px) {
        .home__parallelogram--txt {
          width: 90%;
          margin-left: 5%; } }
    .home__parallelogram--skew {
      transform: skew(20deg);
      width: 80%;
      margin-left: 15%;
      margin-top: 50px;
      font-size: 'Roboto',sans-serif; }
      @media only screen and (max-width: 1200px) {
        .home__parallelogram--skew {
          margin-top: 40px;
          transform: skew(0deg); } }
      @media only screen and (max-width: 600px) {
        .home__parallelogram--skew {
          width: 90%;
          margin-left: 5%; } }
      @media only screen and (max-width: 450px) {
        .home__parallelogram--skew {
          width: 95%; } }
  @media only screen and (max-width: 360px) {
    .home__parallelogram {
      width: 95%;
      height: auto;
      padding: 3px;
      padding-left: 2%;
      padding-top: 10px;
      padding-right: 5%; }
      .home__parallelogram--h {
        margin-bottom: 30px;
        font-size: 1.3rem; }
      .home__parallelogram--q {
        margin-bottom: 30px;
        font-size: 1.3rem;
        color: #00b050; }
      .home__parallelogram--txt {
        margin-bottom: 30px;
        font-size: 1.4rem; } }
  .home__soon {
    width: 55%;
    position: relative;
    margin-bottom: 150px;
    margin-top: 100px; }
    @media only screen and (max-width: 1200px) {
      .home__soon {
        margin: 0 auto;
        margin-top: 20px;
        width: 70%;
        margin-bottom: 80px; } }
    @media only screen and (max-width: 900px) {
      .home__soon {
        width: 80%; } }
    .home__soon--shapes {
      position: absolute;
      width: 100%;
      top: 0; }
    .home__soon--shape {
      position: absolute; }
      .home__soon--shape-circle {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background-color: #ffcc66;
        display: block;
        position: absolute; }
      .home__soon--shape-circle1 {
        left: 20%;
        top: 5vh; }
      .home__soon--shape-circle2 {
        left: 41%;
        top: 30vh;
        background-color: #cc3333; }
        @media only screen and (max-width: 1200px) {
          .home__soon--shape-circle2 {
            top: 700px;
            left: 14%; } }
        @media only screen and (max-width: 360px) {
          .home__soon--shape-circle2 {
            top: 650px; } }
      .home__soon--shape-circle3 {
        left: 64.5%; }
        @media only screen and (max-width: 1366px) {
          .home__soon--shape-circle3 {
            top: 120px; } }
        @media only screen and (max-width: 1200px) {
          .home__soon--shape-circle3 {
            left: 44.5%;
            top: 600px; } }
      .home__soon--shape-circle4 {
        right: 0; }
      .home__soon--shape-circle5 {
        right: 2%;
        top: 20vh;
        background-color: #cc3333; }
      .home__soon--shape-egg {
        display: block;
        width: 15px;
        height: 20px;
        background-color: #009999;
        border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
        position: absolute; }
      .home__soon--shape-egg1 {
        top: 15vh;
        left: 5%; }
      .home__soon--shape-egg2 {
        top: 70vh;
        left: 80%; }
        @media only screen and (max-width: 1200px) {
          .home__soon--shape-egg2 {
            top: 800px; } }
      .home__soon--shape-egg3 {
        top: 95vh;
        left: 60%; }
        @media only screen and (max-width: 1200px) {
          .home__soon--shape-egg3 {
            top: 500px;
            left: 90%; } }
    .home__soon--brand {
      margin-bottom: 25px; }
      .home__soon--brand-logo {
        width: 100%; }
        .home__soon--brand-logo img {
          width: 150px;
          display: block;
          position: relative;
          left: 20%; }
      .home__soon--brand-text-s {
        width: 100%;
        margin-bottom: 20px;
        padding-left: 180px;
        font-family: 'Turret Road', cursive; }
        @media only screen and (max-width: 768px) {
          .home__soon--brand-text-s {
            padding-left: 150px; } }
        @media only screen and (max-width: 600px) {
          .home__soon--brand-text-s {
            padding-left: 130px; } }
        @media only screen and (max-width: 540px) {
          .home__soon--brand-text-s {
            padding-left: 120px; } }
        @media only screen and (max-width: 450px) {
          .home__soon--brand-text-s {
            padding-left: 100px; } }
        .home__soon--brand-text-s h3 {
          font-size: 1.8rem;
          color: black;
          opacity: .5; }
      .home__soon--brand-text-vp {
        width: 100%;
        font-family: 'Roboto', sans-serif; }
        @media only screen and (max-width: 1200px) {
          .home__soon--brand-text-vp {
            margin-left: 5%; } }
        .home__soon--brand-text-vp h2 {
          padding-left: 10%;
          font-size: 2rem;
          width: 90%;
          opacity: .7; }
          @media only screen and (max-width: 450px) {
            .home__soon--brand-text-vp h2 {
              padding-left: 2%; } }
      .home__soon--brand-text-cta {
        width: 100%;
        font-family: 'Libre Franklin', sans-serif; }
        @media only screen and (max-width: 1200px) {
          .home__soon--brand-text-cta {
            width: 90%;
            margin-left: 10%; } }
        .home__soon--brand-text-cta h2 {
          padding-left: 10%;
          margin-top: 20px;
          font-size: 1.9rem; }
          @media only screen and (max-width: 450px) {
            .home__soon--brand-text-cta h2 {
              padding-left: 2%; } }
      .home__soon--brand-cta-bar {
        display: block;
        height: 3px;
        background-color: #cc3333;
        width: 30px;
        margin-top: 10px;
        position: relative;
        left: 180px; }
        @media only screen and (max-width: 768px) {
          .home__soon--brand-cta-bar {
            left: 150px; } }
        @media only screen and (max-width: 450px) {
          .home__soon--brand-cta-bar {
            left: 100px; } }
    .home__soon--cta {
      width: 100%;
      position: relative; }
      .home__soon--cta-rect {
        width: 80%;
        height: 200px;
        position: absolute;
        background-color: #009999;
        left: 5%; }
        @media only screen and (max-width: 900px) {
          .home__soon--cta-rect {
            width: 90%;
            height: 350px; } }
      .home__soon--cta-rect2 {
        top: 10px;
        left: 6.2%; }
      .home__soon--cta-rect3 {
        top: 15px;
        left: 7.2%; }
      .home__soon--cta-rect4 {
        top: 20px;
        left: 8.2%;
        background-color: white;
        padding-top: 10px;
        padding-left: 5%;
        position: relative; }
    @media only screen and (max-width: 360px) {
      .home__soon {
        width: 100%;
        position: relative;
        margin-bottom: 60px; }
        .home__soon--brand {
          margin-bottom: 25px; }
          .home__soon--brand-logo {
            width: 100%; }
            .home__soon--brand-logo img {
              width: 50%;
              display: block;
              position: relative;
              left: 20%; }
          .home__soon--brand-text-s {
            width: 100%;
            margin-bottom: 20px;
            padding-left: 30%; }
            .home__soon--brand-text-s h3 {
              font-size: 1.8rem;
              color: black;
              opacity: .5; }
          .home__soon--brand-text-vp {
            width: 100%; }
            .home__soon--brand-text-vp h2 {
              padding-left: 2%;
              font-size: 2rem;
              width: 90%;
              opacity: .7; }
          .home__soon--brand-text-cta {
            margin-left: 5%; }
            .home__soon--brand-text-cta h2 {
              padding-left: 2%;
              margin-top: 20px;
              font-size: 1.9rem; }
          .home__soon--brand-cta-bar {
            display: block;
            height: 3px;
            background-color: #cc3333;
            width: 30px;
            margin-top: 10px;
            position: relative;
            left: 40%; }
        .home__soon--cta {
          width: 100%;
          position: relative; }
          .home__soon--cta-rect {
            width: 80%;
            height: 300px;
            position: absolute;
            background-color: #009999;
            left: 5%; }
          .home__soon--cta-rect2 {
            top: 10px;
            left: 6.2%; }
          .home__soon--cta-rect3 {
            top: 15px;
            left: 7.2%; }
          .home__soon--cta-rect4 {
            top: 20px;
            left: 8.2%;
            background-color: white;
            padding-top: 10px;
            padding-left: 5%;
            position: relative; } }
  .home__launchcta {
    width: 100%;
    margin-top: 6px;
    font-family: 'Roboto', sans-serif; }
    .home__launchcta--cont {
      width: 100%; }
    .home__launchcta--control {
      width: 50%;
      height: 80px;
      margin-bottom: 15px;
      padding: 3%;
      display: inline-block; }
      @media only screen and (max-width: 900px) {
        .home__launchcta--control {
          width: 100%;
          margin-bottom: 30px; } }
    .home__launchcta-label {
      margin-bottom: 10px;
      display: block;
      font-size: 1.3rem; }
    .home__launchcta-input {
      font-size: 1.5rem;
      height: 40px;
      border: none;
      width: 100%; }
    .home__launchcta-submit {
      background-color: #ffcc66;
      padding: 1.2rem;
      width: 85%;
      color: 000;
      margin-top: 30px;
      cursor: pointer;
      border: none; }
      @media only screen and (max-width: 1800px) {
        .home__launchcta-submit {
          width: 300px; } }
    @media only screen and (max-width: 450px) {
      .home__launchcta-submit {
        width: 85%; } }
    @media only screen and (max-width: 360px) {
      .home__launchcta {
        width: 100%;
        margin-top: 6px; }
        .home__launchcta--cont {
          width: 100%; }
        .home__launchcta--control {
          width: 90%;
          height: 80px;
          margin-bottom: 15px;
          padding: 3%; }
        .home__launchcta-label {
          margin-bottom: 10px;
          display: block;
          font-size: 1.3rem; }
        .home__launchcta-input {
          font-size: 1.5rem;
          height: 40px;
          border: none;
          width: 100%; }
        .home__launchcta-submit {
          background-color: #ffcc66;
          padding: 1.2rem;
          width: 85%;
          color: 000;
          margin-top: 30px;
          border: none; } }
  .home__hero {
    position: absolute;
    top: 30px;
    left: 40%;
    z-index: -1; }
    @media only screen and (max-width: 1200px) {
      .home__hero {
        position: relative;
        width: 70%;
        left: 0;
        margin: 0 auto;
        z-index: 1;
        top: 10px;
        margin-bottom: 50px; } }
    @media only screen and (max-width: 900px) {
      .home__hero {
        width: 80%; } }
    @media only screen and (max-width: 360px) {
      .home__hero {
        width: 100%;
        padding-left: 2%;
        margin-bottom: 60px; } }
  .home__footer {
    width: 100%; }
    .home__footer--list {
      padding: 0;
      margin: 0;
      list-style-type: none;
      padding-left: 5%; }
      .home__footer--list-i {
        display: inline-block;
        font-size: 1.3rem;
        margin-right: 10px; }
        .home__footer--list-i img {
          width: 80px;
          margin-right: 20px;
          align-content: baseline;
          position: relative;
          top: 15px; }
      .home__footer--list-bx {
        width: 10px;
        height: 10px;
        background-color: #ffcc66;
        display: inline-block;
        margin-right: 10px; }
      .home__footer--list-txt {
        display: inline-block; }
    @media only screen and (max-width: 360px) {
      .home__footer {
        width: 100%; }
        .home__footer--list {
          padding: 0;
          margin: 0;
          list-style-type: none;
          padding-left: 5%; }
          .home__footer--list-i {
            display: inline-block;
            font-size: 1.3rem;
            margin-right: 10px; }
            .home__footer--list-i img {
              width: 80px;
              margin-right: 20px;
              align-content: baseline;
              position: relative;
              top: 15px; }
          .home__footer--list-bx {
            width: 10px;
            height: 10px;
            background-color: #ffcc66;
            display: inline-block;
            margin-right: 10px; }
          .home__footer--list-txt {
            display: inline-block; } }
  .home__jobdash {
    width: 100%;
    margin-bottom: 250px; }
    @media only screen and (max-width: 1200px) {
      .home__jobdash {
        margin-bottom: 30px; } }
    .home__jobdash--title {
      width: 35%; }
      @media only screen and (max-width: 800px) {
        .home__jobdash--title {
          width: 45%; } }
      @media only screen and (max-width: 600px) {
        .home__jobdash--title {
          width: 60%; } }
      @media only screen and (max-width: 450px) {
        .home__jobdash--title {
          width: 80%; } }
    .home__jobdash--b1 {
      width: 30%;
      float: left;
      font-family: 'Roboto', sans-serif; }
      @media only screen and (max-width: 1200px) {
        .home__jobdash--b1 {
          float: none;
          width: 60%;
          margin: 0 auto;
          margin-bottom: 100px; } }
      @media only screen and (max-width: 768px) {
        .home__jobdash--b1 {
          width: 80%; } }
      @media only screen and (max-width: 450px) {
        .home__jobdash--b1 {
          width: 100%; } }
      .home__jobdash--b1 p {
        background-color: #FFF;
        padding-left: 10%;
        margin-top: 20%;
        width: 80%; }
        @media only screen and (max-width: 1200px) {
          .home__jobdash--b1 p {
            margin-top: 10px; } }
    .home__jobdash--b2 {
      width: 70%;
      float: left; }
      @media only screen and (max-width: 1200px) {
        .home__jobdash--b2 {
          float: none;
          margin: 0 auto; } }
      @media only screen and (max-width: 600px) {
        .home__jobdash--b2 {
          width: 90%; } }
      .home__jobdash--b2 p {
        width: 100%;
        position: relative;
        top: -6rem; }
        @media only screen and (max-width: 1200px) {
          .home__jobdash--b2 p {
            top: 0; } }
        .home__jobdash--b2 p img {
          display: block;
          position: absolute;
          width: 65%;
          right: 25%; }
          @media only screen and (max-width: 1200px) {
            .home__jobdash--b2 p img {
              position: relative;
              right: 0;
              width: 90%;
              left: 0; } }
      .home__jobdash--b2-sign {
        position: relative;
        bottom: 0;
        right: 0;
        top: 250px;
        left: 65%;
        width: 12rem;
        height: 12rem;
        border-radius: 50%;
        text-align: center;
        background-color: #cc3333;
        cursor: pointer; }
        @media only screen and (max-width: 1200px) {
          .home__jobdash--b2-sign {
            position: relative;
            left: 75%;
            top: 0; } }
        @media only screen and (max-width: 450px) {
          .home__jobdash--b2-sign {
            left: 55%; } }
        .home__jobdash--b2-sign span {
          position: relative;
          display: inline-block;
          color: #FFF;
          top: 40%; }

.job {
  margin-bottom: 20rem;
  width: 100%;
  position: relative; }
  .job__search {
    width: 90%;
    margin: 0 auto;
    position: relative;
    margin-left: 10%;
    padding-left: 5%;
    top: -15vh; }
    .job__search--bar {
      background-color: rgba(192, 175, 175, 0.1);
      display: none;
      padding: .8rem;
      text-align: center;
      width: 50%;
      margin: 0 auto; }
      .job__search--bar-text {
        font-size: 1.3rem;
        text-align: center;
        display: inline-block; }
    .job__search--form {
      background-color: #FFF;
      z-index: 100;
      width: 85%;
      margin: 0 auto;
      height: 5rem;
      padding-top: 2%; }
      .job__search--form-i {
        width: 40%;
        float: left; }
      .job__search--form-text {
        background-color: #FFF;
        padding-left: 1.5rem;
        height: 5rem;
        border: none;
        border-left: solid #009999 0.3rem;
        width: 85%; }
      .job__search--form-submit {
        position: absolute;
        width: 7rem;
        height: 7rem;
        border-radius: 50%;
        right: 15%;
        bottom: 0;
        text-align: center;
        background-color: #009999;
        top: -2vh; }
        .job__search--form-submit:hover {
          background-color: #ffcc66;
          cursor: pointer; }
        .job__search--form-submit input {
          background-color: transparent;
          background-color: none;
          top: -1vh;
          position: relative; }
    .job__search--common {
      margin-left: 10%;
      padding-left: 5%;
      position: relative;
      clear: both; }
      .job__search--common-title {
        font-size: 1.5rem;
        margin-right: 1.5rem;
        display: inline-block; }
      .job__search--common ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        display: inline-block; }
        .job__search--common ul li {
          display: inline-block;
          margin-right: 1rem;
          font-size: 1.2rem;
          background-color: rgba(192, 175, 175, 0.2);
          padding: .5rem;
          cursor: pointer; }
          .job__search--common ul li:hover {
            background-color: rgba(192, 175, 175, 0.5); }
  .job__jobs--lt {
    width: 20%;
    float: left;
    position: relative; }
    .job__jobs--lt-sorts {
      padding-left: 1%;
      width: 100%; }
      .job__jobs--lt-sorts-icont {
        margin-top: 5rem;
        padding-left: 1.2rem;
        width: 100%;
        position: relative; }
      .job__jobs--lt-sorts-i {
        display: inline-block;
        text-align: center;
        position: relative;
        margin-right: 1rem;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
        background-color: rgba(192, 175, 175, 0.1);
        font-size: 1.4rem;
        width: 45%;
        cursor: pointer; }
        .job__jobs--lt-sorts-i:hover {
          background-color: #cc3333;
          color: #FFF; }
        .job__jobs--lt-sorts-i:hover div {
          color: #000000; }
    .job__jobs--lt-alert {
      padding-left: 1%;
      width: 96%;
      margin: 0 auto;
      background-color: #cc3333;
      cursor: pointer;
      margin-top: 2rem;
      padding: 2rem;
      padding-left: 1.2rem;
      padding-right: 1.2rem; }
      .job__jobs--lt-alert:hover {
        background-color: rgba(192, 175, 175, 0.1); }
      .job__jobs--lt-alert:hover .job__jobs--lt-alert-i {
        color: #000000; }
      .job__jobs--lt-alert:hover .job__jobs--lt-alert-text {
        color: #000000; }
      .job__jobs--lt-alert-i {
        display: inline-block;
        text-align: center;
        position: relative;
        margin-right: 5rem;
        top: .4vh;
        font-size: 1.5rem;
        color: #FFF; }
      .job__jobs--lt-alert-text {
        display: inline-block;
        text-align: center;
        position: relative;
        margin-right: 1rem;
        font-size: 1.4rem;
        color: #FFF; }
    .job__jobs--lt h2 {
      padding-left: 3.5rem; }
  .job__jobs--list {
    width: 52%;
    float: left;
    margin-left: 2%;
    margin-right: 1%; }
  .job__jobs--rt {
    width: 23%;
    float: left; }
    .job__jobs--rt-btn {
      width: 100%;
      border: none;
      text-align: center;
      padding: 3rem;
      margin-top: 3rem;
      font-size: 1.2rem;
      margin-bottom: 5rem;
      background-color: rgba(192, 175, 175, 0.2);
      cursor: pointer; }
      .job__jobs--rt-btn:hover {
        background-color: #009999;
        color: #FFF;
        font-size: 1.4rem; }
  .job__jobs--expi {
    position: relative; }
    .job__jobs--expi-bg {
      display: inline-block;
      color: #009999;
      font-size: 3rem; }
    .job__jobs--expi-sm {
      display: inline-block;
      margin-top: 1rem;
      color: #cc3333;
      font-size: 1.5rem; }
  .job__jobs--notfound {
    padding-top: 1rem; }
    .job__jobs--notfound-header {
      background-color: rgba(0, 153, 153, 0.2);
      padding: .6rem;
      padding-left: 5%;
      margin-bottom: 8rem;
      width: 70%; }
      .job__jobs--notfound-header p {
        font-size: 1.5rem; }
    .job__jobs--notfound-search {
      float: left;
      width: 50%;
      padding-top: 10rem;
      padding-left: 1.5rem; }
      .job__jobs--notfound-search p {
        font-size: 1.7rem;
        margin-bottom: 1.4rem; }
      .job__jobs--notfound-search span {
        display: inline-block;
        margin-right: .5rem;
        font-size: 1.4rem; }
        .job__jobs--notfound-search span a {
          text-decoration: none; }
    .job__jobs--notfound-hits {
      float: left;
      width: 45%; }
      .job__jobs--notfound-hits-container {
        background-color: rgba(192, 175, 175, 0.2);
        padding: 1.5rem;
        padding-left: 2rem; }
      .job__jobs--notfound-hits h2 {
        font-size: 1.8rem;
        margin-bottom: 3rem; }
      .job__jobs--notfound-hits ul {
        list-style-type: none;
        padding: 0; }
        .job__jobs--notfound-hits ul li {
          margin-bottom: 1rem;
          font-size: 1.3rem; }
  .job__ads {
    width: 100%; }
    .job__ads--banner {
      width: 100%;
      margin-top: 7rem; }
      .job__ads--banner-one {
        width: 100%;
        background-color: rgba(128, 128, 128, 0.1);
        padding: 1rem;
        padding-top: 3rem;
        padding-bottom: 5rem; }
        .job__ads--banner-one-ad-s1 {
          font-size: 2.5rem;
          margin-bottom: 3rem;
          width: 70%;
          position: relative;
          left: 18%; }
        .job__ads--banner-one-ad-s2 {
          font-size: 1.8rem;
          margin-bottom: 4rem;
          width: 80%;
          position: relative;
          left: 10%; }
        .job__ads--banner-one-ad-s3 {
          width: 100%; }
          .job__ads--banner-one-ad-s3-pik {
            width: 60%;
            display: inline-block;
            margin-right: 2%; }
          .job__ads--banner-one-ad-s3-text {
            width: 38%;
            display: inline-block;
            font-size: 1.4rem;
            position: relative;
            top: -2vh; }
  .job__paginator {
    width: 60%;
    position: relative;
    margin-top: 3rem;
    left: 25%; }
  .job__suggestions {
    position: absolute;
    background-color: #FFF;
    width: 30%;
    top: 7vh;
    z-index: 1000;
    padding: 1rem; }
    .job__suggestions--list {
      list-style: none;
      padding: 0;
      margin: 0; }
      .job__suggestions--list-i {
        font-size: 1.2rem;
        border-bottom: solid rgba(192, 175, 175, 0.2) 0.01rem;
        margin-bottom: .8rem;
        text-decoration: none;
        padding-bottom: .8rem;
        cursor: pointer;
        padding-left: 1rem; }
        .job__suggestions--list-i:hover {
          color: #009999; }

.drdown {
  position: absolute;
  width: 15rem;
  z-index: 1000;
  left: -10%;
  background-color: #FFF;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 0;
  padding-top: 1rem; }
  .drdown__i {
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    width: 80%;
    text-align: left;
    padding-left: 15%;
    cursor: pointer; }
    .drdown__i:hover {
      color: #009999; }
    .drdown__i-link {
      text-decoration: none;
      color: #000000; }

.alert__modalcontainer {
  width: 100%;
  background-color: #FFF; }

.alert__modalbody {
  box-shadow: -15px 10px 25px 5px rgba(0, 0, 0, 0.04);
  width: 100%;
  padding-left: 5%;
  padding-top: 2rem;
  padding-bottom: .5rem; }
  .alert__modalbody--form {
    z-index: 100;
    width: 85%; }
    .alert__modalbody--form-i {
      width: 60%; }
    .alert__modalbody--form-text {
      background-color: #FFF;
      padding-left: 1.5rem;
      height: 5rem;
      border: none;
      border-left: solid #009999 0.3rem;
      width: 85%; }
    .alert__modalbody--form-submit input {
      position: relative;
      width: 15rem;
      background-color: #ee4c7c;
      text-align: center;
      color: #FFF;
      border: none;
      padding: 1rem; }

.alert__modalfootr {
  width: 80%;
  margin-left: 8%; }
  .alert__modalfootr--container {
    width: 100%;
    background-color: #FFF;
    box-shadow: -15px 10px 25px 5px rgba(0, 0, 0, 0.04); }
  .alert__modalfootr--policy {
    display: inline-block;
    width: 70%;
    padding-left: 2%; }
    .alert__modalfootr--policy p {
      font-size: 1.3rem; }
  .alert__modalfootr--cancel {
    display: inline-block;
    width: 15rem;
    background-color: rgba(238, 76, 124, 0.8);
    text-align: center;
    color: #FFF;
    border: none;
    padding: 1rem;
    cursor: pointer; }
    .alert__modalfootr--cancel:hover {
      background-color: #ee4c7c; }
  .alert__modalfootr--discover {
    width: 40%;
    background-color: #009999;
    color: #FFF;
    padding: .1rem;
    font-size: 1.4rem;
    padding-left: 2%; }

.access {
  height: auto;
  padding-bottom: 5rem;
  width: 100%;
  height: 100vh;
  margin-top: 10rem;
  background-color: #009999;
  margin-bottom: 15rem;
  position: relative; }
  .access__header--container {
    top: -5vh;
    width: 30%;
    position: relative;
    left: 35%; }
  .access__body {
    width: 60%;
    height: 48vh;
    margin-top: 3rem;
    padding: 2rem;
    background-color: #009999;
    position: relative;
    left: 20%; }
    .access__body--options {
      position: relative;
      top: -3vh; }
      .access__body--options-active, .access__body--options-disabled {
        cursor: pointer; }
      .access__body--options-active {
        background-color: #FFF;
        padding: 1rem;
        font-size: 1.7rem;
        margin-right: 2rem; }
      .access__body--options-disabled {
        font-size: 1.6rem;
        color: #cccccc; }
      .access__body--options-offset {
        margin-left: 2rem; }
    .access__body--access {
      margin-top: 4rem; }
  .access__header {
    background-color: #FFF;
    height: 7rem;
    position: relative;
    width: 68%; }
    .access__header--signup, .access__header--signin, .access__header--vbar {
      display: inline-block;
      position: absolute; }
    .access__header--signup, .access__header--signin {
      font-size: 1.4rem; }
    .access__header--signup {
      left: 10%;
      top: 2vh; }
    .access__header--signin {
      top: 5vh;
      right: 20%; }
    .access__header--vbar {
      background-color: #009999;
      width: .2rem;
      height: 4rem;
      left: 45%;
      top: 1.5vh; }
    .access__header--with {
      background-color: #009999;
      position: relative;
      left: 40%;
      top: -1vh;
      width: 20rem;
      padding: 2rem;
      padding-top: 1.5rem;
      padding-bottom: 1.5rem;
      text-align: center; }
      .access__header--with span {
        color: #FFF;
        font-size: 1.3rem; }
    .access__header--withbar {
      background-color: #FFF;
      display: block;
      position: relative;
      width: .2rem;
      height: 2.5rem;
      left: 63%;
      top: -1vh; }
    .access__header--social {
      background-color: #009999;
      position: relative;
      left: 40%;
      top: -1vh;
      width: 20rem;
      padding: 3rem;
      padding-left: .5rem;
      padding-top: 1.5rem; }
      .access__header--social-1, .access__header--social-2, .access__header--social-3, .access__header--social-4 {
        display: inline-block;
        width: 4rem;
        height: 4rem;
        background-color: #FFF;
        position: absolute;
        top: 3vh;
        border: none;
        cursor: pointer; }
      .access__header--social-2 {
        left: 25%; }
      .access__header--social-3 {
        left: 48%; }
      .access__header--social-4 {
        left: 72%; }
      .access__header--social-img, .access__header--social-img, .access__header--social-img, .access__header--social-img {
        width: 90%; }
    .access__header--orhbar {
      background-color: #FFF;
      display: block;
      position: relative;
      width: 13rem;
      height: .1rem;
      left: 5%;
      top: -2vh; }
    .access__header--withvbar {
      background-color: #FFF;
      display: block;
      position: relative;
      width: .1rem;
      height: 3.5rem;
      left: 5%;
      top: -2vh; }
    .access__header--or {
      position: relative; }
      .access__header--or-o {
        background-color: #FFF;
        position: relative;
        height: 3.5rem;
        width: 3.5rem;
        display: inline-block;
        margin-right: .5rem; }
        .access__header--or-o small {
          position: absolute;
          display: block;
          color: red;
          font-size: 4rem;
          top: -1.5vh;
          left: 20%; }
      .access__header--or-r {
        display: inline-block;
        text-align: center;
        font-size: 3.5rem;
        color: #FFF;
        position: absolute;
        top: -2%; }
  .access__signup {
    position: relative; }
    .access__signup--registered {
      color: #cccccc;
      display: inline-block;
      margin-right: 2.5rem;
      font-size: 1.4rem; }
    .access__signup--signin {
      background-color: #FFF;
      padding: .7rem;
      display: inline-block;
      color: #009999;
      cursor: pointer; }
    .access__signup--group {
      margin-bottom: 5rem; }
    .access__signup--i {
      width: 30%;
      display: inline-block;
      margin-right: .5rem; }
      .access__signup--i-input {
        background-color: #FFF;
        display: block;
        padding-left: 1.5rem;
        height: 4rem;
        border: none;
        border-left: solid #000000 .3rem;
        width: 85%; }
    .access__signup--btn {
      position: absolute;
      right: 10%;
      top: 15vh; }
    .access__signup--submit {
      width: 20rem;
      font-size: 1.4rem;
      border: none;
      border-radius: .2rem;
      padding: 3rem;
      margin-top: 6rem;
      color: #FFf;
      background-color: #cc3333;
      cursor: pointer; }
  .access__signin {
    position: relative; }
    .access__signin--registered {
      color: #cccccc;
      display: inline-block;
      margin-right: 2.5rem;
      font-size: 1.4rem; }
    .access__signin--signin {
      background-color: #FFF;
      padding: .7rem;
      display: inline-block;
      color: #009999;
      cursor: pointer; }
    .access__signin--group {
      margin-bottom: 5rem; }
    .access__signin--i {
      width: 40%;
      display: inline-block;
      margin-right: .5rem; }
      .access__signin--i-input {
        background-color: #FFF;
        display: block;
        padding-left: 1.5rem;
        height: 4rem;
        border: none;
        border-left: solid #000000 .3rem;
        width: 85%; }
    .access__signin--btn {
      position: absolute;
      right: 10%;
      top: 15vh; }
    .access__signin--submit {
      width: 20rem;
      font-size: 1.4rem;
      border: none;
      border-radius: .2rem;
      padding: 3rem;
      margin-top: 6rem;
      color: #FFf;
      background-color: #cc3333;
      cursor: pointer; }

.notfound__ow {
  width: 50%;
  padding-left: 5%;
  float: left; }
  .notfound__ow--f-1 {
    color: #cc3333;
    font-size: 10rem;
    width: 30%;
    margin-right: 5%;
    display: inline-block; }
  .notfound__ow--f-2 {
    color: #009999;
    font-size: 10rem;
    width: 30%;
    display: inline-block;
    margin-left: 15%; }
  .notfound__ow--o {
    display: inline-block;
    left: 12%;
    position: absolute;
    top: 15vh; }
    .notfound__ow--o-num {
      font-size: 35rem;
      position: relative; }
    .notfound__ow--o-text {
      font-size: 1.5rem;
      position: relative;
      color: red;
      position: relative;
      top: -15vh;
      left: -50%; }

.notfound__message {
  width: 50%;
  float: left;
  padding-top: 4rem; }
  .notfound__message--title {
    color: rgba(0, 0, 0, 0.5);
    font-size: 2.5rem;
    margin-bottom: 4rem; }
  .notfound__message--text {
    font-size: 1.4rem;
    margin-bottom: 4rem;
    width: 60%;
    color: rgba(0, 0, 0, 0.8); }
  .notfound__message--btn {
    border: none;
    padding: 1rem;
    background-color: #009999;
    font-size: 1.3rem;
    width: 15rem;
    color: #FFF;
    display: inline-block;
    cursor: pointer; }

.media-content--offset {
  position: relative;
  top: 15rem;
  margin-bottom: 10rem; }

.media-content-piks {
  width: 100%;
  padding: 1%; }
  .media-content-piks img {
    width: 24%;
    display: inline-block;
    position: absolute; }

.bt-menu {
  margin-left: 18%; }

.sender-info {
  position: relative;
  width: 90%; }
  .sender-info .sender-vs-content,
  .sender-info .sender-id-content {
    float: left; }
  .sender-info .sender-message {
    color: grey;
    width: 60%;
    margin-left: 11%;
    font-size: 1.2rem; }
  .sender-info .sender-message-date {
    position: relative;
    width: 100%; }
    .sender-info .sender-message-date .message-date {
      padding-left: 80%;
      position: relative; }

.messenger__box {
  height: 8rem;
  width: 8rem;
  margin-left: 5%;
  cursor: pointer;
  text-align: center;
  margin-bottom: 1rem;
  background-color: #fff;
  box-shadow: -10px 10px 20px 1px rgba(0, 0, 0, 0.2);
  border-bottom: solid #009999 0.2rem; }
  .messenger__box:hover {
    background-color: #009999; }
  .messenger__box:active {
    background-color: #009999; }
  .messenger__box:hover span {
    color: #000; }
  .messenger__box__item {
    margin-bottom: 1.5rem;
    position: relative;
    left: 22%;
    top: 32%;
    width: 50%;
    display: block; }

.po {
  margin-bottom: 15rem;
  width: 100%; }
  .po__header {
    margin-left: 5%;
    position: relative; }
    .po__header--title {
      position: relative;
      margin-bottom: 8rem; }
      .po__header--title-text {
        display: block;
        font-size: 3.5rem;
        margin-bottom: 1.5rem; }
      .po__header--title-sub {
        display: inline-block;
        font-size: 1.6rem;
        color: red;
        position: relative;
        left: 15%; }
    .po__header--connect {
      width: 90%; }
      .po__header--connect-title {
        margin-bottom: 4.5rem;
        margin-left: 10%; }
        .po__header--connect-title p {
          font-size: 2.7rem;
          color: #ff6633; }
      .po__header--connect-text {
        margin-bottom: 6rem;
        margin-left: 15%; }
        .po__header--connect-text p {
          font-size: 1.4rem;
          width: 30rem;
          margin-bottom: 2.5rem; }
        .po__header--connect-text span {
          font-size: 1.4rem;
          color: #cc3333;
          display: inline-block;
          margin-left: 3rem; }
      .po__header--connect-form {
        margin-left: 10%;
        margin-bottom: 8rem; }
      .po__header--connect-emp {
        position: relative;
        padding-bottom: 2rem;
        margin-left: 5%; }
        .po__header--connect-emp-i {
          display: inline-block;
          border: none;
          background-color: transparent;
          margin-right: 5%;
          position: relative;
          cursor: pointer; }
          .po__header--connect-emp-i:hover .po__header--connect-emp-i-icon {
            color: red; }
          .po__header--connect-emp-i-icon, .po__header--connect-emp-i-text {
            display: inline-block; }
          .po__header--connect-emp-i-icon {
            color: #ff6633;
            font-size: 1.5rem;
            margin-right: 1.5rem; }
          .po__header--connect-emp-i-text {
            color: black;
            position: relative;
            top: -.5vh; }
    .po__header--insight {
      background-color: #FFF;
      margin-top: 8rem;
      position: relative; }
      .po__header--insight-wrap {
        width: 100%;
        position: relative;
        padding-left: 2%; }
      .po__header--insight-ck-1, .po__header--insight-ck-2 {
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        display: inline-block;
        position: absolute; }
      .po__header--insight-ck-1 {
        background-color: #009999;
        top: -4vh;
        left: 1%; }
      .po__header--insight-ck-2 {
        background-color: #ffcc66;
        top: 8vh;
        left: 15%; }
      .po__header--insight-title {
        width: 15rem;
        display: inline-block;
        font-size: 1.6rem;
        padding: 1.5rem;
        background-color: rgba(128, 128, 128, 0.1);
        text-align: center;
        margin-left: 1%; }
  .po__how {
    padding-bottom: 10rem;
    width: 100%;
    margin-top: 12rem; }
    .po__how-procces-wrap {
      width: 100%;
      position: relative; }
    .po__how--process {
      width: 100%; }
      .po__how--process-head {
        margin-bottom: 2rem;
        font-size: 2rem;
        width: 50%;
        left: 32%;
        position: relative; }
      .po__how--process-i-wrap {
        width: 100%;
        position: relative; }
      .po__how--process-i {
        position: relative;
        z-index: 1000;
        margin-bottom: 3rem;
        left: 32.5%;
        width: 67%; }
        .po__how--process-i-ck {
          width: 7rem;
          height: 7rem;
          background-color: #ffcc66;
          display: inline-block;
          border-radius: 50%;
          text-align: center;
          position: relative;
          margin-right: 4%; }
          .po__how--process-i-ck small {
            display: inline-block;
            font-size: 1.4rem;
            position: relative;
            top: 4.5vh; }
        .po__how--process-i-arrow {
          color: #009999;
          display: inline-block;
          position: relative;
          margin-right: 5%;
          top: 7vh; }
        .po__how--process-i-sep {
          display: inline-block;
          font-size: 1.5rem;
          position: relative;
          top: 6vh;
          margin-right: 2%;
          color: #cc3333; }
        .po__how--process-i-box {
          background-color: rgba(128, 128, 128, 0.1);
          padding: 1rem;
          display: inline-block;
          font-size: 1.5rem;
          width: 25rem;
          position: relative;
          margin-right: 2%;
          top: 6vh; }
      .po__how--process-ileft {
        position: relative;
        z-index: 1000;
        margin-bottom: 3rem;
        text-align: right;
        right: 5%;
        width: 45%; }
        .po__how--process-ileft-ck {
          width: 7rem;
          height: 7rem;
          background-color: #cc3333;
          display: inline-block;
          border-radius: 50%;
          text-align: center;
          position: relative;
          margin-right: 4%; }
          .po__how--process-ileft-ck small {
            display: inline-block;
            font-size: 1.4rem;
            position: relative;
            top: 4.5vh;
            color: #FFF; }
        .po__how--process-ileft-arrow {
          color: #009999;
          display: inline-block;
          position: relative;
          margin-right: 5%;
          top: 7vh; }
        .po__how--process-ileft-sep {
          display: inline-block;
          font-size: 1.5rem;
          position: relative;
          top: 6vh;
          margin-right: 2%;
          color: #cc3333; }
        .po__how--process-ileft-box {
          background-color: rgba(128, 128, 128, 0.1);
          padding: 1rem;
          display: inline-block;
          font-size: 1.5rem;
          width: 25rem;
          position: relative;
          margin-right: 2%;
          text-align: left;
          top: 6vh; }
    .po__how--bar {
      background-color: #009999;
      width: .2rem;
      height: 60rem;
      position: absolute;
      left: 35%;
      top: 10vh; }
    .po__how--end {
      width: 15rem;
      position: relative;
      left: 32.5%;
      font-size: 2rem; }
  .po__guide {
    padding-bottom: 10rem;
    width: 100%;
    margin-top: 12rem; }
    .po__guide-procces-wrap {
      width: 100%;
      position: relative; }
    .po__guide--process {
      width: 100%; }
      .po__guide--process-head {
        margin-bottom: 4rem;
        font-size: 2rem;
        width: 50%;
        left: 30%;
        position: relative; }
      .po__guide--process-i-wrap {
        width: 100%;
        position: relative; }
      .po__guide--process-i {
        position: relative;
        z-index: 1000;
        margin-bottom: 3rem;
        left: 34.3%;
        width: 60%; }
        .po__guide--process-i-ck {
          width: 2rem;
          height: 2rem;
          background-color: #ffcc66;
          display: inline-block;
          border-radius: 50%;
          text-align: center;
          position: relative;
          margin-right: 4%;
          top: .5rem; }
          .po__guide--process-i-ck small {
            display: inline-block;
            font-size: 1.4rem;
            position: relative;
            top: 4.5vh; }
        .po__guide--process-i-sep {
          display: inline-block;
          font-size: 1.5rem;
          position: relative;
          top: 6vh;
          margin-right: 2%;
          color: #cc3333; }
        .po__guide--process-i-box {
          padding: 1rem;
          display: inline-block;
          font-size: 1.5rem;
          position: relative;
          margin-right: 2%; }
    .po__guide--bar {
      background-color: #009999;
      width: .2rem;
      height: 40rem;
      position: absolute;
      left: 35%;
      top: 7vh; }
    .po__guide--end {
      width: 15rem;
      position: relative;
      left: 32.5%;
      font-size: 2rem; }
  .po__price {
    padding-bottom: 10rem;
    width: 100%;
    margin-top: 12rem; }
    .po__price--options {
      margin-bottom: 7rem;
      position: relative;
      width: 50%;
      left: 35%; }
      .po__price--options-btn {
        display: inline-block;
        border: none;
        padding: 1.5rem;
        width: 12rem;
        background-color: rgba(128, 128, 128, 0.1);
        cursor: pointer; }
      .po__price--options-active {
        background-color: #009999;
        color: #FFF; }
    .po__price-plans-wrap {
      width: 100%;
      padding-left: 10%; }
    .po__price--plans-offset {
      margin-top: 5rem; }
    .po__price--plans {
      width: 30%;
      float: left; }
      .po__price--plans-cost {
        margin-bottom: 2rem;
        padding-left: 10%; }
        .po__price--plans-cost-label {
          color: #cc3333;
          font-size: 1.7rem;
          display: inline-block;
          margin-right: 2rem; }
        .po__price--plans-cost-price {
          display: inline-block; }
          .po__price--plans-cost-price-cu {
            font-size: 2rem;
            display: inline-block;
            margin-right: .5rem;
            color: rgba(0, 0, 0, 0.4); }
          .po__price--plans-cost-price-pr {
            font-size: 3rem;
            display: inline-block; }
      .po__price--plans-box {
        width: 97%;
        padding: 1rem;
        padding-top: 2rem; }
        .po__price--plans-box-i {
          margin-bottom: 3rem; }
          .po__price--plans-box-i-ck {
            width: 1.5rem;
            height: 1.5rem;
            background-color: #ffcc66;
            display: inline-block;
            border-radius: 50%;
            position: relative;
            margin-right: 1.5rem;
            top: .5vh; }
          .po__price--plans-box-i-text {
            display: inline-block;
            font-size: 1.5rem;
            position: relative; }
        .po__price--plans-box-btn {
          position: relative;
          bottom: -5vh;
          left: 30%; }
          .po__price--plans-box-btn button {
            display: inline-block;
            border: none;
            padding: 1.5rem;
            width: 12rem;
            cursor: pointer; }
    .po__price-sponsored-wrap {
      width: 100%;
      padding-left: 10%; }
    .po__price--sponsored {
      width: 40%;
      float: left;
      margin-right: 3%; }
      .po__price--sponsored-cost {
        margin-bottom: 5rem;
        padding-left: 25%; }
        .po__price--sponsored-cost-label {
          color: #cc3333;
          font-size: 1.7rem;
          display: inline-block;
          margin-right: 2rem; }
        .po__price--sponsored-cost-price {
          display: inline-block; }
          .po__price--sponsored-cost-price-cu {
            font-size: 2rem;
            display: inline-block;
            margin-right: .5rem;
            color: rgba(0, 0, 0, 0.4); }
          .po__price--sponsored-cost-price-pr {
            font-size: 3rem;
            display: inline-block; }
      .po__price--sponsored-box {
        width: 97%;
        padding: 3rem; }
        .po__price--sponsored-box-i {
          margin-bottom: 3rem; }
          .po__price--sponsored-box-i-ck {
            width: 1.5rem;
            height: 1.5rem;
            background-color: #ffcc66;
            display: inline-block;
            border-radius: 50%;
            position: relative;
            margin-right: 1.5rem;
            top: .5vh; }
          .po__price--sponsored-box-i-text {
            display: inline-block;
            font-size: 1.5rem;
            position: relative; }
        .po__price--sponsored-box-btn {
          position: relative;
          bottom: -8vh;
          left: 30%; }
          .po__price--sponsored-box-btn button {
            display: inline-block;
            border: none;
            padding: 1.5rem;
            width: 12rem;
            cursor: pointer; }
    .po__price--more {
      margin-top: 15rem;
      background-color: rgba(128, 128, 128, 0.1);
      padding: 5rem;
      display: inline-block;
      font-size: 1.8rem;
      width: 50%;
      position: relative;
      margin-right: 2%;
      border-radius: .8rem;
      left: 15%; }
  .po__promo {
    padding-bottom: 10rem;
    width: 100%;
    margin-top: 12rem; }
    .po__promo-procces-wrap {
      width: 100%;
      position: relative; }
    .po__promo--process {
      width: 60%;
      float: left; }
      .po__promo--process-head {
        margin-bottom: 4rem;
        font-size: 2rem;
        width: 50%;
        left: 9%;
        position: relative; }
      .po__promo--process-i-wrap {
        width: 100%;
        position: relative; }
      .po__promo--process-i {
        position: relative;
        z-index: 1000;
        margin-bottom: 3rem;
        left: 10.3%;
        width: 90%; }
        .po__promo--process-i-ck {
          width: 2rem;
          height: 2rem;
          background-color: #ffcc66;
          display: inline-block;
          border-radius: 50%;
          text-align: center;
          position: relative;
          margin-right: 4%;
          top: .5rem; }
          .po__promo--process-i-ck small {
            display: inline-block;
            font-size: 1.4rem;
            position: relative;
            top: 4.5vh; }
        .po__promo--process-i-sep {
          display: inline-block;
          font-size: 1.5rem;
          position: relative;
          top: 6vh;
          margin-right: 2%;
          color: #cc3333; }
        .po__promo--process-i-box {
          padding: 1rem;
          display: inline-block;
          font-size: 1.5rem;
          position: relative;
          margin-right: 2%; }
    .po__promo--bar {
      background-color: #009999;
      width: .2rem;
      height: 40rem;
      position: absolute;
      left: 7%;
      top: 8vh; }
    .po__promo--end {
      width: 15rem;
      position: relative;
      left: 32.5%;
      font-size: 2rem; }
    .po__promo--action {
      width: 40%;
      float: left;
      padding-top: 4rem; }
      .po__promo--action-camp {
        padding-left: 6%;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem; }
        .po__promo--action-camp-group {
          margin-bottom: 5rem; }
        .po__promo--action-camp-head {
          margin-bottom: 3rem;
          font-size: 1.3rem;
          color: rgba(0, 0, 0, 0.7); }
        .po__promo--action-camp-i {
          width: 80%;
          display: block;
          margin-right: .5rem; }
          .po__promo--action-camp-i-input {
            background-color: rgba(128, 128, 128, 0.1);
            display: block;
            padding-left: 1.5rem;
            height: 6rem;
            border: none;
            border-left: solid #009999 0.3rem;
            width: 85%; }
        .po__promo--action-camp-btn {
          position: relative; }
        .po__promo--action-camp-submit {
          width: 20rem;
          font-size: 1.4rem;
          border: none;
          border-radius: .2rem;
          padding: 1.5rem;
          color: #FFf;
          background-color: #009999;
          cursor: pointer; }
      .po__promo--action-join {
        padding-left: 6%;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem; }
        .po__promo--action-join-group {
          margin-bottom: 5rem; }
        .po__promo--action-join-head {
          margin-bottom: 3rem;
          font-size: 1.3rem;
          color: rgba(0, 0, 0, 0.7); }
        .po__promo--action-join-i {
          width: 80%;
          display: block;
          margin-right: .5rem; }
          .po__promo--action-join-i-input {
            background-color: rgba(128, 128, 128, 0.1);
            display: block;
            padding-left: 1.5rem;
            height: 6rem;
            border: none;
            border-left: solid #009999 0.3rem;
            width: 85%; }
        .po__promo--action-join-btn {
          position: relative; }
        .po__promo--action-join-registered {
          color: rgba(128, 128, 128, 0.7);
          display: inline-block;
          margin-right: 2.5rem;
          font-size: 1.4rem; }
        .po__promo--action-join-signin {
          background-color: #FFF;
          font-size: 1.5rem;
          padding: .7rem;
          display: inline-block;
          color: #009999;
          cursor: pointer; }
        .po__promo--action-join-submit {
          width: 20rem;
          font-size: 1.4rem;
          border: none;
          border-radius: .2rem;
          padding: 1.5rem;
          color: #FFf;
          background-color: #009999;
          cursor: pointer;
          display: inline-block; }

.preview-content--offset {
  position: relative;
  top: 15rem; }

.sponsored-content {
  position: relative;
  top: 25rem; }

.contributor-content {
  width: 100%;
  position: relative;
  margin-bottom: 4rem; }
  .contributor-content .contributor {
    position: absolute;
    width: 15rem;
    background-color: red;
    right: 0;
    top: 5.5rem; }
    .contributor-content .contributor-title, .contributor-content .contributor-items {
      display: block;
      font-size: 1.5rem;
      right: 0;
      position: absolute; }
    .contributor-content .contributor-title {
      text-align: right; }
    .contributor-content .contributor-items {
      background-color: rgba(204, 51, 51, 0.2);
      width: 10rem;
      top: 2rem;
      padding-left: 2%; }
  .contributor-content .download {
    position: absolute;
    left: -10%;
    top: 15rem;
    z-index: -1; }
    .contributor-content .download-btn {
      border: none;
      border-radius: .2rem;
      background-color: transparent;
      width: 10rem;
      display: block;
      color: #cc3333;
      font-size: 1.5rem; }
      .contributor-content .download-btn:hover {
        cursor: pointer; }

.prev-product-content {
  margin-top: 7.3rem;
  margin-bottom: 6rem;
  width: 100%; }
  .prev-product-content .prev-product {
    margin-bottom: 5rem;
    width: 100%; }
    .prev-product-content .prev-product-pik {
      width: 100%; }
  .prev-product-content .related-products {
    width: 100%; }
    .prev-product-content .related-products-title {
      font-size: 1.8rem;
      padding: 1rem;
      border-bottom: solid 0.1rem #cc3333;
      text-align: center; }
    .prev-product-content .related-products-piks {
      padding-top: 2rem;
      padding-bottom: 3rem; }
  .prev-product-content .related {
    width: 100%; }

.product-meta {
  position: relative;
  top: 22rem; }
  .product-meta-title {
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    margin-left: 5%;
    font-size: 1.8rem;
    border-bottom: solid 0.1rem #cc3333;
    width: 80%;
    padding-left: 10%; }
  .product-meta .meta__list {
    padding-top: 1.5rem; }
    .product-meta .meta__list-item {
      font-size: 1.6rem;
      margin-bottom: 2rem; }
      .product-meta .meta__list-item-label, .product-meta .meta__list-item-value {
        display: inline-block; }
      .product-meta .meta__list-item-label {
        margin-right: 5%;
        width: 45%;
        border-bottom: solid 0.1rem #cc3333;
        padding-bottom: 1rem;
        padding-left: 3%; }
      .product-meta .meta__list-item-value {
        color: #cc3333; }

.comments {
  width: 100%;
  margin-bottom: 10rem; }
  .comments__box {
    width: 80%;
    position: relative;
    margin-bottom: 3rem; }
  .comments__comment {
    margin-bottom: 3rem; }
    .comments__comment-commentor-name {
      border-bottom: solid 0.1rem #cc3333;
      width: 20%;
      font-size: 1.7rem;
      padding-bottom: .2rem; }
    .comments__comment-text {
      margin-bottom: 6rem; }
      .comments__comment-text-wrap {
        padding: 1rem; }
        .comments__comment-text-wrap p {
          font-size: 1.5rem; }
    .comments__comment-time {
      position: relative; }
      .comments__comment-time p {
        position: relative;
        width: 20%;
        left: 80%;
        text-align: center;
        font-size: 1.3rem;
        padding: .5rem;
        color: #cc3333; }
  .comments__bar {
    content: "";
    display: block;
    width: 20rem;
    background-color: #cc3333;
    height: .1rem;
    margin-bottom: 1rem; }

.extra-comments {
  margin-bottom: 15rem;
  position: relative; }
  .extra-comments-wrap {
    width: 100%;
    position: relative; }
  .extra-comments-text {
    width: 50%;
    position: relative;
    margin: 0 auto; }
  .extra-comments-btn {
    color: #cc3333;
    position: relative;
    font-size: 1.6rem; }

.accounts-profile-content {
  top: 10rem;
  position: relative; }

.accounts-profile {
  background-image: url(../imgs/user.jpg);
  height: 35rem;
  position: relative; }
  .accounts-profile-u-data {
    width: 90%;
    margin: 0 auto;
    position: relative;
    top: 70%;
    background-color: rgba(255, 255, 255, 0.5); }
  .accounts-profile-u-avatar {
    position: relative;
    left: 2rem;
    top: -3rem; }
  .accounts-profile-u-membership {
    position: relative;
    left: 3rem; }
    .accounts-profile-u-membership span {
      display: block;
      margin-bottom: 1rem;
      font-size: 1.5rem; }
  .accounts-profile-u-handle {
    color: #cc3333; }
  .accounts-profile-u-modify-wrap {
    position: absolute;
    top: 2rem;
    right: 15%;
    width: 15%; }
  .accounts-profile-u-edit-btn {
    width: 100%;
    font-size: 1.8rem; }
    .accounts-profile-u-edit-btn:hover {
      cursor: pointer; }

.accounts-autogenerated {
  margin-top: 25rem;
  position: relative; }
  .accounts-autogenerated-wrap {
    width: 90%;
    margin: 0 auto;
    padding-left: 2rem; }
  .accounts-autogenerated-btn {
    width: 20rem;
    font-size: 2rem;
    position: relative;
    left: 45%;
    transform: translateX(-50%);
    margin-top: 3rem; }
    .accounts-autogenerated-btn:hover {
      cursor: pointer; }
  .accounts-autogenerated-tags-btn {
    width: 20rem;
    font-size: 2rem;
    position: relative;
    left: 45%;
    transform: translateX(-50%);
    margin-top: 3rem;
    border: solid 1px #FFF; }
    .accounts-autogenerated-tags-btn:hover {
      cursor: pointer; }
  .accounts-autogenerated-tags-content {
    background-color: #cc3333;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 2rem; }
    .accounts-autogenerated-tags-content .accounts-autogenerated-tags-title {
      color: #FFF;
      font-size: 2rem;
      padding-left: 23%;
      margin-bottom: 1.5rem; }
  .accounts-autogenerated-suggest-title {
    border-bottom: solid 2px #cc3333;
    font-size: 2rem;
    padding-bottom: .5rem;
    width: 20%;
    margin-bottom: 3rem; }
  .accounts-autogenerated-suggest-person {
    position: relative;
    width: 60%; }
    .accounts-autogenerated-suggest-person section {
      float: left;
      width: 33%;
      position: relative; }
  .accounts-autogenerated-suggest-person, .accounts-autogenerated-suggest-trend {
    float: left; }
  .accounts-autogenerated-suggest-trend {
    width: 40%; }
  .accounts-autogenerated-suggest-group {
    margin-bottom: 2rem; }
  .accounts-autogenerated-suggest-person-content-wrap {
    position: relative;
    width: 100%; }
  .accounts-autogenerated-suggest-fig {
    position: relative;
    left: 3rem;
    top: 3.5rem; }
  .accounts-autogenerated-suggest-add {
    position: absolute;
    right: 40%;
    top: .4rem;
    font-size: 2rem;
    font-weight: bold;
    text-align: center; }
    .accounts-autogenerated-suggest-add span {
      margin-top: .1rem;
      display: inline-block; }

.vt-size-fd {
  height: 3.5rem; }

.recover-content {
  height: 88vh;
  padding-top: 3rem;
  background-color: rgba(0, 153, 153, 0.2); }

.recover {
  width: 50%;
  margin: 0 auto;
  padding-left: 10%; }
  .recover-title {
    margin-bottom: 8rem;
    font-size: 2rem; }
  .recover-ask {
    padding-top: 3rem; }
  .recover-forgot-link {
    text-decoration: none;
    color: #cc3333;
    display: inline-block;
    margin-left: 1rem;
    font-size: 1.4rem;
    font-weight: 700; }
    .recover-forgot-link:hover {
      color: rgba(0, 0, 0, 0.6); }

.account-data {
  position: relative; }
  .account-data .account-data-avatar,
  .account-data .account-data-wrapper {
    float: left; }
  .account-data .account-data-avatar {
    width: 20%; }
  .account-data .account-data-wrapper {
    padding-top: 3rem;
    width: 40%; }

.clearfix {
  display: block;
  content: "";
  clear: both; }

.personal-data {
  position: relative; }

.signup-content {
  height: 88vh;
  padding-top: 3rem;
  background-color: rgba(0, 153, 153, 0.2); }

.signup {
  width: 50%;
  margin: 0 auto;
  padding-left: 10%; }
  .signup-title {
    margin-bottom: 5rem;
    font-size: 2rem; }
  .signup-ask {
    font-size: 1.5rem;
    padding-top: 3rem; }
  .signup-ask-link {
    text-decoration: none;
    color: #cc3333;
    display: inline-block;
    margin-left: 1rem;
    font-size: 1.8rem; }

.user-bio {
  float: left;
  width: 35%;
  margin-left: 2.5rem;
  padding-top: 1.5rem;
  background-color: rgba(0, 153, 153, 0.2);
  top: -2rem;
  position: relative; }
  .user-bio__title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    padding-left: 1rem; }
  .user-bio__text {
    margin-bottom: 5rem;
    position: relative;
    padding-left: 1rem;
    width: 90%; }
    .user-bio__text-content {
      font-size: 1.2rem;
      margin-bottom: 3rem; }
    .user-bio__text-btn {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      position: relative;
      color: #000;
      text-decoration: none;
      left: 30%; }
  .user-bio__location {
    width: 90%;
    margin-bottom: 5rem;
    padding-left: 1rem; }
    .user-bio__location-common {
      width: 100%;
      position: relative;
      font-size: 1.3rem; }
      .user-bio__location-common span {
        display: block;
        float: left; }
        .user-bio__location-common span small {
          top: .7rem;
          position: relative;
          font-size: 1.2rem; }
      .user-bio__location-common span:not(last-child) {
        margin-right: 1rem; }
      .user-bio__location-common .location-icon {
        width: 3rem;
        background-color: rgba(0, 153, 153, 0.1); }
  .user-bio__stats {
    width: 100%;
    background-color: #FFF;
    padding-left: 1rem;
    position: relative;
    padding-top: 4rem; }
    .user-bio__stats-follow {
      width: 4rem;
      height: 4rem;
      border-radius: 50%;
      background-color: #cc3333;
      position: absolute;
      left: 80%;
      top: -2rem; }
      .user-bio__stats-follow .add-icon {
        font-size: 3rem;
        font-weight: 900;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%); }
    .user-bio__stats-info {
      margin-top: 2rem; }
      .user-bio__stats-info .stats {
        float: left;
        width: 30%; }
        .user-bio__stats-info .stats:not(last-child) {
          margin-right: 2%; }
      .user-bio__stats-info .stats-info-container span {
        display: block;
        width: 100%;
        padding-left: 20%; }
      .user-bio__stats-info .stats-info-container .stat-link {
        padding-left: 2rem; }
      .user-bio__stats-info .stats-info-container .numeric-stat {
        font-size: 1.6rem;
        font-weight: 500;
        padding-left: 25%; }
      .user-bio__stats-info .stats-info-container .stat-text {
        color: rgba(0, 0, 0, 0.6);
        font-size: 1.3rem;
        margin-bottom: 1rem; }
    .user-bio__stats-connect {
      position: relative; }
      .user-bio__stats-connect .connect-content {
        padding-left: 50%; }

.user-resources {
  float: left;
  width: 60%;
  position: relative;
  top: -2rem; }
  .user-resources__misc {
    width: 90%;
    position: relative;
    padding-left: 15%;
    height: 10rem;
    padding-top: 3rem; }
    .user-resources__misc-content {
      width: 100%; }
    .user-resources__misc-message, .user-resources__misc-donate {
      display: inline block; }
    .user-resources__misc-message {
      margin-right: 2%; }
  .user-resources__creations {
    background-color: rgba(0, 153, 153, 0.2); }

.welcome-content {
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 153, 153, 0.1); }

.welcome-message {
  margin-bottom: 3.5rem; }

.message {
  font-size: 1.5rem;
  margin-left: .3rem;
  margin-bottom: .2rem;
  padding-left: 5%;
  padding-right: 4%; }

.welcome-access {
  width: 100%;
  position: relative; }

.koka-header__nav-secondary {
  position: absolute;
  top: 15rem;
  width: 25%;
  right: 0; }
