.mobile-sticky-menu {
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 3px solid #2280fc;
  background: #fff;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
}
.mobile-sticky-menu__wrapper {
  display: flex;
  justify-content: space-between;
}
.mobile-sticky-menu__wrapper .msm-item {
  width: 33.333%;
  display: block;
  text-align: Center;
  color: #4b5176;
  font-weight: 600;
  padding: 15px 0;
}
.mobile-sticky-menu__wrapper .msm-item .icon {
  display: block;
  margin-bottom: 10px;
}
.mobile-sticky-menu__wrapper .msm-item .icon svg {
  display: block;
  margin: 0 auto;
  height: 20px;
  width: 20px;
}
.mobile-sticky-menu__wrapper .msm-item .icon svg path {
  transition: all 0.2s ease-in-out;
}
.mobile-sticky-menu__wrapper .msm-item .icon svg path[stroke] {
  stroke: #4b5176;
}
.mobile-sticky-menu__wrapper .msm-item .icon svg path[fill] {
  fill: #4b5176;
}
.mobile-sticky-menu__wrapper .msm-item .text {
  transition: all 0.2s ease-in-out;
  color: #4b5176;
  display: block;
  line-height: 14px;
  font-weight: 600;
  font-size: 14px;
}
.mobile-sticky-menu__wrapper .msm-item:hover .text,
.mobile-sticky-menu__wrapper .msm-item:active .text {
  color: #2280fc;
  transition: all 0.2s ease-in-out;
}
.mobile-sticky-menu__wrapper .msm-item:hover .icon svg path,
.mobile-sticky-menu__wrapper .msm-item:active .icon svg path {
  transition: all 0.2s ease-in-out;
}
.mobile-sticky-menu__wrapper .msm-item:hover .icon svg path[stroke],
.mobile-sticky-menu__wrapper .msm-item:active .icon svg path[stroke] {
  stroke: #2280fc;
}
.mobile-sticky-menu__wrapper .msm-item:hover .icon svg path[fill],
.mobile-sticky-menu__wrapper .msm-item:active .icon svg path[fill] {
  fill: #2280fc;
}
.mobile-sticky-menu__wrapper .msm-center {
  position: absolute;
  height: 84px;
  top: -10px;
  border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  width: 33.33333%;
  background: #2280fc;
  color: #fff;
  right: 0;
  padding-top: 20px !important;
  left: 0;
  margin: auto;
}
.mobile-sticky-menu__wrapper .msm-center svg path[stroke] {
  stroke: #fff !important;
}
.mobile-sticky-menu__wrapper .msm-center svg path[fill] {
  fill: #fff !important;
}
.mobile-sticky-menu__wrapper .msm-center .text {
  color: #fff !important;
}
.mobile-sticky-menu__hidden-content {
  display: none;
  background: #2280fc;
}
.mobile-sticky-menu__hidden-content .hidden-content {
  padding: 20px;
}
.mobile-sticky-menu__hidden-content a {
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
.mobile-sticky-menu__hidden-content a:last-child {
  margin-bottom: 0;
}
.mobile-sticky-menu__hidden-content a .icon {
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: Center;
  justify-content: Center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
.mobile-sticky-menu__hidden-content a .icon svg {
  display: block;
  width: 24px;
  height: 24px;
}
.mobile-sticky-menu__hidden-content a .icon svg path[stroke] {
  stroke: #fff;
}
.mobile-sticky-menu__hidden-content a .icon svg path[fill] {
  fill: #fff;
}
.mobile-sticky-menu__hidden-content a .infos {
  width: calc(100% - 60px);
  padding-left: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}
.mobile-sticky-menu__hidden-content a .infos span {
  margin-top: 5px;
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}
.mobile-sticky-menu__hidden-content a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.mobile-sticky-menu .msm-closer {
  position: absolute;
  height: 84px;
  top: -10px;
  border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  width: 33.33333%;
  background: #2280fc;
  color: #fff;
  right: 0;
  display: none;
  padding-top: 20px !important;
  left: 0;
  margin: auto;
}
.mobile-sticky-menu .msm-closer .icon {
  display: block;
}
.mobile-sticky-menu .msm-closer svg {
  display: block;
  margin: 0 auto;
  height: 20px;
  width: 20px;
}
.mobile-sticky-menu .msm-closer svg path[stroke] {
  stroke: #fff !important;
}
.mobile-sticky-menu .msm-closer svg path[fill] {
  fill: #fff !important;
}
.mobile-sticky-menu .msm-closer .text {
  color: #fff;
  display: block;
  text-align: Center;
  margin-top: 10px;
  line-height: 14px;
  font-weight: 600;
  font-size: 14px;
}
@media (min-width: 768px) {
  .mobile-sticky-menu {
    display: none;
  }
}
.desktop-support {
  position: fixed;
  z-index: 100;
  right: 0;
  top: 50%;
  transform: TranslateY(-50%);
  border-radius: 20px 0 0 20px;
  height: 215px;
  width: 60px;
}
.desktop-support img {
  cursor: pointer;
  display: block;
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  width: 60px;
  height: 215px;
}
.desktop-support__list {
  position: absolute;
  transition: all 0.4s ease-in-out;
  width: 250px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  right: -250px;
  z-index: 1;
  padding: 20px;
}
.desktop-support__list a {
  margin-bottom: 10px;
  display: flex;
  align-items: Center;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  padding: 5px;
}
.desktop-support__list a:last-child {
  margin-bottom: 0;
}
.desktop-support__list a svg {
  display: block;
  width: 24px;
  height: 24px;
}
.desktop-support__list a svg path[stroke] {
  stroke: #fff;
}
.desktop-support__list a svg path[fill] {
  fill: #fff;
}
.desktop-support__list a .icon {
  display: flex;
  justify-content: Center;
  align-items: Center;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background: #2280fc;
}
.desktop-support__list a .text {
  width: calc(100% - 50px);
  padding-left: 10px;
  font-weight: 600;
}
.desktop-support__list a:hover {
  background: #2280fc;
  border-color: #2280fc;
  color: #fff;
}
.desktop-support__list::after {
  content: "";
  top: 50%;
  background: #fff;
  right: -3px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
}
.desktop-support:hover {
  width: 320px;
  transition: all 0.4s ease-in-out;
}
.desktop-support:hover .desktop-support__list {
  right: 70px;
}
@media (max-width: 767px) {
  .desktop-support {
    display: none !important;
  }
}
