/* 
Note : If you have hover text longer than non-hover; you have to fix size of  .cta{min-width: 168px;}
Note2 : hover content size has to be adjusted according to content
*/
/* __________________________*/
.cta_wrapper {
  position: fixed;
  display: flex;
  right: 5%;
  bottom: 3%;
  z-index: 999;
}

.cta_wrapper button {
  font-size: inherit;
  transition: none;
}

.cta_wrapper:not(.hz) {
  flex-direction: column;
}

.cta_wrapper:not(.hz) > :first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.cta_wrapper:not(.hz) > :last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.cta_wrapper:not(.hz) > :not(:only-child):not(:last-child) {
  border-bottom: 1px solid white;
}

.cta_wrapper.hz {
  flex-direction: row;
}

.cta_wrapper.hz > :first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.cta_wrapper.hz > :last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.cta_wrapper.hz > :not(:only-child):not(:last-child) {
  border-right: 1px solid white;
}

.cta {
  flex: 1 1 auto;
  display: flex;
  background: #c79213;
  border: 2px solid #c79213;
  box-shadow: 0 8px 10px rgba(249, 92, 24, 0.3);
  cursor: pointer;
  min-height: 50px;
  height: auto;
  min-width: 168px;
  width: auto;
  text-align: center;
  align-items: center;
  padding: 0 5px;
}

.cta .cta-front {
  flex: 1;
  color: white;
  font-family: sans-serif;
}

.cta i {
  vertical-align: middle;
  font-size: 29px;
  margin-right: 5px;
}

.cta .cta-hover {
  flex: 1;
  display: none;
  color: #c79213;
  background: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.cta .cta-hover a {
  color: #c79213;
}

.cta:hover {
  background: white;
}

.cta:hover .cta-front {
  display: none;
}

.cta:hover .cta-hover {
  display: block;
}
