﻿/* common border radius */
/* disable text selection */
section.gt-block.back-button a {
  padding: 1.5rem 2rem;
  display: block;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  border-radius: 3rem;
  background: #e5e5e5;
  color: #898989;
  font-size: 2.2rem;
  line-height: 3rem;
  font-weight: bold;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
section.gt-block.back-button a span {
  padding: 0 3rem;
  position: relative;
  display: inline-block;
  vertical-align: top;
}
section.gt-block.back-button a span:before,
section.gt-block.back-button a span:after {
  content: " ";
  width: 1.3rem;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
section.gt-block.back-button a span:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.084' height='23.163' viewBox='0 0 13.084 23.163'%3E%3Cpath d='M20.163,11.584a1.5,1.5,0,0,1-1.061-.439L10.081,2.122,1.061,11.145a1.5,1.5,0,0,1-2.121,0,1.5,1.5,0,0,1,0-2.121L9.021-1.061A1.5,1.5,0,0,1,10.081-1.5a1.5,1.5,0,0,1,1.061.439L21.224,9.024a1.5,1.5,0,0,1-1.061,2.561Z' transform='translate(1.5 21.663) rotate(-90)' fill='%23898989'/%3E%3C/svg%3E");
}
section.gt-block.back-button a span:after {
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.084' height='23.163' viewBox='0 0 13.084 23.163'%3E%3Cpath d='M20.163,11.584a1.5,1.5,0,0,1-1.061-.439L10.081,2.122,1.061,11.145a1.5,1.5,0,0,1-2.121,0,1.5,1.5,0,0,1,0-2.121L9.021-1.061A1.5,1.5,0,0,1,10.081-1.5a1.5,1.5,0,0,1,1.061.439L21.224,9.024a1.5,1.5,0,0,1-1.061,2.561Z' transform='translate(1.5 21.663) rotate(-90)' fill='%23fff'/%3E%3C/svg%3E");
}
section.gt-block.back-button a:hover {
  background: #D9620F;
  color: white;
}
section.gt-block.back-button a:hover span:after {
  opacity: 1;
}
@media screen and (max-width: 500px) {
  section.gt-block.back-button a {
    -webkit-border-radius: 2rem;
    -moz-border-radius: 2rem;
    border-radius: 2rem;
  }
}