/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
/**
 * Allows you to use retina images at various pixel densities.
 * Examples:
 *
 *   .retina(/images/mypic.jpg, 2);
 *   .retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent);
 *
 * @param  {String} $path               The path to the file name minus extension.
 * @param  {Number} $cap:    2          The highest pixel density level images exist for.
 * @param  {Value}  $size:   auto auto  The intended width of the rendered image.
 * @param  {Value}  $extras: null       Any other `background` values to be added.
 */
/*
 * MIXINS
 */
html,
body {
  background: #f2f2f2;
  color: #010101;
  margin: 0;
  padding: 0;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
html.wf-loading #content-wrapper,
body.wf-loading #content-wrapper {
  display: none;
}
html.wf-active #content-wrapper,
body.wf-active #content-wrapper,
html.wf-inactive #content-wrapper,
body.wf-inactive #content-wrapper {
  display: block;
}
body {
  font-family: 'SupercellText-Medium', "Microsoft Yahei", "微软雅黑", STXihei, "华文细黑", sans-serif;
  font-size: 92%;
  line-height: 1.5em;
}
@media screen and (min-width: 667px) {
  body {
    font-size: 106%;
  }
}
@media screen and (orientation: landscape) and (max-width: 812px) {
  body {
    font-size: 92%;
  }
}
body.lang-cn,
body.lang-cnt {
  font-family: "Lantinghei SC", "Hiragino Sans GB", SimHei, Arial, sans-serif;
}
body.lang-jp {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ ゴシック", "MS Gothic", Arial, sans-serif;
}
body.lang-ar,
body.lang-fa,
body.lang-he {
  direction: rtl;
}
body.hidden {
  visibility: hidden;
}
#page-wrap {
  min-height: 100%;
  margin-bottom: -234px;
}
body.lang-cnt #page-wrap {
  margin-bottom: -324px;
}
body.lang-cn #page-wrap {
  margin-bottom: -160px;
}
@media screen and (min-width: 667px) {
  #page-wrap {
    margin-bottom: -212px;
  }
  body.lang-cnt #page-wrap {
    margin-bottom: -324px;
  }
  body.lang-cn #page-wrap {
    margin-bottom: -144px;
  }
}
@media screen and (min-width: 1281px) {
  #page-wrap {
    margin-bottom: -240px;
  }
}
#page-wrap:after {
  content: "";
  display: block;
}
footer,
#page-wrap:after {
  height: 234px;
}
body.lang-cnt footer,
body.lang-cnt #page-wrap:after {
  height: 324px;
}
body.lang-cn footer,
body.lang-cn #page-wrap:after {
  height: 160px;
}
@media screen and (min-width: 667px) {
  footer,
  #page-wrap:after {
    height: 212px;
  }
  body.lang-cnt footer,
  body.lang-cnt #page-wrap:after {
    height: -324px;
  }
  body.lang-cn footer,
  body.lang-cn #page-wrap:after {
    height: 144px;
  }
}
@media screen and (min-width: 1281px) {
  footer,
  #page-wrap:after {
    height: 240px;
  }
}
a {
  text-decoration: none;
  color: #444;
}
p {
  margin: 0;
  padding: 0 0 1em 0;
}
header {
  margin: 0 auto 0 auto;
  padding-top: 40px;
  max-width: 316px;
}
@media screen and (max-width: 374px) {
  header {
    max-width: 296px;
  }
}
@media screen and (min-width: 667px) {
  header {
    padding-top: 60px;
  }
}
@media screen and (orientation: landscape) and (max-width: 812px) {
  header {
    padding-top: 40px;
  }
}
header .logo {
  display: block;
  margin: 0;
  padding: 0;
  text-align: center;
}
header .logo a {
  display: block;
  margin: 0 auto 20px auto;
}
@media screen and (min-width: 667px) {
  header .logo a {
    margin-bottom: 30px;
  }
}
@media screen and (orientation: landscape) and (max-width: 812px) {
  header .logo a {
    margin-bottom: 20px;
  }
}
#lang {
  width: auto;
  color: #000;
  position: relative;
  display: inline-block;
  float: right;
  top: 10px;
  right: 14px;
  z-index: 50;
  height: 24px;
  text-align: right;
}
@media screen and (min-width: 667px) {
  #lang {
    top: 20px;
    right: 28px;
  }
}
#lang .active {
  display: inline-block;
  height: 20px;
  z-index: 51;
  padding-right: 20px;
  background: url(../images/arrow_lang.png) no-repeat right 7px;
  background-size: 13px auto;
  font-size: 14px;
}
@media screen and (min-width: 667px) {
  #lang .active {
    font-size: 15px;
    background-size: 14px auto;
    background-position: right 9px;
  }
}
@media screen and (orientation: landscape) and (max-width: 812px) {
  #lang .active {
    font-size: 14px;
    background-size: 13px auto;
    background-position: right 7px;
  }
}
#lang select {
  width: auto;
  height: 25px;
  z-index: 52;
  position: absolute;
  top: 0px;
  right: 0;
  opacity: 0;
  display: block;
  background: white;
  font-size: 12px;
}
@media screen and (min-width: 667px) {
  #lang select {
    font-size: 13px;
  }
}
#content-wrapper {
  margin: 0 auto 0 auto;
  max-width: 316px;
}
@media screen and (max-width: 374px) {
  #content-wrapper {
    max-width: 276px;
  }
}
section {
  text-align: center;
}
section#app-installed .notes {
  display: none;
  font-size: 88%;
  line-height: 1.35em;
  margin-top: -1em;
  color: #666;
  padding-bottom: 1.5em;
}
@media screen and (min-width: 667px) {
  section#app-installed .notes {
    font-size: 80%;
  }
}
section#app-installed .notes.active {
  display: block;
}
section#app-download {
  padding-bottom: 1.25em;
  margin-bottom: 1.5em;
  border-bottom: 2px solid #dcdcdc;
}
section#app-download .buttons {
  text-align: center;
  padding: 0;
}
section#app-download .buttons .button.other {
  padding: 14px 4px 13px 4px;
  border-color: #a6a6a6;
}
section#app-download .others {
  display: none;
  overflow: hidden;
  width: 100%;
  margin-top: 0;
  padding-bottom: 0;
  vertical-align: top;
}
section#app-download .others.visible {
  display: inline-block;
}
section#link-copy p {
  padding-bottom: 0;
}
section#link-copy p.title {
  padding: 0 0 1em 0;
}
section#deco {
  margin-top: 0;
}
section#deco.push {
  margin-top: 30px;
}
section#deco img {
  display: block;
  margin: 0 auto;
  max-width: 94%;
  height: auto;
}
.button {
  display: block;
  background: #fff;
  border-radius: 6px;
  line-height: 1em;
  padding: 18px 4px 18px 4px;
  text-align: center;
  font-size: 15px;
  color: #000;
  border: 1px solid #e5e5e5;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.button:active {
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  transform: scale(0.95);
}
body.lang-jp .button {
  font-size: 14px;
}
.button.brand {
  margin-top: 4px;
}
.button#other-stores {
  background: #ffffff url(../images/icon_more@2x.png) no-repeat 7px 5px;
  background-size: 22px 5px;
  background-position: 93% 50%;
  display: none;
}
.button#other-stores.hidden {
  display: none;
}
.button#other-stores.active {
  display: block;
  margin-top: 6px;
  margin-bottom: 10px;
}
.button#other-stores:active {
  background-color: #fbfbfb;
}
.button.copy {
  background: #ffffff url(../images/icon_copy@2x.png) no-repeat 7px 5px;
  background-size: 20px 23px;
  background-position: 93% 50%;
}
.button.copy:active {
  background-color: #fbfbfb;
}
.button.other {
  background-color: #000;
  color: #fff;
  width: 155px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: none;
  line-height: 1em;
}
.button.other:active {
  background-color: #222;
}
.button.other.active {
  display: inline-block;
}
.button.other.long {
  width: 100%;
  margin-top: 6px;
}
#copy-link-text {
  width: 100%;
  margin: 8px 0 0 0;
  border: 0;
  background: #f8f8f8 !important;
  color: #333;
  font-family: 'SupercellText-Medium', "Microsoft Yahei", "微软雅黑", STXihei, "华文细黑", sans-serif;
  font-size: 12px;
  outline: none;
  border: 1px solid #eee;
  -webkit-appearance: none;
  opacity: 0;
  height: 3px;
  padding: 0;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 24px;
}
#copy-link-text:focus {
  color: #333;
}
#copy-link-text::selection {
  background-color: #3b77a1;
  color: #fff;
}
#copy-link-text.active {
  opacity: 1;
  height: auto;
  padding: 12px 10px;
}
.store {
  display: inline-block;
  text-indent: -9999px;
  width: 155px;
  height: 47px;
  background: #000;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
  line-height: 1em;
  vertical-align: top;
  margin-bottom: 4px;
}
.store.appstore {
  background: url(../images/Download_on_the_App_Store_Badge_US-UK_135x40.svg) no-repeat;
  background-size: 100% auto;
}
body.lang-zh .store.appstore {
  background-image: url(../images/Download_on_the_App_Store_Badge_CN_135x40.svg);
}
@media screen and (max-width: 374px) {
  .store.appstore {
    width: 49% !important;
    max-width: 155px !important;
  }
}
.store.googleplay {
  width: 154px;
  background: url(../images/google-play-badge_en.png) no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 374px) {
  .store.googleplay {
    width: 49% !important;
    max-width: 154px !important;
  }
}
.store.appstore {
  background: url(../images/Download_on_the_App_Store_Badge_US-UK_135x40.svg) no-repeat;
  background-size: 100% auto !important;
  /*@media @break-max-xs {
			width: 49%;
			max-width: 155px;
		}	*/
}
.store.appstore.lang-fr {
  background-image: url(../images/Download_on_the_App_Store_Badge_FR_135x40.svg);
}
.store.appstore.lang-de {
  background-image: url(../images/Download_on_the_App_Store_Badge_DE_Source_135x40.svg);
}
.store.appstore.lang-es {
  background-image: url(../images/Download_on_the_App_Store_Badge_ES_135x40.svg);
}
.store.appstore.lang-it {
  background-image: url(../images/Download_on_the_App_Store_Badge_IT_135x40.svg);
}
.store.appstore.lang-nl {
  background-image: url(../images/Download_on_the_App_Store_Badge_NL_135x40.svg);
}
.store.appstore.lang-no {
  background-image: url(../images/Download_on_the_App_Store_Badge_NO_135x40.svg);
}
.store.appstore.lang-tr {
  background-image: url(../images/Download_on_the_App_Store_Badge_TR_135x40.svg);
}
.store.appstore.lang-jp {
  background-image: url(../images/Download_on_the_App_Store_JP_135x40.svg);
}
.store.appstore.lang-kr {
  background-image: url(../images/Download_on_the_App_Store_Badge_KR_135x40.svg);
}
.store.appstore.lang-ru {
  background-image: url(../images/Download_on_the_App_Store_Badge_RU_135x40.svg);
}
.store.appstore.lang-ar {
  background-image: url(../images/Download_on_the_App_Store_Badge_AR_135x40.svg);
}
.store.appstore.lang-pt {
  background-image: url(../images/Download_on_the_App_Store_Badge_PT_135x40.svg);
}
.store.appstore.lang-cn {
  background-image: url(../images/Download_on_the_App_Store_Badge_CN_135x40.svg);
}
.store.appstore.lang-cnt {
  background-image: url(../images/Download_on_the_App_Store_Badge_HK_TW_135x40.svg);
}
.store.appstore.lang-fa {
  background-image: url(../images/Download_on_the_App_Store_Badge_AR_135x40.svg);
}
.store.appstore.lang-id {
  background-image: url(../images/Download_on_the_App_Store_Badge_ID_135x40.svg);
}
.store.appstore.lang-ms {
  background-image: url(../images/Download_on_the_App_Store_Badge_MY_135x40.svg);
}
.store.appstore.lang-pl {
  background-image: url(../images/Download_on_the_App_Store_Badge_PL_RGB_blk_100317.svg);
  width: 138px;
}
.store.appstore.lang-he {
  background-image: url(../images/Download_on_the_App_Store_Badge_HB_RGB_blk_102517.svg);
  width: 138px;
}
.store.googleplay {
  width: 154px;
  background: url(../images/google-play-badge_en.png) no-repeat;
  background-size: 100% auto !important;
  /*@media @break-max-xs {
			width: 49%;
			max-width: 154px;
		}	*/
}
.store.googleplay.lang-fr {
  background-image: url(../images/google-play-badge_fr.png);
}
.store.googleplay.lang-de {
  background-image: url(../images/google-play-badge_de.png);
}
.store.googleplay.lang-es {
  background-image: url(../images/google-play-badge_es.png);
}
.store.googleplay.lang-it {
  background-image: url(../images/google-play-badge_it.png);
}
.store.googleplay.lang-nl {
  background-image: url(../images/google-play-badge_nl.png);
}
.store.googleplay.lang-no {
  background-image: url(../images/google-play-badge_no.png);
}
.store.googleplay.lang-tr {
  background-image: url(../images/google-play-badge_tr.png);
}
.store.googleplay.lang-jp {
  background-image: url(../images/google-play-badge_jp.png);
}
.store.googleplay.lang-kr {
  background-image: url(../images/google-play-badge_kr.png);
}
.store.googleplay.lang-ru {
  background-image: url(../images/google-play-badge_ru.png);
}
.store.googleplay.lang-ar {
  background-image: url(../images/google-play-badge_ar.png);
}
.store.googleplay.lang-pt {
  background-image: url(../images/google-play-badge_pt.png);
}
.store.googleplay.lang-cn {
  background-image: url(../images/google-play-badge_cnt.png);
}
.store.googleplay.lang-cnt {
  background-image: url(../images/google-play-badge_cnt.png);
}
.store.googleplay.lang-fa {
  background-image: url(../images/google-play-badge_fa.png);
}
.store.googleplay.lang-id {
  background-image: url(../images/google-play-badge_id.png);
}
.store.googleplay.lang-ms {
  background-image: url(../images/google-play-badge_ms.png);
}
.store.googleplay.lang-pl {
  background-image: url(../images/google-play-badge_pl.png);
}
.store.googleplay.lang-he {
  background-image: url(../images/google-play-badge_he.png);
}
.store.amazon {
  width: 154px;
  height: 46px;
  display: inline-block;
  margin-top: 0px;
  background: url(../images/available-at-amazon-badge-en.png) no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 374px) {
  .store.amazon {
    width: 49%;
    max-width: 154px;
  }
}
.store.active {
  display: inline-block;
}
.store-cn-only {
  display: inline-block;
  text-indent: -9999px;
  width: 155px;
  height: 45px;
  background: #000;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
  line-height: 1em;
  vertical-align: top;
  margin-bottom: 4px;
}
.store-cn-only.kunlun {
  width: 152px;
  background: url(../images/kunlun-english-button.png) no-repeat;
  background-size: 100% auto;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 0;
  margin-right: 2px;
}
@media screen and (max-width: 374px) {
  .store-cn-only.kunlun {
    width: 49%;
    max-width: 152px;
    margin-right: 0;
  }
}
.store-cn-only.kunlun.lang-zh {
  background: url(../images/kunlun-chinese-button.png) no-repeat;
  border: 0;
  background-size: 100% auto;
}
body.platform-kunlun .store-cn-only.kunlun.lang-zh,
body.platform-tencent .store-cn-only.kunlun.lang-zh {
  background-image: url(../images/china-android-button.png);
}
.store-cn-only.tencent {
  width: 154px;
  background: url(../images/tencent-chinese-button.png) no-repeat;
  background-size: 100% auto;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 0;
}
@media screen and (max-width: 374px) {
  .store-cn-only.tencent {
    width: 49%;
  }
}
.store-cn-only.active {
  display: inline-block;
}
body.lang-cn .store-cn-only.store-cn-only {
  display: inline-block;
}
body.platform-kunlun .store-cn-only {
  display: inline-block;
}
body.platform-tencent .store-cn-only.tencent {
  display: inline-block;
}
footer {
  width: 100%;
  background: #000;
  padding: 30px 0 10px 0;
  color: #fff;
  text-align: left !important;
  z-index: 10;
  /*
	@media screen and (orientation: landscape) {
		top: auto !important;
		bottom: auto !important;
		position: relative !important;
	}
	@media screen and (max-height: 811px) {
		bottom: auto;
		top: 500px;
	}
	@media @break-min-medium {
		top: auto;
		bottom: 0;
		padding-top: 36px;
	}
	@media screen and (orientation: landscape) and (min-width: 813px) {
		top: auto;
		bottom: 0;
		bottom: auto;
		position: relative;		
	}
	@media @break-max-xs {
		top: 470px;
	}	
	*/
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
footer .container {
  margin: 0 auto 0 auto;
  width: 90%;
}
@media screen and (max-width: 374px) {
  footer .container {
    max-width: 300px;
  }
}
@media screen and (min-width: 667px) {
  footer .container {
    max-width: 88%;
  }
}
footer .links {
  display: block;
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 10px;
  letter-spacing: 0;
  color: blue;
  text-transform: none;
  font-size: 14px;
  text-align: center;
  width: 100%;
  line-height: 2em;
  position: relative;
  border-top: 1px solid #262626;
}
body.lang-ar footer .links,
body.lang-fa footer .links,
body.lang-he footer .links {
  text-align: right;
}
body.lang-cn footer .links {
  border: 0;
  padding-top: 0;
  margin-top: 0;
}
@media screen and (min-width: 667px) {
  footer .links {
    display: inline-block;
    width: 100%;
    text-align: left;
    padding-top: 0;
    padding-bottom: 26px;
  }
}
@media screen and (min-width: 1024px) {
  footer .links {
    width: 100%;
    margin-top: 8px;
  }
}
@media screen and (min-width: 667px) {
  body.lang-ar footer .links,
  body.lang-fa footer .links,
  body.lang-he footer .links {
    text-align: right;
  }
}
body.lang-he footer .links {
  font-size: 92%;
}
footer .links a {
  display: block;
  float: left;
  clear: left;
  color: #fff;
  margin: 0 6px;
  width: 220px;
  text-align: left;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
body.lang-ar footer .links a,
body.lang-fa footer .links a,
body.lang-he footer .links a {
  float: none;
  display: inline-block;
  text-align: right;
}
@media screen and (min-width: 667px) {
  footer .links a {
    float: left;
    clear: none;
    width: auto;
    margin-top: 28px;
    margin-left: 12px;
  }
  footer .links a:first-child {
    margin-left: 0;
  }
}
footer .links a.hover {
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  -webkit-opacity: 0.5;
  opacity: 0.5;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  filter: alpha(opacity=50);
}
footer .links a.hover:hover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  opacity: 1 !important;
}
footer .supercell {
  width: 58px;
  text-align: left !important;
  position: absolute;
  right: 0;
  bottom: 12px;
}
body.lang-ar footer .supercell,
body.lang-fa footer .supercell,
body.lang-he footer .supercell {
  right: auto;
  left: 0;
}
body.lang-cn footer .supercell {
  bottom: auto;
  top: 62px;
}
@media screen and (min-width: 667px) {
  footer .supercell {
    width: 58px;
    display: inline-block;
    float: right;
    margin: 0;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
  }
  body.lang-ar footer .supercell,
  body.lang-fa footer .supercell,
  body.lang-he footer .supercell {
    float: left;
  }
  body.lang-cn footer .supercell {
    bottom: auto;
    top: auto;
  }
}
footer .supercell a {
  display: block;
  margin-top: 0;
  width: 52px;
  height: 42px;
  text-indent: -9999px;
  /*
   * Set a base background for 1x environments.
   */
  background: url('../images/logo_supercell.png') center center no-repeat;
  background-size: 52px 42px;
  /*
   * Create an @2x-ish media query.
   */
  /*
   * Create media queries for all environments that the user has
   * provided images for.
   */
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-resolution: 1.5dppx) {
  footer .supercell a {
    background: url(../images/logo_supercell@2x.png) center center no-repeat;
    background-size: 52px 42px;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2 * 96dpi) {
  footer .supercell a {
    background: url(../images/logo_supercell@2x.png) center center no-repeat;
    background-size: 52px 42px;
  }
}
body.lang-ar footer .supercell a,
body.lang-fa footer .supercell a,
body.lang-he footer .supercell a {
  text-indent: 9999px;
}
@media screen and (min-width: 667px) {
  footer .supercell a {
    margin-top: 23px;
  }
}
footer .age-rating {
  clear: both;
  margin-top: 9px;
  text-align: center;
  border-top: 1px solid #262626;
  text-align: left;
  padding-top: 24px;
  padding-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  footer .age-rating {
    margin-top: 0;
  }
}
footer .age-rating img {
  width: 100%;
  max-width: 400px;
}
footer .social {
  clear: both;
  width: 100%;
  text-align: left;
  padding-bottom: 28px;
}
body.lang-ar footer .social,
body.lang-fa footer .social,
body.lang-he footer .social {
  text-align: right;
}
footer .social.inactive {
  visibility: hidden;
  display: none;
}
footer .social a {
  margin: 0 6px;
  display: inline-block;
  color: #fff;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  -webkit-opacity: 0.5;
  opacity: 0.5;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  filter: alpha(opacity=50);
}
@media screen and (max-width: 374px) {
  footer .social a {
    margin: 0 4px;
  }
}
@media screen and (min-width: 667px) {
  footer .social a {
    margin: 0 10px;
  }
}
footer .social a.hover {
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  -webkit-opacity: 0.3;
  opacity: 0.3;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=30);
  filter: alpha(opacity=30);
}
footer .social a.hover:hover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  opacity: 1 !important;
}
footer .social svg {
  width: 22px;
  height: 23px;
}
footer .social svg * {
  fill: #fff;
}
#copy_tooltip {
  background: transparent !important;
  font-size: 12px;
  border: 0px solid transparent !important;
  border-radius: 6px !important;
  margin: 0 auto 0 auto;
  width: 100%;
  max-width: 316px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: normal !important;
  color: #333 !important;
  text-align: center;
}
@media screen and (max-width: 374px) {
  #copy_tooltip {
    max-width: 296px;
  }
}
#copy_tooltip.hidden {
  opacity: 0 !important;
}
