:root {
  --dark: #333;
  --light: #fff;
  --neutral: #f6f6f6;
  --neutral-dark: #d1d1d1;
  --color: #0d6efd;
  --color-light: #941ed2;
  --color-dark: #2719cd;
  --font-stack: "Josefin Sans", "Montserrat", "sans-serif";
}

.menu__button {
  --x: -50%;
  --y: 0;
  --z: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, #c22d1e, #ff2a14); 
  padding: 10px 20px;
  border-radius: 28px;
  box-shadow: 0 2px 40px -10px #c02d1c;
  color: var(--light);
  font-size: 18px;
  white-space: nowrap;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate3d(var(--x), var(--y), var(--z));
  cursor: pointer;
  z-index: 9105;
  transition: 0.15s cubic-bezier(0.33, 1, 0.53, 1);
  border: 0;
}

.menu__button[hidden] {
  --y: 200%;
}
.menu__button div {
  display: flex;
  align-items: center;
  margin-right: 10px;
  font-size: 18px !important;
}
.menu__button div div {
  display: table;
  height: 1px;
  background: var(--light);
  box-shadow: 0 4px 0 var(--light), 0 -4px 0 var(--light);
}

.menu__overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  z-index: 1041;
  top: 0;
}

.menu__body {
  --x: 0;
  --y: 0;
  --z: 0;
  display: block;
  width: 100%;
  background: var(--light);
  padding-bottom: 15px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0px -9px 50px -30px black;
  position: fixed;
  bottom: 0;
  z-index: 1042;
  transform: translate3d(var(--x), var(--y), var(--z));
  transition: 0.2s cubic-bezier(0.33, 1, 0.53, 1);
}
.menu__body[hidden] {
  --y: 150%;
}
.menu__body > *:not(:last-child) {
  border-bottom: 2px solid var(--neutral);
}

.menu__header {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
}

.menu__header label div:after {
  content: "";
  width: 2px;
  height: 10px;
  background: var(--dark);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.menu__header p {
  font-size: 18px;
  font-weight: bold;
  vertical-align: center;
  margin-bottom: 0;
}
.menu__header h3 {
  font-weight: normal;
}
.menu__header button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background: var(--neutral-dark);
  border-radius: 50%;
  cursor: pointer;
  border: 0;
}
.menu__header button div {
  width: 15px;
  height: 3px;
  background: var(--light);
  position: relative;
  transform: rotate(5.5rad);
}
.menu__header button div:before {
  content: "";
  width: 3px;
  height: 15px;
  background: var(--light);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu__links {
  display: flex;
  padding: 10px 15px;
  font-weight: bold;
  overflow-x: auto;
}
.menu__links a {
  flex: 1 1 1px;
  padding: 10px 8px;
  color: var(--dark);
  text-decoration: none;
  white-space: nowrap;
}

.menu__contact {
  display: flex;
  padding: 8px;
}
.menu__contact svg {
  width: 100%;
  fill: var(--color);
}

.menu__contact a i {
  width: 100%;
  color: var(--dark);
  font-size: 20px;
}

.menu__contact a.box-link {
  flex: 1 1 30%;
  padding: 5px;
  margin: 5px;
  border-radius: 8px;
  background: var(--neutral);
  color: black;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}

.menu__contact.address i {
  font-size: 25px;
  color: var(--dark);
}

.menu__contact.address .fbox-plain {
    align-items: center;
    margin-left: 5px;
    font-size: 12px;
    width: 50%;
    padding-left: 5px;
}

.menu__contact.address .fbox-plain.clock {
    border-left: 1px solid #eee;
}

.menu__contact.address .fbox-content p {
    margin-top: 0;
	color: var(--dark);
}

.menu__contact.address .fbox-content p.title {
	color: var(--dark);
	text-transform: uppercase;
	letter-spacing: 1px;
}




@media (min-width: 768px) {
	.menu__button {
	  display: none;
	}
	
	.menu__body {
		bottom: auto;
		top: 20px;
		right: 0;
		max-width: 450px;
		border-top-left-radius: 20px;
		border-top-right-radius: 0;
		border-bottom-left-radius: 20px;
	}
}

@media (max-width: 767.98px) {
	
}


@media (max-width: 575.98px) {
    .menu__body .tabs {
        flex-direction: row;
		overflow-x: auto;
		flex-wrap: nowrap;
		margin-bottom: 0 !important;
    }
	
    .menu__body .canvas-alt-tabs.tabs-bb .nav-link.active {
        border-bottom: 1px solid var(--cnvs-themecolor) !important;
    }
}