* {
	margin: 0;
	padding: 0;
}

body {
    background: #1488CC;
    background: -webkit-linear-gradient(to right, #2B32B2, #1488CC);
    background: linear-gradient(to right, #2B32B2, #1488CC);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.click {
	display: block;
	border: none;
	background: #16BFFD;
	background: -webkit-linear-gradient(to right, #CB3066, #16BFFD);
	background: linear-gradient(to right, #CB3066, #16BFFD);
	border-radius: 4px;
	padding: 15px;
	color: white;
	outline: none;
	width: 100%;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: bold;
	cursor: pointer;
}

.click:hover {
	opacity: .9;
}

.payment {
	display: block;
	border: none;
	margin-top: 15px;
	background-color: #FF0037;
	border-radius: 4px;
	padding: 15px;
	color: white;
	text-align: center;
	text-decoration: none;
	width: 90%;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: bold;
	cursor: pointer;
}

.payment:hover {
	background-color: white;
	color: #FF0037;
}

.exit1 {
	text-decoration: none;
	color: white;
}

.exit {
 	background-color: #0064D5;
  border: none;
  color: white;
  margin-top: 10px;
  margin-left: 85px;
  padding: 5px 15px;
  font-size: 19px;
  cursor: pointer;
}

.exit:hover {
    background-color: red;
}

.panel {
	padding: 10px 50px 90px 50px;
  background: #FF512F;
	background: -webkit-linear-gradient(to right, #F09819, #FF512F);
	background: linear-gradient(to right, #F09819, #FF512F);
  border-radius: 4%;
}

.balance {
	margin-top: 15px;
	color: #0E0D0D;
	font-style: italic;
  font-size: 28px;
	padding-bottom: 20px;
	text-align: center;
}

.paymentm {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: rgba(0, 0, 0, 0.5);
      padding-top: 265px;
      z-index: 1050;
      opacity: 0;
      -webkit-transition: opacity 400ms ease-in;
      -moz-transition: opacity 400ms ease-in;
      transition: opacity 400ms ease-in;
      pointer-events: none;
    }

    .paymentm:target {
      opacity: 1;
      pointer-events: auto;
      overflow-y: auto;
    }

    .paymentm-dialog {
      position: relative;
      width: auto;
      margin: 10px;
    }

    @media (min-width: 576px) {
      .paymentm-dialog {
        max-width: 500px;
        margin: 30px auto;
      }
    }

    .paymentm-content {
      position: relative;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      background-color: #fff;
      -webkit-background-clip: padding-box;
      background-clip: padding-box;
      border: 1px solid rgba(0, 0, 0, .2);
      border-radius: .3rem;
      outline: 0;
    }

    @media (min-width: 768px) {
      .paymentm-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
      }
    }

    .paymentm-header {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
      padding: 15px;
      border-bottom: 1px solid #eceeef;
      color: green;
    }

    .paymentm-title {
      margin-top: 0;
      margin-bottom: 0;
      line-height: 1.5;
      font-size: 1.25rem;
      font-weight: 500;
    }

    .close {
      float: right;
      font-family: sans-serif;
      font-size: 24px;
      font-weight: 700;
      line-height: 1;
      color: #000;
      text-shadow: 0 1px 0 #fff;
      opacity: .5;
      text-decoration: none;
    }

    .close:focus,
    .close:hover {
      color: #000;
      text-decoration: none;
      cursor: pointer;
      opacity: .75;
    }

    .paymentm-body {
      position: relative;
      -webkit-box-flex: 1;
      -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto;
      padding: 15px;
      overflow: auto;
    }

.hr1 {
  border: none;
  background-color: #C5C7CB;
  color: red;
  height: 1px;
  margin-top: 2px;
}

.hr2 {
	margin-top: 15px;
	margin-bottom: 25px;
	color: #C9CBCE;
}

.wallet {
	text-align: center;
	width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border-radius: 10px;
    border: 3px solid #ccc;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
}

.wallet:focus {
    border: 3px solid #1080E3;
}

.vivod {
	background-color: #37c936;
    border: none;
    border-radius: 4px;
    color: white;
    padding: 12px 16px;
    font-size: 13px;
    cursor: pointer;
    margin-left: 178px;
    margin-top: 30px;
}

.vivod:hover {
    opacity: .9;
}