html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* ================================ */
.checkout-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ebeaea;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.3;
}

.checkout-in {
  max-width: 800px;
  width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

.checkout-logo {
height: 70px;
  position: relative;
  text-align: center;
}

.checkout-title {
  margin: 15px 0;
  font-size: 28px;
  font-weight: bold;
  color: #cf1a28;
}

.checkout-form-container {
  position: relative;
  background: #fff;
  padding: 25px;
  border-radius: 5px;
  border: 1px solid #cfcdcd;
}

.checkout-form-top-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.checkout-form-top-block {
  position: relative;
}

.checkout-form-course-name {
  position: relative;
  color: #cf1a28;
  font-size: 18px;
}

.checkout-form-remove-item {
  position: relative;
  color: #f77503;
  font-size: 14px;
  cursor: pointer;
}

.checkout-form-course-text {
  font-size: 14px;
  margin: 15px 0;
}

.checkout-form-inputs-wrapper {
  position: relative;
  background: #f2f2f2;
  padding: 10px;
}

.checkout-form-input-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  margin-bottom: 10px;
}

.checkout-form-input-row:last-child {
  margin-bottom: 0;
}

.checkout-form-input-block {
  position: relative;
}

.checkout-form-input-label {
  display: block;
  font-size: 14px;
  margin-bottom: 0px;
}

.checkout-form-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 5px 15px;
  border: 1px solid #ccc;
  outline: none;
  border-radius: 4px;
}

.checkout-form-checkbox-block {
  position: relative;
  margin-top: 40px;
}

.checkbox-label {
  display: block;
  font-size: 14px;
}

.checkout-form-attendee {
  display: block;
  text-decoration: none;
  color: #f77503;
  margin-top: 40px;
}

.checkout-form-btns {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.checkout-form-btns-block {
  position: relative;
}

.checkout-form-btn-add-course,
.checkout-form-btn-cancel {
  display: inline-block;
  text-decoration: none;
  color: #f77503;
  border: 1px solid #a9a9a9;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 4px;
}

.checkout-form-btns-block--flex {
  display: flex;
}

.checkout-form-btn-checkout {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 1px solid #cf1a28;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 4px;
  margin-left: 25px;
  background: #cf1a28;
  transition: 250ms;
}

.checkout-form-btn-checkout:hover {
  opacity: 0.8;
}

.dublin {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 700px) {
  .checkout-in {
    width: auto;
  }

  .checkout-form-input-row {
    grid-template-columns: repeat(1, 1fr);
  }

  .checkout-wrapper {
    height: 100%;
    width: 100%;
    padding: 20px 0;
  }

  .checkout-form-btns {
    flex-direction: column;
  }

  .checkout-form-btns-block--flex {
    margin-top: 20px;
  }

  .checkout-form-top-row {
    flex-direction: column;
  }

  .checkout-form-remove-item {
    margin-bottom: 15px;
  }
}
