@import url(https://fonts.googleapis.com/css?family=Acme);
@import url(https://fonts.googleapis.com/css?family=Ubuntu:400,300,500,700);

::selection {
  color: #528fd9;
  background: #333;
}

::-moz-selection {
  color: #528fd9;
  background: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  padding-bottom: 25px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}


.header {
  background: #39c390;
  height: 90px;
  justify-content: center;
  align-items: center;
  display: flex;
  margin-bottom: 25px;
}

.header img {
  height: 75px;
}

.payment .h1 {
  margin: auto;
  display: table;
  font-size: 24px;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.payment .list .h2 {
  font-size: 16px;
  font-weight: 700;
}

.payment .list ul {
  list-style: none;
  padding: 0;
  font-family: lobster;
  font-size: 14px;
}

.payment .cards .content {
  box-shadow: 0 0 1px 1px #bcbec0;
  padding: 20px 30px;
  margin: 2px;
  border-radius: 4px;
}

.payment .cards .content img {
  height: 60px;
}



/*payu-form*/
/*payu-form*/
/*payu-form*/
/*payu-form*/
.form-popup {
  width: 100%;
  height: 100vh;
  background-color: #000000b9;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
  display: none;
}
.form-popup .close {
  width: 30px;
  height: 30px;
  background-color: red;
  color: #fff;
  border-radius: 50%;
  position: absolute;
  right: -10px;
  top: -10px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-popup .close:hover {
  background-color: rgb(192, 0, 0);
}
#payu-form {
  width: 700px;
  border: 1px solid #ccc;
  padding: 25px;
  margin:25px auto;
  text-align: center;
  background: #fff;
  position: relative;
}

#payu-form .btn {
  background: #d95b23;
  color: #fff;
  font-size: 20px;
  border-radius: 3px;
  padding: 10px 20px;
  cursor: pointer;
  margin: 10px auto;
  border: 1px solid #bf4f1f;
}

#payu-form .btn:hover {
  background: #bf4f1f;
}

.payu-field {
  width: 100%;
  text-align: left;
  margin-bottom: 25px;
  border: 1px solid #ccc;
}

.payu-field-details {
  width: 100%;
  padding: 25px;
}

.payu-field h2 {
  background: #85b210;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  padding: 10px;
  font-size: 14px;
}

.payu-field-details h3 {
  font-size: 18px;
  color: #000;
  margin: 0 0 5px 0;
}

.payu-field-details p {
  color: #444;
  font-size: 14px;
}

.payu-field-form {
  width: 100%;
  margin: 10px 0;
}



.payu-field-form label {
  padding: 5px 0;
  width: 35%;
  font-size: 13px;
  color: #000;
  font-weight: normal;
}

.payu-field-form label span {
  color: #f00;
}

.payu-field-form input {
  width: 50%;
  padding: 5px;
  border: 1px solid #ccc;
}


/*response*/
/*response*/
/*response*/
/*response*/
.response .btn {
  width: 200px;
  margin: auto;
}

@media (max-width: 767px) {
  .header img {
      height: 60px;
  }
  .payment .list ul {
    font-size: 18px;
  }
  .payment .list ul li{
    margin-bottom: 7px;
  }
  .cards .col-4{
    width: 100%;
  }
  #payu-form {
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px 20px;
    margin: 15px auto;
    text-align: center;
    background: #fff;
    position: relative;
  }
  .form-popup .close {
  right: 0;
  }
}