body {
    word-wrap: break-word;
overflow-wrap: break-word;
word-break: break-word; 
}

.instructions {
    padding: 0;
    border: 2px solid #545454;
    margin-bottom: 20px;
}

.instructions h2 {
    background-color: #545454;
    color: white;
    text-align: center;
    margin-top: 0;
}

.instructions p {
    padding: 0 15px;
}

.instructions p:last-child {
    margin-bottom: 15px;
}

.instructions img {
    max-width: calc(100% - 30px);
    box-sizing: border-box;
    margin: 10px;
    margin-top: 0;
    border: 1px solid rgb(178, 177, 177);
}



/*=========REG=============*/

.reg {
    margin-top: 1rem;
    line-height: 30px;
  }
  .reg__title {
    font-weight: 700;
  }
  .reg ol {
    counter-reset: myCounter;
  }
  
  .reg li {
    list-style: none;
    margin: 0 0 8px 0;
  }
  
  .reg li:last-of-type {
    margin: 0 0 25px 0;
  }
  .reg li:before {
    counter-increment: myCounter;
    content: counter(myCounter);
    display: block;
    border-color: rgb(223, 0, 0);
    border: 3px solid;
    width: 40px;
    height: 40px;
    padding: 4px 12px;
    border-radius: 50%;
    color: rgb(223, 0, 0);
    font-weight: 600;
    margin: auto 0.8rem auto 0;
    font-family: "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  }
  .reg__list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    margin: 0;  
  }
  .reg__list-container {
    font-weight: normal;
    background-color: #ececec;
    border-left: 2px solid;
    border-right: 2px solid;
    border-radius: 6px;
    border-color: rgb(223, 0, 0);
    width: 100%;
    display: flex;
    align-items: center;
    padding: 8px;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 26px;
    overflow-wrap: break-word;
    position: relative;  
  }
  .reg__item {
    line-height: 25px;
    font-weight: normal;
    font-size: 18px;
  }
  .reg__item img {
    margin-right: 0.5rem;
  }
  .reg__item a {
    color: #007fff;
    text-decoration: underline;
    background-color: transparent;
    font-weight: 500;
  }
  .reg__item a:hover {
    color: #2195bf;
  }
  
  .button-link {
    background-color: #007fff;
    color: white !important;
    padding: 15px;
    margin-top: 30px;
    display: block;
    max-width: 100%;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  
  .button-link:hover {
    color: #fff !important;
    background-color: #e11229;
    text-decoration: none;
  }
.button-link:hover {
    background-color: #e11229!important;
}

.reg__item a {
    color: #007fff!important;
    font-weight: inherit!important;
    border-bottom: none!important;
    text-decoration: underline!important;
   
}

p a:hover, .reg__item a:hover {
    color: #e11229!important;
    background-color: transparent!important;
}

