@font-face {
/*
    font-family: 'InsigniaLT';
    src: url('../fonts/v_InsigniaLT_v1_1.eot');
    src: url('../fonts/v_InsigniaLT_v1_1.eot') format('embedded-opentype'),
         url('../fonts/v_InsigniaLT_v1_1.woff2') format('woff2'),
         url('../fonts/v_InsigniaLT_v1_1.woff') format('woff'),
         url('../fonts/v_InsigniaLT_v1_1.ttf') format('truetype'),
         url('../fonts/v_InsigniaLT_v1_1.svg#v_InsigniaLT_v1_1') format('svg');
*/
}

* {
  margin: 0;
  padding: 0;
}

body {
  background: #000;
  min-height: 100vh;
}

.hitman-wrapper {
  width: 1020px;
  margin: 0 auto;
  font: 400 15px / 21px Ubuntu;
  min-height: 100vh;
  background: #fff;
}

.hitman-header {
  height: 64px;
  width: 100%;
}

.hitman-header nav {
  height: 100%;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}

.hitman-header nav a {
  color: #000000;
  font: 400 20px 'Ubuntu Condensed', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  padding: 7px 10px;
  display: inline-block;
}
.hitman-header nav a.selected, .hitman-header nav a:hover {
  color: #fff;
  background: #b30304;
}

.hitman-banner {
  position: relative;
  width: 100%;
  height: 260px;
  background: url(../img/hitman-banner.jpg) -1px 0 no-repeat;
}
.hitman-logo {
  position: absolute;
  display: block;
  height: 44px;
  width: 262px;
  top: 98px;
  left: 50%;
  margin-left: -131px;
  background: url(../img/hitman-logo.png);
}
.hitman-logo-text {
  position: absolute;
  font: 400 18px / 21px PFDinTextCondPro;
  width: 257px;
  top: 152px;
  left: 50%;
  margin-left: -129px;
  color:#ffffff;
  text-align: center;
  text-transform: uppercase;
}

/***********/
/* content */
/***********/
.hitman-content-wrap {
  width: 740px;
  margin: 40px auto;
  background: url(../img/hitman-content-bg.png) 50% 136px no-repeat;

}
.hitman-content-wrap p {
  padding-bottom: 8px;
}

.hitman-start-screen_text, .hitman-content_text {
  padding: 20px 0;
  text-align: justify;
  color: #000000;
}
.hitman-start-screen_text {
  border-bottom: #000000 2px solid;
  border-top: #000000 2px solid;
}
.hitman-content-title {
  background: #000000;
  color: #ffffff;
  font: 700 15px Ubuntu;
  padding: 3px 10px;
}
.hitman-content-title + p {
  padding-top: 8px;
}

.hitman-btn_next {
  opacity: .7;
  margin-top: 35px;
  height: 48px;
  text-align: center;
}
.hitman-btn_next a {
  display: inline-block;
  background: #212121;
  text-decoration: none;
  color: #fff;
  font: 700 25px Ubuntu;
  padding: 0 74px 0 22px;
  line-height: 48px;
  height: 48px;
  position: relative;
}
.hitman-btn_next a:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 48px;
  width: 52px;
  background: url('../img/hitman-button-arrow.jpg') 0 0 no-repeat;
}
.hitman-btn_next:hover {
  opacity: 1;
}

/*************
  inventory
*************/
.hitman-inventory_wrap {
  width: 100%;
  height: 168px;
  background: url('../img/hitman-empty-slots.png') 0 0 no-repeat;
  background: url('../img/hitman-slots.jpg') 0 0 no-repeat;
  margin-bottom: 14px;
  text-align: left
}

.hitman-inventory_item {
  width: 144px;
  height: 168px;
  display: inline-block;
}
.hitman-inventory_item + .hitman-inventory_item {
  margin-left: 5px;
}

.hitman-inventory_item.hitman-item_case {
  background: url(../img/items/case.jpg) 0 0 no-repeat;
}
.hitman-inventory_item.hitman-item_bomb {
  background: url(../img/items/bomb.jpg) 0 0 no-repeat;
}
.hitman-inventory_item.hitman-item_docs {
  background: url(../img/items/docs.jpg) 0 0 no-repeat;
}
.hitman-inventory_item.hitman-item_mag {
  background: url(../img/items/mag.jpg) 0 0 no-repeat;
}
.hitman-inventory_item.hitman-item_pen {
  background: url(../img/items/pen.jpg) 0 0 no-repeat;
}
.hitman-inventory_item.hitman-item_pen_s {
  background: url(../img/items/pen_s.jpg) 0 0 no-repeat;
}
.hitman-inventory_item.hitman-item_silverballer {
  background: url(../img/items/silverballers.jpg) 0 0 no-repeat;
}
.hitman-inventory_item.hitman-item_wire {
  background: url(../img/items/wire.jpg) 0 0 no-repeat;
}

.hitman-items_selector__wrap {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.hitman-item_selector__warning {
  margin-top: 22px;
  text-align: center;
}
.hitman-btn_begin {
  color: #fff;
  display: block;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font: 400 31px / 81px 'Ubuntu Condensed';
  height: 81px;
  width: 315px;
  margin: 22px auto 0;
  background: #b30304;
}
.hitman-item_selector {
  box-sizing: border-box;
  width: 49%;
  height: 85px;
  background: #4b4b4b;
  margin-bottom: 15px;
  padding-left: 84px;
  position: relative;
  cursor: pointer;
}
.hitman-item_selector:after {
  content: '';
  position: absolute;
  height: 84px;
  width: 84px;
  left: 0;
  top: 0;
}
.hitman-item_selector.selected {
  background: #b30304;
}
.hitman-item_selector.disabled {
  opacity: .5;
  cursor: default;
}
.hitman-item_selector:hover:after {
  background: url('../img/item-hover.png') 50% 50% no-repeat;
}
.hitman-item_selector.selected:after {
  background: url('../img/item-selected.png') 50% 50% no-repeat;
}
.hitman-item_selector.disabled:after {
  background: url('../img/item-disabled.png') 50% 50% no-repeat;
}
.hitman-item_selector__title {
  color: #ffffff;
  font: 400 23px / 33px 'Ubuntu Condensed';
}
.hitman-item_selector__text {
  box-sizing: border-box;
  height: 52px;
  text-align: left;
  color: #000000;
  padding: 5px 10px;
  background: #c5c5c5;
}

/**
** game **/
.hitman-game_screen {

}
.hitman-quest_wrap {
  display: flex;
  display: -webkit-flex;
  /*justify-content: space-between;*/
  justify-content: center;
  -webkit-justify-content: center;
}
.hitman-quiest_answer {
  cursor: pointer;
  position: relative;
  width: 245px;
  height: 363px;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.hitman-quiest_answer + .hitman-quiest_answer {
  margin-left: 5px;
}

.hitman-quiest_answer:hover, .hitman-quiest_answer.selected {
  background-position: -245px 0;
}
.hitman-quiest_answer.disabled {
  opacity: .5;
  cursor: default;
}
.hitman-quiest_answer.disabled:hover {
  background-position: 0 0;
}
.hitman-quiest_answer__name {
  position: absolute;
  left: 5px;
  bottom: 5px;
  color: #ffffff;
  font: 500 17px Ubuntu;
}

.hitman-looser {
    width: 557px;
    height: 52px;
    margin: 40px auto;
    border: 2px solid #b30304;
    color: #d50000;
    text-align: center;
    color: #d50000;
    font: 500 27px Ubuntu;
    line-height: 48px;
}

.hitman-looser__text {
    background: #c5c5c5;
    padding: 23px 25px;
    box-sizing: border-box;
}

.hitman-share {
  margin: 40px auto;
}
.hitman-share p {
  text-align: center;
}
.hitman-share_links {
  background: url(../img/share.png);
  height: 37px;
  width: 133px;
  margin: 0 auto;
}
.hitman-share-link {
  display: inline-block;
  height: 37px;
  width: 38px;
}
.hitman-share-link + .hitman-share-link {
  margin-left: 6px;
}


.hitman-hide {
  display: none;
}

.hitman-preload {
  height: 152px;
  width: 200px;
  margin: 80px auto;
  background: url('../img/hitman-preload.jpg') 0 0 no-repeat;
  -webkit-animation: blink-animation 2s ease-in-out infinite;
  animation: blink-animation 2s ease-in-out infinite;
}

@-webkit-keyframes blink-animation {
    0% { opacity: 1; }
    50% {opacity: .3; }
    100% { opacity: 1; }
}
@keyframes blink-animation {
    0% { opacity: 1; }
    50% {opacity: .3; }
    100% { opacity: 1; }
}
