.error-popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  margin: auto;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
  justify-content: center;
  align-items: center;
}
.error-popup .error-container {
  background-color: #ff0b00;
  max-width: 800px;
  padding: 40px 60px;
  text-align: center;
  position: relative;
}
@media (max-width: 1024px) {
  .error-popup .error-container {
    max-width: calc(100% - 60px);
  }
}
@media (max-width: 767px) {
  .error-popup .error-container {
    padding: 20px 30px;
    max-width: calc(100% - 30px);
  }
}
.error-popup .error-container .error-message {
  color: white;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  white-space: pre-line;
}
.error-popup .error-container .ok-btn {
  width: 200px;
  padding: 10px 0;
  border: none;
  color: #ff0b00;
  background-color: #fff;
  letter-spacing: 0.05em;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
  margin-top: 30px;
}
.error-popup .error-container .ok-btn:hover {
  background-color: rgba(248, 233, 232, 0.8784313725);
}

.popup-info-wrapper.show {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.popup-info-wrapper.show .modal-dialog {
  width: 100%;
  max-width: 700px;
  color: #000;
}
.popup-info-wrapper.show .modal-dialog .modal-content .modal-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  text-align: left;
}
@media (max-width: 480px) {
  .popup-info-wrapper.show .modal-dialog .modal-content .modal-body {
    grid-template-columns: 1fr;
  }
}
.popup-info-wrapper.show .modal-dialog .modal-content .modal-body .description > * {
  color: #000;
  font-size: 14px;
  font-weight: normal;
}
.popup-info-wrapper.show .modal-dialog .modal-content .modal-body .logo {
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.6);
  min-height: 150px;
  display: grid;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.popup-info-wrapper.show .modal-dialog .modal-content .modal-footer {
  justify-content: center;
}
.popup-info-wrapper.show .modal-dialog .modal-content .modal-footer button.close {
  background-color: #ff0b00;
  color: #FFF;
  text-shadow: none;
  opacity: 1;
  font-size: 16px;
  padding: 10px 20px;
}

.conference-agenda .agenda-navigate {
  background-color: #ff0b00;
}
@media screen and (max-width: 991px) {
  .conference-agenda .agenda-navigate {
    padding: 0 15px;
  }
}
.conference-agenda .agenda-navigate a {
  font-size: 18px;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .conference-agenda .agenda-navigate a {
    padding: 8px 20px !important;
  }
}
.conference-agenda .agenda-navigate a:hover {
  background-color: #fff;
  color: red;
}
.conference-agenda .agenda-navigate a.agenda-page-active {
  background-color: #fff;
  color: red;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.conference-container {
  max-width: 961px;
  margin: 0 auto;
}

.statistical-conference {
  background-color: #ff0b00;
}
@media screen and (max-width: 575px) {
  .statistical-conference p {
    font-size: 32px;
  }
}
.statistical-conference .box-statistical {
  width: 90%;
}
@media screen and (max-width: 575px) {
  .statistical-conference .box-statistical {
    padding: 0 !important;
  }
}
.statistical-conference .box-statistical .statistical-item {
  flex-shrink: 1;
  flex-grow: 1;
  flex-basis: 0;
}
@media screen and (max-width: 1200px) {
  .statistical-conference .box-statistical .statistical-item {
    margin: 25px 0;
    width: 40%;
  }
}
.statistical-conference .box-statistical .statistical-item h3 {
  font-size: 68px;
  font-weight: 700;
  animation: fadeIn 3s;
}
@media screen and (max-width: 575px) {
  .statistical-conference .box-statistical .statistical-item h3 {
    font-size: 36px;
  }
}
.statistical-conference .box-statistical .statistical-item p {
  font-size: 28px;
  margin: 0;
}
@media screen and (max-width: 575px) {
  .statistical-conference .box-statistical .statistical-item p {
    font-size: 22px;
  }
}

@media screen and (max-width: 575px) {
  .conference-item-flex .main-box {
    padding-bottom: 0 !important;
  }
}
.conference-item-flex .main-box p {
  font-size: 18px;
  font-weight: 500;
  color: #ff0b00;
  margin-bottom: 0;
}
.conference-item-flex .btn-register {
  width: 290px;
  height: 60px;
  background-color: #ff0b00;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 40px;
  transition: all 0.4s;
}
@media screen and (max-width: 575px) {
  .conference-item-flex .btn-register {
    display: flex;
    width: 220px;
    height: 50px;
    font-size: 16px !important;
  }
}
.conference-item-flex .btn-register:hover {
  opacity: 0.6;
  transition: all 0.4s;
}

.conference-content-title .main-text {
  display: flex;
}
.conference-content-title .main-text h2 {
  font-size: 69px;
  font-weight: 700;
  word-spacing: 0.08em;
  margin-top: -14px;
}
@media screen and (max-width: 575px) {
  .conference-content-title .main-text h2 {
    font-size: 32px;
  }
}
.conference-content-title .content {
  font-size: 19px;
}
.conference-content-title .content li {
  font-size: 18px;
  margin: 15px 0 15px 25px;
}
.conference-content-title .content .list-company {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 575px) {
  .conference-content-title .content .list-company {
    grid-template-columns: 1fr;
  }
}
.conference-content-title .content .list-company li {
  margin: 0 !important;
}
.conference-content-title .content span {
  display: block;
  margin: 20px 0;
  font-size: 19px;
}
@media screen and (max-width: 575px) {
  .conference-content-title .content {
    font-size: 16px;
    margin: 10px 0;
  }
}
.conference-content-title .content-section p {
  margin-bottom: 25px;
  font-size: 20px;
}
@media screen and (max-width: 575px) {
  .conference-content-title .content-section p {
    font-size: 16px;
  }
}
.conference-content-title .content-section ul li {
  margin-bottom: 15px;
  margin-left: 20px;
  list-style: disc;
  font-size: 20px;
}
@media screen and (max-width: 575px) {
  .conference-content-title .content-section ul li {
    font-size: 16px;
  }
}
.conference-content-title .content-section .grid-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 50px;
}

h3 {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 575px) {
  h3 {
    text-align: center;
    font-size: 24px;
  }
}

.sponsor-box {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 575px) {
  .sponsor-box {
    justify-content: center;
  }
}
.sponsor-box .sponsor-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  border: 1px solid #DDD;
}
.sponsor-box .sponsor-image:hover {
  box-shadow: 0 0 7px #3c3c3a;
}
.sponsor-box .sponsor-image img {
  width: 160px;
}

.line {
  display: block;
  margin-right: 20px;
  animation: fadeIn 3s;
}

p {
  font-size: 19px;
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  p {
    font-size: 16px;
    padding-bottom: 5px !important;
  }
}

.btn-register {
  width: 290px;
  height: 60px;
  background-color: #ff0b00;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 40px;
  transition: all 0.4s;
}
@media screen and (max-width: 575px) {
  .btn-register {
    display: flex;
    width: 220px;
    height: 50px;
    font-size: 16px !important;
  }
}
.btn-register:hover {
  background-color: #ff8580;
  color: #fff;
  transition: all 0.2s;
}
.btn-register.has-background:hover {
  opacity: 1;
  background-color: #fff;
  color: #ff0b00;
}

.box-banner-button {
  display: grid;
  grid-template-columns: 35% 35% 30%;
  padding: 0 25px;
}
@media screen and (max-width: 991px) {
  .box-banner-button {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .box-banner-button {
    grid-template-columns: 1fr;
  }
}
.box-banner-button a {
  width: 271px;
  height: 47px;
}
@media screen and (max-width: 575px) {
  .box-banner-button a {
    width: 100%;
    height: 60%;
  }
}

.conference-agenda-table .headline {
  background-color: #ff0b00;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 1;
}
.conference-agenda-table .headline p {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .conference-agenda-table {
    width: 95%;
    margin: auto;
  }
}
.conference-agenda-table .content {
  display: grid;
  grid-template-columns: 175px 1fr;
  grid-auto-flow: column;
}
@media screen and (max-width: 575px) {
  .conference-agenda-table .content {
    grid-template-columns: 1fr;
    grid-auto-flow: unset;
  }
}
.conference-agenda-table .content .content-item {
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.6);
  background-color: #FFF;
}
.conference-agenda-table .content .content-item.content-item-flex {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.conference-agenda-table .content .content-item h5 span.agenda-time {
  display: block;
  text-align: center;
  line-height: 30px;
}
.conference-agenda-table .content .split-session .speaker-block .speaker-info {
  overflow: hidden;
}
.conference-agenda-table .content .split-session .speaker-block .speaker-info p {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.conference-agenda-table .speaker-block {
  display: grid;
  grid-template-columns: 120px 1fr 75px;
  gap: 15px;
  margin: 15px 0;
  align-items: center;
}
.conference-agenda-table .speaker-block .profile-photo-section {
  position: relative;
}
.conference-agenda-table .speaker-block .profile-photo-section img.profile-photo {
  width: 100px;
}
.conference-agenda-table .speaker-block .profile-photo-section img.company-logo {
  width: 35px;
  position: absolute;
  bottom: -10px;
  right: 5px;
}
.conference-agenda-table .speaker-block .speaker-info p {
  margin-bottom: 0;
  font-size: 17px;
}

.banner--conference {
  z-index: -10000;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.banner--conference .video-background {
  height: 300px;
  padding-bottom: 50px;
  padding-top: 50px;
}
.banner--conference .video-background #myVideo {
  min-width: 100%;
  position: absolute;
  top: 0;
  z-index: -999;
}
.banner--conference p {
  font-size: 29px;
}
@media screen and (max-width: 575px) {
  .banner--conference p {
    font-size: 16px;
  }
}

.conf-registration .btn-register {
  width: 290px;
  height: 60px;
  background-color: #ff0b00;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 40px;
  transition: all 0.4s;
}
@media screen and (max-width: 575px) {
  .conf-registration .btn-register {
    display: flex;
    width: 220px;
    height: 50px;
    font-size: 16px !important;
  }
}

.section-with-image {
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.section-with-image > div.image {
  flex: 1 1 50%;
}

.section-with-image > div:not(.image) {
  flex: 1 1 50%;
}

.section-with-image > div img,
.section-with-image > div video {
  display: inline-flex;
  width: 100%;
}

.section-with-image p {
  margin-bottom: 15px;
}

.content-section {
  text-align: justify;
}

.content-section ul {
  margin-top: 15px;
}

.content-section li {
  list-style: disc;
  margin-left: 15px;
  font-size: 19px;
}

.content-section ol li {
  list-style: decimal;
}

.content-section blockquote {
  font-style: italic;
  font-family: Georgia, Times, "Times New Roman", serif;
  border-style: solid;
  border-color: #ccc;
  border-width: 0;
  padding: 2px 8px 2px 20px;
  border-left-width: 5px;
  margin-left: 40px;
}

@media (max-width: 1200px) {
  .section-with-image {
    flex-direction: column !important;
  }
  .section-with-image > div.image {
    flex: 1 1 100%;
    padding: 0 1rem;
  }
  .section-with-image > div:not(.image) {
    flex: 1 1 100%;
  }
  .section-with-image > div img,
  .section-with-image > div video {
    max-width: 550px;
  }
}
.button-group {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.list-2-column {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-fill: balance;
       column-fill: balance;
}

.content-section a {
  text-decoration: underline;
}

.conference-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.conference-grid-layout .mb-5 .position-relative {
  display: inline-grid;
}
.conference-grid-layout .mb-5 .position-relative img:nth-of-type(1) {
  justify-self: center;
}
.conference-grid-layout .mb-5 .position-relative .company-logo {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 50px;
}
@media (max-width: 991px) {
  .conference-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .conference-grid-layout {
    grid-template-columns: 1fr;
  }
}

.conference-sponsor {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  .conference-sponsor {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .conference-sponsor {
    grid-template-columns: 1fr;
  }
}

.conference-speaker-layout {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1200px) {
  .conference-speaker-layout {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .conference-speaker-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .conference-speaker-layout {
    grid-template-columns: 1fr;
  }
}
.conference-speaker-layout .item {
  position: relative;
}
.conference-speaker-layout .item:hover {
  background-color: transparent;
}
.conference-speaker-layout .item:hover img.profile-photo {
  transform: scale(1.05);
}
.conference-speaker-layout .item .profile-photo-section {
  position: relative;
  overflow: hidden;
}
.conference-speaker-layout .item .profile-photo-section .profile-photo {
  width: 100%;
  transition: all 1s ease;
}
.conference-speaker-layout .item .profile-photo-section .company-logo {
  position: absolute;
  top: 0;
  right: 0;
}
.conference-speaker-layout .item .speaker-info {
  position: absolute;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 10px;
}
.conference-speaker-layout .item .speaker-info * {
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #FFF;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
@media screen and (max-width: 991px) {
  .contact-box {
    grid-template-columns: 1fr;
  }
}
.contact-box .contact-item {
  padding: 20px 25px;
  background-color: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.6);
}
.contact-box .contact-item .contact-info {
  font-size: 18px;
  color: red;
  font-weight: 500;
}
@media screen and (max-width: 575px) {
  .contact-box .contact-item .contact-info {
    font-size: 16px;
  }
}
.contact-box .contact-item .contact-info i {
  font-size: 32px;
}

.menu-conference {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .menu-conference {
    width: 95%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.menu-conference .menu-active {
  background-color: #fff;
  color: red;
}
.menu-conference .btn-home {
  font-size: 28px;
}
.menu-conference .btn-home:hover {
  transition: all 0.4s;
}
.menu-conference .menu-item {
  font-size: 18px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  display: block;
  flex-shrink: 1;
  flex-basis: 0;
  flex-grow: 1;
  min-width: 150px;
}
@media screen and (max-width: 991px) {
  .menu-conference .menu-item {
    margin: 10px 0;
  }
}
.menu-conference .menu-item.home {
  padding-right: 2rem;
  font-size: 28px;
  text-align: right;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .menu-conference .menu-item.home {
    text-align: center;
    padding-right: 0;
  }
}
.menu-conference .menu-item.home:hover {
  font-size: 24px;
  background: transparent;
}
.menu-conference .menu-item.btn_menu {
  background-color: #ffa500;
  margin-left: 0.5rem;
  width: 250px;
}
@media screen and (max-width: 991px) {
  .menu-conference .menu-item.btn_menu {
    margin-left: 0;
  }
}
.menu-conference .menu-item.btn_menu:hover {
  background-color: #aa0700;
}
.menu-conference .menu-item:hover {
  background-color: rgba(220, 220, 220, 0.5);
  transition: all 0.2s;
}

.sponsorship-page .box-content-width {
  display: grid;
  grid-template-columns: 60% 40%;
}
@media screen and (max-width: 1200px) {
  .sponsorship-page .box-content-width {
    grid-template-columns: 1fr;
  }
  .sponsorship-page .box-content-width div {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.sponsorship-page .box-content-width img {
  width: 100%;
}
.sponsorship-page .box-image-width {
  display: grid;
  grid-template-columns: 40% 60%;
}
@media screen and (max-width: 1200px) {
  .sponsorship-page .box-image-width {
    grid-template-columns: 1fr;
  }
  .sponsorship-page .box-image-width div {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media screen and (max-width: 1200px) {
  .sponsorship-page .box-image-width img {
    margin-bottom: 20px;
  }
}
.sponsorship-page .box-image-width img {
  width: 100%;
}

.conference-registration .pricing-location-container {
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.6);
  padding: 25px;
}
@media screen and (max-width: 575px) {
  .conference-registration .pricing-location-container {
    padding: 25px 0;
  }
}
.conference-registration .pricing-location-container p {
  font-size: 20px;
}
.conference-registration table td {
  vertical-align: middle;
  font-size: 18px;
}
.conference-registration hr {
  border: 1px solid rgba(0, 0, 0, 0.6);
}
.conference-registration button {
  min-width: 170px;
  border: none;
  border-radius: 0;
  font-weight: bold;
  font-size: 18px;
  margin-left: 15px;
}

#fee-registration .conference-content-title .content-section ul li {
  margin-bottom: 0;
}

.form-exam .main-form .form-group {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 45px;
}
.form-exam .main-form .form-group label {
  display: block;
  font-weight: 600;
  color: #666;
}
.form-exam .main-form .form-group input, .form-exam .main-form .form-group select {
  height: 45px;
  border: none;
  outline: none;
  padding: 0 15px;
  border-radius: 5px;
  box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.08);
}
.form-exam .main-form .form-group select {
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg height='10' width='10' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat;
  background-position: calc(100% - 1rem) !important;
  padding-right: 2rem !important;
}
.form-exam .main-form .custom-checkbox {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 35px;
}
.form-exam .main-form .custom-checkbox label {
  padding-left: 25px;
}
.form-exam .main-form .custom-checkbox label::before, .form-exam .main-form .custom-checkbox label::after {
  left: 0;
}
.form-exam .main-form .form-note {
  font-size: calc(1rem - 1px);
}
.form-exam .main-form .name-note {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 35px;
  margin-top: -30px;
}
.form-exam .form-exam-button {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 35px 0;
}
.form-exam .form-exam-button a,
.form-exam .form-exam-button button {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 8px;
  width: 200px;
  height: 45px;
  background-color: #ff0b00;
  color: #fff;
  border: none;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 20px;
  cursor: pointer;
}
.form-exam .form-exam-button a:hover,
.form-exam .form-exam-button button:hover {
  background-color: #f97671;
  transition: all 0.2s;
  color: #fff;
}

.banner.question-page {
  background: #000 !important;
}
.banner.question-page .banner--page-title {
  display: none;
}

.bg-box-question {
  background-color: #000;
  padding-bottom: 35px;
}
.bg-box-question a {
  text-decoration: none;
}
.bg-box-question .box-question {
  position: relative;
  width: 65%;
  margin: 0 auto;
  border: 1px solid #000;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .bg-box-question .box-question {
    width: 90%;
  }
}
.bg-box-question .box-question.loading-exam {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}
.bg-box-question .box-question.loading-exam .header-question,
.bg-box-question .box-question.loading-exam .main-question,
.bg-box-question .box-question.loading-exam .footer-question {
  display: none;
}
.bg-box-question .box-question.loading-exam:before {
  content: " ";
  display: block;
  width: 4rem;
  height: 4rem;
  border: 0.25em solid black;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border 0.75s linear infinite;
}
.bg-box-question .box-question .header-question {
  padding: 25px 30px;
  background-color: #0a0a0a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .bg-box-question .box-question .header-question {
    flex-direction: column;
  }
}
.bg-box-question .box-question .header-question .certification-name {
  display: flex;
  align-items: center;
}
.bg-box-question .box-question .header-question .certification-name h4 {
  font-size: 24px;
}
.bg-box-question .box-question .header-question #timer {
  color: #fff;
  font-size: 22px;
}
@media screen and (max-width: 992px) {
  .bg-box-question .box-question .header-question #timer {
    margin: 15px 0 5px;
  }
}
@media screen and (max-width: 576px) {
  .bg-box-question .box-question .header-question #timer {
    font-size: 18px;
  }
}
.bg-box-question .box-question .header-question .rounded-circle {
  width: 40px;
  height: 40px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media screen and (max-width: 576px) {
  .bg-box-question .box-question .header-question .rounded-circle {
    width: 35px;
    height: 35px;
  }
}
.bg-box-question .box-question .header-question .rounded-circle i {
  color: black;
  font-size: 24px;
}
.bg-box-question .box-question .header-question h4 {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 0;
  margin-left: 30px;
}
@media screen and (max-width: 576px) {
  .bg-box-question .box-question .header-question h4 {
    font-size: 18px;
  }
}
.bg-box-question .box-question .main-question {
  width: 60%;
  margin: 25px auto;
}
@media screen and (max-width: 768px) {
  .bg-box-question .box-question .main-question {
    width: 80%;
  }
}
@media screen and (max-width: 576px) {
  .bg-box-question .box-question .main-question {
    width: 85%;
  }
}
.bg-box-question .box-question .main-question .question-title {
  font-size: 18px;
}
.bg-box-question .box-question .main-question .question-title p {
  font-size: inherit;
  margin-bottom: 1rem;
  margin-top: 0;
}
.bg-box-question .box-question .main-question .box-question-item {
  display: none;
}
.bg-box-question .box-question .main-question .box-question-item.active {
  display: block;
}
.bg-box-question .box-question .main-question .box-question-item.active input {
  border: 2px solid #ca0000;
}
.bg-box-question .box-question .main-question .question-item {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 15px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 768px) {
  .bg-box-question .box-question .main-question .question-item {
    grid-gap: 8px;
  }
}
.bg-box-question .box-question .main-question .question-item .main-question-item {
  margin-bottom: 0 !important;
  background-color: #f1f1f1;
  border-radius: 5px;
  padding: 20px;
  cursor: pointer;
}
.bg-box-question .box-question .main-question .question-item .main-question-item input {
  float: left;
  width: 20px;
  height: 20px;
  margin: 0 7px;
}
.bg-box-question .box-question .main-question .question-item .main-question-item span {
  max-width: 250px;
  word-wrap: break-word;
  text-overflow: ellipsis;
}
@media screen and (max-width: 576px) {
  .bg-box-question .box-question .main-question .question-item label {
    padding: 15px;
  }
}
.bg-box-question .box-question .main-question .btn_next {
  width: 90px;
  height: 50px;
  margin: 25px 0;
  border-radius: 5px;
  background-color: #000050;
  color: #fff;
}
.bg-box-question .box-question .main-question .box-btn-submit {
  display: flex;
  justify-content: flex-end;
}
.bg-box-question .box-question .main-question .box-btn-submit .btn-submit {
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 44px;
  margin: 25px 0;
  background-color: #ff0b00;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.bg-box-question .box-question .number_btn_active input {
  border: 2px solid #ca0000 !important;
}
.bg-box-question .box-question .footer-question {
  background-color: #efecec;
  padding: 5px 5px 5px 40px;
  display: flex;
  flex-wrap: wrap;
}
.bg-box-question .box-question .footer-question input {
  margin: 5px;
  padding: 8px 13px;
  background-color: #dedede;
  border: 2px solid #c7c7c7;
  color: #003c80;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .bg-box-question .box-question .footer-question input {
    padding: 5px 10px;
  }
}
.bg-box-question .box-question .box-confirm-submit {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  width: 800px;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  display: none;
}
@media screen and (max-width: 992px) {
  .bg-box-question .box-question .box-confirm-submit {
    width: 80%;
  }
}
@media screen and (max-width: 576px) {
  .bg-box-question .box-question .box-confirm-submit {
    width: calc(100% - 60px);
  }
}
.bg-box-question .box-question .box-confirm-submit img {
  position: absolute;
  right: -30px;
  top: -10px;
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  .bg-box-question .box-question .box-confirm-submit img {
    right: -26px;
    top: -1px;
  }
}
.bg-box-question .box-question .box-confirm-submit .main-confirm-submit {
  padding: 80px 60px;
  background-color: #ff0b00;
  color: #fff;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .bg-box-question .box-question .box-confirm-submit .main-confirm-submit {
    padding: 50px 20px;
  }
}
@media screen and (max-width: 576px) {
  .bg-box-question .box-question .box-confirm-submit .main-confirm-submit {
    padding: 35px 20px;
  }
}
.bg-box-question .box-question .box-confirm-submit .main-confirm-submit p {
  font-weight: bold;
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 992px) {
  .bg-box-question .box-question .box-confirm-submit .main-confirm-submit p {
    font-size: 24px;
  }
}
@media screen and (max-width: 576px) {
  .bg-box-question .box-question .box-confirm-submit .main-confirm-submit p {
    font-size: 18px;
  }
}
.bg-box-question .box-question .box-confirm-submit .main-confirm-submit label,
.bg-box-question .box-question .box-confirm-submit .main-confirm-submit button {
  width: 220px;
  padding: 10px 0;
  border: 1px solid;
  margin: 0 8px;
  color: #ff0b00;
  background-color: #fff;
  letter-spacing: 0.05em;
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-content: center;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .bg-box-question .box-question .box-confirm-submit .main-confirm-submit label,
  .bg-box-question .box-question .box-confirm-submit .main-confirm-submit button {
    font-size: 18px;
    font-weight: 500;
  }
}
@media screen and (max-width: 576px) {
  .bg-box-question .box-question .box-confirm-submit .main-confirm-submit label,
  .bg-box-question .box-question .box-confirm-submit .main-confirm-submit button {
    width: 180px;
    font-size: 16px;
  }
}
.bg-box-question .box-question .box-confirm-submit .main-confirm-submit label:hover,
.bg-box-question .box-question .box-confirm-submit .main-confirm-submit button:hover {
  background-color: rgba(248, 233, 232, 0.8784313725);
}
.bg-box-question .box-question .box-confirm-submit .main-confirm-submit label .spinner-grow,
.bg-box-question .box-question .box-confirm-submit .main-confirm-submit button .spinner-grow {
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (max-width: 576px) {
  .bg-box-question .box-question .box-confirm-submit .main-confirm-submit label {
    margin-bottom: 8px;
  }
}
.bg-box-question .box-question .confirm-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #c5c5c5;
  opacity: 0.4;
  display: none;
  cursor: pointer;
}
.bg-box-question .box-question #check_submit:checked ~ .box-confirm-submit {
  display: block;
}
.bg-box-question .box-question #check_submit:checked ~ .confirm-overlay {
  display: block;
}
.bg-box-question .box-question .layer-box-question {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.bg-box-question .box-question .layer-box-question.d_none {
  display: none;
}
.bg-box-question .box-question .layer-box-question p {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0;
}

.breadcrumb {
  margin-bottom: 0;
}

.box-exam-confirm {
  width: 100%;
  text-align: center;
  margin: 60px 0;
  display: block;
}
.box-exam-confirm p {
  font-size: 18px;
}
.box-exam-confirm .certification-name {
  font-size: 32px;
  font-weight: 600;
  margin: 50px 0 80px;
  color: #aa0700;
}
.box-exam-confirm .box-button {
  display: flex;
  justify-content: center;
}
.box-exam-confirm .box-button a, .box-exam-confirm .box-button button {
  cursor: pointer;
  margin: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 190px;
  height: 45px;
  color: #fff;
  background-color: #ff0b00;
  border: none;
  text-decoration: none;
  font-size: 22px;
}
.box-exam-confirm .box-button a:hover, .box-exam-confirm .box-button button:hover {
  background-color: #f97671;
  transition: all 0.2s;
  color: #fff;
}

.exam-code-page {
  padding-bottom: 60px !important;
}
.exam-code-page .banner--page-title .has-background {
  padding-bottom: 0 !important;
}
.exam-code-page .box-exam-code {
  max-width: 888px;
  width: calc(100% - 30px);
  margin: auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.6);
  padding: 60px 0;
  color: #fff;
}
.exam-code-page .box-exam-code h3 {
  font-weight: 700;
  font-size: 36px;
}
.exam-code-page .box-exam-code .box-input-code {
  margin: 25px 0;
}
.exam-code-page .box-exam-code .box-input-code input {
  width: 60px;
  height: 70px;
  margin: 25px 15px;
  text-align: center;
  font-size: 32px;
}
@media (max-width: 768px) {
  .exam-code-page .box-exam-code .box-input-code input {
    width: 50px;
    height: 60px;
    margin: 25px 10px;
  }
}
@media (max-width: 576px) {
  .exam-code-page .box-exam-code .box-input-code input {
    width: 40px;
    height: 55px;
    margin: 25px 8px;
    font-size: 26px;
  }
}
@media (max-width: 414px) {
  .exam-code-page .box-exam-code .box-input-code input {
    width: 35px;
    height: 50px;
    margin: 20px 5px;
    font-size: 24px;
  }
}
@media (max-width: 320px) {
  .exam-code-page .box-exam-code .box-input-code input {
    width: 28px;
    height: 40px;
    font-size: 20px;
  }
}
.exam-code-page .box-exam-code button {
  width: 250px;
  height: 45px;
  color: #fff;
  background-color: #ff0b00;
  border: none;
  font-size: 22px;
}
.exam-code-page .box-exam-code .error {
  font-size: 18px;
}

.exam-page .banner--page-title .has-background {
  min-height: 0 !important;
}
.exam-page .banner--page-title .has-background .page-title h1 {
  letter-spacing: 0.01em !important;
}
.exam-page .banner--page-title .has-background .page-title p {
  font-weight: 600;
  font-size: 36px;
  float: right;
  text-align: right;
  display: block;
  margin-right: 45px;
}
@media (max-width: 500px) {
  .exam-page .banner--page-title .has-background .page-title p {
    font-size: 32px;
  }
}
@media (max-width: 360px) {
  .exam-page .banner--page-title .has-background .page-title p {
    font-size: 28px;
  }
}
@media (max-width: 320px) {
  .exam-page .banner--page-title .has-background .page-title p {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .box-exam-code h3 {
    font-size: 32px !important;
  }
}
#exam-error-popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  margin: auto;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
  justify-content: center;
  align-items: center;
}
#exam-error-popup .error-container {
  background-color: #ff0b00;
  max-width: 800px;
  padding: 40px 60px;
  text-align: center;
  position: relative;
}
@media (max-width: 1024px) {
  #exam-error-popup .error-container {
    max-width: calc(100% - 60px);
  }
}
@media (max-width: 767px) {
  #exam-error-popup .error-container {
    padding: 20px 30px;
    max-width: calc(100% - 30px);
  }
}
#exam-error-popup .error-container .error-message {
  color: white;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  white-space: pre-line;
}
#exam-error-popup .error-container .ok-btn {
  width: 200px;
  padding: 10px 0;
  border: none;
  color: #ff0b00;
  background-color: #fff;
  letter-spacing: 0.05em;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
  margin-top: 30px;
}
#exam-error-popup .error-container .ok-btn:hover {
  background-color: rgba(248, 233, 232, 0.8784313725);
}

.banner {
  background-attachment: unset;
}

.review-code-page {
  padding-bottom: 60px !important;
}
.review-code-page .box-review-code {
  max-width: 888px;
  width: calc(100% - 30px);
  margin: auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.6);
  padding: 60px 0;
  color: #fff;
}
.review-code-page .box-review-code p {
  width: 60%;
  margin: auto;
  margin-bottom: 30px;
}
.review-code-page .box-review-code h3 {
  font-weight: 700;
  font-size: 36px;
}
.review-code-page .box-review-code .box-input-code {
  margin: 25px 0;
}
.review-code-page .box-review-code .box-input-code span {
  font-size: 48px;
  padding: 0 10px;
}
.review-code-page .box-review-code .box-input-code input {
  width: 65px;
  height: 70px;
  margin: 25px 15px;
  text-align: center;
  font-size: 32px;
}
.review-code-page .box-review-code button {
  width: 250px;
  height: 45px;
  color: #fff;
  background-color: #ff0b00;
  border: none;
  font-size: 22px;
}
.review-code-page .box-review-code .error {
  font-size: 18px;
}

.review-page .banner--page-title {
  padding-bottom: 125px;
}
.review-page .banner--page-title .has-background {
  min-height: 0 !important;
  padding-bottom: 0 !important;
}
.review-page .banner--page-title .has-background .page-title {
  padding-bottom: 150px;
}
.review-page .banner--page-title .has-background .page-title h1 {
  letter-spacing: 0.01em !important;
}
.review-page .banner--page-title .has-background .page-title p {
  font-weight: 600;
  font-size: 36px !important;
  float: right;
  text-align: right;
  display: block;
  margin-right: 45px;
}
.review-page .banner--page-title .has-background .logo {
  position: absolute;
  right: 0;
  bottom: 25px;
}
.review-page .banner--page-title .has-background .logo img {
  width: 100px;
  top: 0 !important;
}

@media (max-width: 991px) {
  .banner--page-title .has-background .logo {
    justify-content: flex-end;
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .box-review-code p {
    width: 90% !important;
  }
  .box-review-code .box-input-code input {
    width: 50px !important;
    height: 60px !important;
    margin: 25px 10px !important;
  }
}
@media (max-width: 576px) {
  .banner--page-title .has-background .logo img {
    width: 80px !important;
  }
  .box-review-code h3 {
    font-size: 32px !important;
  }
  .box-review-code .box-input-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    margin: auto;
  }
  .box-review-code .box-input-code input {
    width: 50% !important;
    margin: 25px 5px !important;
    font-size: 26px !important;
  }
}
.box-review-confirm {
  width: 100%;
  text-align: center;
  margin: 60px 0;
  display: block;
}
.box-review-confirm p {
  font-size: 18px;
}
.box-review-confirm .certification-name {
  font-size: 32px;
  font-weight: 600;
  margin: 50px 0 80px;
  color: #aa0700;
}
.box-review-confirm .box-button {
  display: flex;
  justify-content: center;
}
.box-review-confirm .box-button a, .box-review-confirm .box-button button {
  margin: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 190px;
  height: 45px;
  color: #fff;
  background-color: #ff0b00;
  border: none;
  text-decoration: none;
  font-size: 22px;
}
.box-review-confirm .box-button a:hover, .box-review-confirm .box-button button:hover {
  background-color: #f97671;
  transition: all 0.2s;
}

.bg-box-question {
  background-color: #000;
  padding-bottom: 35px;
}
.bg-box-question .box-question {
  width: 65%;
  margin: 0 auto;
  border: 1px solid #000;
  background-color: #fff;
}
.bg-box-question .box-question .header-question {
  padding: 25px 30px;
  background-color: #0a0a0a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bg-box-question .box-question .header-question .certification-name {
  display: flex;
}
.bg-box-question .box-question .header-question #timer {
  color: #fff;
  font-size: 22px;
}
.bg-box-question .box-question .header-question .rounded-circle {
  width: 40px;
  height: 40px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.bg-box-question .box-question .header-question .rounded-circle i {
  color: black;
  font-size: 24px;
}
.bg-box-question .box-question .header-question h4 {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 0;
  margin-left: 30px;
}
.bg-box-question .box-question .main-question {
  width: 60%;
  margin: 25px auto;
}
.bg-box-question .box-question .main-question p {
  font-size: 18px;
  margin: 30px 0;
}
.bg-box-question .box-question .main-question .box-question-item {
  display: none;
}
.bg-box-question .box-question .main-question .box-question-item.active {
  display: block;
}
.bg-box-question .box-question .main-question .box-question-item.active input {
  border: 2px solid #ca0000;
}
.bg-box-question .box-question .main-question .question-item {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 15px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.bg-box-question .box-question .main-question .question-item.question-item-text {
  grid-template-columns: 1fr;
}
.bg-box-question .box-question .main-question .question-item.question-item-text textarea {
  width: 100%;
  resize: none;
  padding: 15px;
}
.bg-box-question .box-question .main-question .question-item .main-question-item {
  margin-bottom: 0 !important;
  background-color: #f1f1f1;
  border-radius: 5px;
  padding: 20px;
  cursor: pointer;
}
.bg-box-question .box-question .main-question .question-item .main-question-item input {
  float: left;
  width: 20px;
  height: 20px;
  margin: 0 7px;
}
.bg-box-question .box-question .main-question .question-item .main-question-item span {
  max-width: 250px;
  word-wrap: break-word;
  text-overflow: ellipsis;
}
.bg-box-question .box-question .main-question .btn_next {
  width: 90px;
  height: 50px;
  margin: 25px 0;
  border-radius: 5px;
  background-color: #000050;
  color: #fff;
}
.bg-box-question .box-question .main-question .box-btn-submit {
  display: flex;
  justify-content: flex-end;
}
.bg-box-question .box-question .main-question .box-btn-submit .btn-submit {
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 45px;
  margin: 25px 0;
  background-color: #ff0b00;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.bg-box-question .box-question .number_btn_active input {
  border: 2px solid #ca0000 !important;
}
.bg-box-question .box-question .footer-question {
  background-color: #efecec;
  padding: 5px;
  padding-left: 40px;
  display: flex;
}
.bg-box-question .box-question .footer-question input {
  margin: 5px;
  padding: 8px 13px;
  background-color: #dedede;
  border: 2px solid #c7c7c7;
  color: #003c80;
  font-size: 18px;
}
.bg-box-question a {
  text-decoration: none;
}
.bg-box-question a:hover {
  text-decoration: none;
}

.breadcrumb {
  margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
  .box-question {
    width: 90% !important;
  }
}
@media screen and (max-width: 992px) {
  .box-question .btn_submit p {
    width: 150px !important;
  }
}
@media screen and (max-width: 768px) {
  .box-question .main-question {
    width: 80% !important;
  }
  .box-question .main-question .question-item {
    grid-gap: 8px !important;
  }
  .box-question .footer-question input {
    padding: 5px 10px !important;
  }
}
.bg-box-rate {
  background-color: #000;
}
.bg-box-rate .box-rate {
  width: 100%;
  margin: auto;
}
.bg-box-rate .box-rate .header-rate .header-top {
  background-color: #000032;
  color: #fff;
  padding: 10px;
}
.bg-box-rate .box-rate .header-rate .header-top p {
  font-size: 24px;
}
.bg-box-rate .box-rate .content-rate {
  height: 600px;
  background-color: #fff !important;
}
.bg-box-rate .box-rate .btn_submit {
  display: flex;
  justify-content: space-between;
}
.bg-box-rate .box-rate .btn_submit label {
  background-color: #ff0b00;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 8px 25px;
  margin: 25px 0;
  cursor: pointer;
}
.bg-box-rate .box-response {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  justify-content: center;
  align-items: center;
  z-index: 100;
  width: min(100%, 900px);
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  background-color: #fff;
  padding: 60px 35px;
  visibility: hidden;
  opacity: 0;
}
.bg-box-rate .box-response .response-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  color: #fff;
  align-items: center;
  margin: auto;
}
@media (max-width: 991px) {
  .bg-box-rate .box-response .response-content {
    grid-template-columns: 1fr;
    text-align: center;
    row-gap: 30px;
  }
}
@media (max-width: 991px) {
  .bg-box-rate .box-response .response-content img {
    margin: 0 auto;
  }
}
.bg-box-rate .box-response .response-content h1 {
  text-align: center;
  font-size: 52px;
  color: #c74300;
  font-weight: 800;
  word-spacing: 1000px;
  line-height: 45px;
}
.bg-box-rate .box-response .response-content p {
  line-height: 40px;
  font-size: 24px;
  font-weight: 400 !important;
  color: #ff0b00;
}
.bg-box-rate .box-response a {
  text-decoration: none;
  background-color: #000;
  width: 200px !important;
}
.bg-box-rate .box-response button, .bg-box-rate .box-response label.button-close {
  padding: 10px 25px;
  background-color: #c74300;
  color: #fff;
  display: table;
  margin: 25px auto;
  border: none;
}
.bg-box-rate .box-response-layer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #db9421;
  visibility: hidden;
  opacity: 0;
  z-index: 10;
  padding-bottom: 0;
  margin-bottom: 0;
}
.bg-box-rate p {
  margin-bottom: 0;
}
.bg-box-rate #check-box-response:checked ~ .box-response {
  visibility: visible;
  opacity: 1;
  transition: all 0.6s;
  transition-delay: 0.6s;
}
.bg-box-rate #check-box-response:checked ~ .box-response-layer {
  visibility: visible;
  opacity: 1;
  transition: all 0.2s;
}

.bg-box-trustpilot .box-question {
  display: flex;
  flex-wrap: wrap;
}
.bg-box-trustpilot .course-title {
  display: block;
  width: 100%;
  background-color: #1c1c1c;
  color: #FFF;
  font-size: 24px;
  font-weight: bold;
  padding: 20px 60px;
}
@media (max-width: 480px) {
  .bg-box-trustpilot .course-title {
    padding: 30px 15px;
  }
}
.bg-box-trustpilot .message {
  padding: 45px 60px;
  font-size: 20px;
  min-height: 300px;
}
@media (max-width: 480px) {
  .bg-box-trustpilot .message {
    padding: 30px 15px;
  }
}
.bg-box-trustpilot .message a {
  background-color: #ff0b00;
  color: #FFF;
  padding: 10px 25px;
  margin-top: 15px;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
}
