/*------------------------------------------------------------------
[Master Style]
-------------------------------------------------------------------*/

/* width */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent; 
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
}

/* *,
*::after,
*::before {
	cursor: none;
} */

._cursor{
  display: none;
}

body{

  /* Sans Serif */

  /* font-family: 'Roboto', sans-serif; */
  /* 400,500,700,900 */
  /* font-family: 'Lato', sans-serif; */
  /* 400,700,900 */
  /* font-family: 'Raleway', sans-serif; */
  /* 400,500,600,700,800,900 */
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 14px;
  /* 400,500,700 */
  color: #444;

  /* Hand Writing */

  /* font-family: 'Pacifico', 'Segoe UI', sans-serif; */
  /* font-family: 'Amatic SC', 'Segoe UI', sans-serif; */
  /* font-family: 'Monoton', 'Segoe UI', sans-serif; */

  overflow: hidden;
}

a{
  color: inherit;
}

a:hover{
  color: inherit;
}

._lazy {
  background-color: #eee;
}

._cf-table-main{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

._cf-table-left{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('../img/background/bg.jpg');
}

._cf-table-left:before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,0.1);
}

._cf-table-right{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}

._cf-table-overflow{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

._cf-table-box{
  height: 300px;
  position: relative;
}

._cf-table-box-line1,
._cf-table-box-line2,
._cf-table-box-line3,
._cf-table-box-line4{
  position: absolute;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

._cf-table-box-line1{
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
}

._cf-table-box-line2{
  top: 0;
  right: 0;
  width: 3px;
  height: 0;
}

._cf-table-box-line3{
  bottom: 0;
  right: 0;
  width: 0;
  height: 3px;
}

._cf-table-box-line4{
  bottom: 0;
  left: 0;
  width: 3px;
  height: 0;
}

._cf-table-box-line1{
  background-color: rgb(52, 218, 176);
}

._cf-table-box-line2{
  background-color: rgb(248, 179, 19);
}

._cf-table-box-line3{
  background-color: rgb(251, 120, 120);
}

._cf-table-box-line4{
  background-color: rgb(74, 129, 230);
}

._cf-table-box:hover ._cf-table-box-line1,
._cf-table-box:hover ._cf-table-box-line3{
  width: 100%;
}


._cf-table-box:hover ._cf-table-box-line2,
._cf-table-box:hover ._cf-table-box-line4{
  height: 100%;
}

._cf-table-box:hover:before{
  border: 1px solid rgba(0, 0, 0, 0.1);
}

._cf-table-box:hover{
  border-color: rgba(0,0,0,0.1);
}

._cf-table-box-header{
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 50px;
  line-height: 50px;
  padding: 0 16px;
}

._cf-table-box-content{
  position: absolute;
  top: 50px;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 4px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

@media (min-width: 1366px){
  ._cf-table-right{
    width: calc(100% - 400px);
  }
}

._cf-table-hero{
  position: absolute;
  top: 30%;
  left: 30px;
  /* font-family: 'Crafty Girls'; */
  color: #fff;
  z-index: 100;
  text-shadow: 1px 5px 5px rgba(0,0,0,0.8);
  font-size: 20px;
}

@media (max-width: 1365px){
  ._cf-table-hero{
    display: none;
  }
}

._cf-table-hero strong{
  font-size: 50px;
}

._cf-icon{
  height: 95px;
  width: 95px;
  border: 1px solid rgba(0,0,0,0.1);
  position: relative;
  background-color: #fff;
  border-radius: 26px;
}

._cf-icon i{
  font-size: 32px;
}

._cf-number{
  position: absolute;
  top: -14px;
  right: -8px;
  font-size: 24px;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  height: 35px;
  width: 35px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

._cf-number-green{
  background-color: rgb(52, 218, 176);
  color: #fff;
  border-color: transparent;
}

._cf-number-yellow{
  background-color: rgb(248, 179, 19);
  color: #fff;
  border-color: transparent;
}

._cf-number-red{
  background-color: rgb(251, 120, 120);
  color: #fff;
  border-color: transparent;
}

._cf-icon:hover ._cf-number._cf-number-green{
  background-color: rgb(52, 218, 176);
}

._cf-icon:hover ._cf-number._cf-number-yellow{
  background-color: rgb(248, 179, 19);
}

._cf-icon:hover ._cf-number._cf-number-red{
  background-color: rgb(251, 120, 120);
}

._cf-icon:hover ._cf-number{
  background-color: #eee;
}

._cf-nav{
  position: relative;
  height: 50px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

._cf-nav-header{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 50px;
  line-height: 50px;
  padding: 0 32px;
  font-size: 16px;
}

._cf-nav-setting,
._cf-nav-setting-close{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

._cf-nav-setting._cf-nav-setting-transaction{
  width: 60px;
}

._cf-nav-logout{
  position: absolute;
  top: 0;
  right: 50px;
  bottom: 0;
  width: 50px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

._cf-nav-setting:hover,
._cf-nav-setting-close:hover,
._cf-nav-logout:hover{
  background-color: rgba(0,0,0,0.05);
}

._cf-setting-content{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  overflow-y: auto;
  overflow-x: hidden;
}

._cf-setting-content._cf-setting-content-active{
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
}

@media (min-width: 1366px){
  ._cf-setting-content{
    width: calc(100% - 400px);
  }
}

._cf-nav-trans{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 999;
}

._cf-sidebar-category{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fbfbfb;
}

._cf-sidebar-category a:first-child{
  font-size: 16px;
  margin-bottom: 6px;
  height: 50px;
  line-height: 40px;
  background-color: #fdfdfd;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

._cf-sidebar-category a{
  position: relative;
  display: block;
  padding: 4px 14px; 
  z-index: 2;
}

._cf-sidebar-category a:not(:first-child):before{
  content: "";
  top: 3px;
  right: 4px;
  bottom: 3px;
  left: 4px;
  border-radius: 32px;
  position: absolute;
  z-index: -1;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

._cf-sidebar-category a:hover:before{
  background-color: rgba(0,0,0,0.05);
}

._cf-sidebar-category a._active:before{
  background-color: rgba(0,0,0,0.06);
}

._cf-sidebar-trans{
  position: fixed;
  top: 50px;
  left: 400px;
  bottom: 0;
  width: 160px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  background-color: #fff;
  z-index: 100;
}

._cf-content-trans-content{
  position: absolute;
  top: 50px;
  bottom: 40px;
  right: 0;
  left: 0;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #f5f5f5;
}

@media (max-width: 1365px){
  ._cf-sidebar-trans{
    left: 0;
  }
}

._cf-content-trans{
  position: absolute;
  top: 50px;
  right: 0;
  bottom: 0;
  left: 160px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

._cf-content-trans._cf-content-trans-menu{
  top: 0px;
  left: 0;
}

._cf-sidebar-trans._cf-sidebar-trans-active{
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}

._cf-content-trans._cf-sidebar-trans-content-active{
  left: 0;
}

@media (max-width: 992px){
  ._cf-sidebar-trans{
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
  }
  ._cf-sidebar-trans._cf-sidebar-trans-active{
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  ._cf-content-trans{
    left: 0;
  }
}

._cf-content-trans-nav{
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 50px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

._cf-chart{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

._cf-search-input{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50px;
  padding: 0 16px;
}

._cf-search-input input{
  border-bottom: none!important;
  margin-top: 4px!important;
}

._cf-search{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

._cf-chart:hover{
  background-color: rgba(0,0,0,0.05);
}

._cf-content-trans-footer{
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fbfbfb;
}

@media (min-width: 1366px){
  ._cf-nav-trans{
    left: 400px;
  }
}

._cf-nav-trans-mobile{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

._cf-nav-trans-mobile:hover{
  background-color: rgba(0,0,0,0.05);
}

._cf-nav-trans-member{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 110px;
  padding: 0 16px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

._cf-nav-trans-member input{
  border-bottom: none!important;
}

._cf-nav-trans-member .input-field{
  margin-top: 0px;
}

._cf-nav-trans-member-personal{
  position: absolute;
  top: 0;
  left: 110px;
  bottom: 0;
  right: 40px;
  padding: 0 16px;
}

._cf-nav-trans-member-personal .input-field{
  margin-top: 0!important;
}

._cf-nav-trans-member-personal .input-field input,
._cf-nav-trans-member-personal .input-field input:focus{
  border-bottom: none!important;
}

.select-dropdown.dropdown-trigger{
  border-bottom: none!important;
}

._cf-pay-action{
  position: absolute;
  top: 0;
  left: 100px;
  bottom: 0;
  width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

._cf-pay-action._cf-pay-action-menu{
  left: 0;
}

._cf-pay-action > div{
  line-height: 40px;
  padding: 0 16px;
  border-right: 1px solid rgba(0,0,0,0.1);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  text-align: center;
  position: relative;
}

._cf-pay-action > div:hover{
  background-color: rgba(0,0,0,0.05);
}

._cf-pay-action ._cf-pay-active{
  background-color: #eee;
}

._cf-product{
  padding: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

._cf-product-img{
  height: 180px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}

._cf-product-desc{
  padding: 6px 0 0 0;
  font-size: 12px;
  position: relative;
  padding-right: 50px;
  font-size: 12px;
}

._cf-add-cart{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

._cf-add-cart:before{
  content: "Add Cart";
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 32px;
  background-color: rgb(23, 185, 185);
  padding: 2px 10px;
  color: #fff;
  -webkit-box-shadow: 0 6px 10px rgba(0,0,0,0.3);
          box-shadow: 0 6px 10px rgba(0,0,0,0.3);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  font-size: 12px;
}

._cf-add-cart:hover:before{
  background-color: rgb(32, 168, 168);
}

._cf-price{
  position: absolute;
  top: 7px;
  right: 0;
  border-radius: 32px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  font-size: 11px;
}

._cf-bubble{
  position: absolute;
  top: 5px;
  right: 5px;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  background-color: rgb(23, 185, 185);
  color: #fff;
}

._cf-cart-content{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 350px;
  background-color: #fff;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 999;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  overflow: hidden;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

@media (max-width: 360px){
  ._cf-cart-content{
    width: 100%;
  }
}

._cf-side-active{
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0)
}

._cf-cart-content-nav{
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 50px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  line-height: 50px;
  padding-left: 16px;
  padding-right: 41px;
}

._cf-cart-remove{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 41px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

._cf-cart-remove:hover{
  background-color: rgba(0,0,0,0.05);
}

._cf-cart-content-footer{
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 60px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

._cf-cart-content-footer > div{
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 60px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  position: relative;
  z-index: 2;
  color: #fff;
}

._cf-cart-content-footer > div:last-child{
  border: none;
}

._cf-pay-green,
._cf-pay-yellow,
._cf-pay-red{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

._cf-pay-green:before,
._cf-pay-yellow:before,
._cf-pay-red:before{
  content: "";
  position: absolute;
  top: 12px;
  right: 10px;
  bottom: 12px;
  left: 10px;
  border-radius: 32px;
  z-index: -1;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

._cf-pay-green:hover:before,
._cf-pay-yellow:hover:before,
._cf-pay-red:hover:before{
  opacity: 0.9;
}

._cf-pay-green:before{
  background-color: rgb(52, 218, 176);
}

._cf-pay-yellow:before{
  background-color: rgb(248, 179, 19);
  color: #fff;
  border-color: transparent;
}

._cf-pay-red:before{
  background-color: rgb(251, 120, 120);
}

._cf-cart-content-product{
  position: absolute;
  top: 50px;
  right: 0;
  left: 0;
  bottom: 240px;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #f9f9fa;
}

._cf-cart-content-action{
  position: absolute;
  bottom: 60px;
  right: 0;
  left: 0;
  height: 180px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

._cf-cart-content-action > div{
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

._cf-cart-content-action > div:last-child{
  border: none;
}

._cf-box{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 190px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

._cf-box input{
  border-bottom: none!important;
  margin-bottom: 0px!important;
}

._cf-cart-product-item{
  position: relative;
  height: 40px;
  background-color: #fff;
  margin: 8px;
  border-radius: 5px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

._cf-cart-product-item-hero{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 160px;
  line-height: 40px;
  padding: 0 16px;
}

._cf-cart-product-item-quantity{
  position: absolute;
  top: 0;
  right: 40px;
  bottom: 0;
  width: 130px;
  border-left: 1px solid rgba(0,0,0,0.1);
  border-right: 1px solid rgba(0,0,0,0.1);
}

._cf-cart-product-item-quantity > div:nth-child(1){
  position: absolute;
  top:0;
  left: 0;
  bottom: 0;
  width: 40px;
  border-right: 1px solid rgba(0,0,0,0.1);
}

._cf-cart-product-item-quantity > div:nth-child(3){
  position: absolute;
  top:0;
  right: 0;
  bottom: 0;
  width: 40px;
  border-left: 1px solid rgba(0,0,0,0.1);
}
._cf-cart-product-item-quantity > div:nth-child(2){
  position: absolute;
  top:0;
  right: 40px;
  bottom: 0;
  left: 40px;
}

._cf-cart-product-item-quantity > div:nth-child(2) input{
  border: none!important;
  text-align: center;
  padding-bottom: 8px;
}

._cf-cart-product-item-quantity > div{
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

._cf-cart-product-item-quantity > div:hover{
  background-color: rgba(0,0,0,0.03);
}

._font-size-quantity{
  font-size: 20px;
}

._cf-cart-product-item-trash{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

._cf-cart-product-item-trash i{
  font-size: 20px;
}

._cf-cart-product-item-trash:hover{
  background-color: rgba(0,0,0,0.03);
}

.dropdown-content._cf-dropdown-right{
  right: 0!important;
}

._cf-take-away{
  position: absolute;
  top: 0;
  right: 100px;
  bottom: 0;
  font-weight: 500px;
  line-height: 50px;
  padding: 0 30px;
  z-index: 2;
  color: #fff;
}

._cf-take-away:before{
  content: "";
  position: absolute;
  top: 8px;
  right: 16px;
  bottom: 8px;
  left: 16px;
  background-color: rgb(52, 218, 176);
  z-index: -1;
  border-radius: 32px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

._cf-take-away:hover:before{
  background-color: rgb(43, 184, 148);
}

._cf-nav-information{
  position: absolute;
  top: 0;
  left: 50px;
  bottom: 0;
  right: 50px;
  line-height: 50px;
  padding: 0 16px;
  font-size: 18px;
}

@media (max-width: 600px){
  ._cf-nav-information{
    font-size: 14px;
  }
}

._cf-cart-content-window-close{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
}

._cf-nav-information-menu{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50px;
  line-height: 50px;
  padding: 0 12px;
  font-size: 18px;
}

._cf-nav-menu-home{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50px;
  border-right: 1px solid rgba(0,0,0,0.1);
  transition: 0.2s;
}

._cf-nav-menu-home:hover{
  background-color: rgba(0, 0, 0, 0.03);
}

.ui.fluid.search.selection.dropdown{
  margin-top: 6px;
}

.select-wrapper input.select-dropdown{
  margin-top: 4px;
}

._cf-print{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100px;
  padding: 0 16px;
  line-height: 40px;
  color: #fff;
  z-index: 2;
  border-right: 1px solid rgba(0,0,0,0.1);
  text-align: center;
}

._cf-print:before{
  content: "";
  position: absolute;
  top: 6px;
  right: 12px;
  bottom: 6px;
  left: 12px;
  background-color: rgb(36, 180, 144);
  border-radius: 32px;
  z-index: -1;
  transition: 0.2s;
}

._cf-print:hover:before{
  transition: 0.2s;
}

._cf-print:hover:before{
  background-color: rgb(65, 204, 169);
}