.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(0,0,0,0.4);
  }

  #myModal .modal-content {
    background-color: #fefefe;
    border: var(--primaryColor) 3px solid;
    border-radius: 30px;
    margin: 10% auto;
    padding: 20px;
    width: 40%;
    overflow-y: auto;
    min-height: 100px;
    max-height: 70%;
    height: auto;
  }

  #myModal .modal-content::-webkit-scrollbar {
    display: none;
  }

  #comment_pointType_block {
    display: flex;
    justify-content: flex-start;
  }

  .modal-content .pointType {
    cursor: pointer;
    width: 100%;
  }

  .modal-content .userBlock{
    width: 100%;
    margin-top: 15px;
  }

  .modal-content .userBlock .title,  .modal-content .userBlock .point{
    color: var(--board) !important;
    width: 100%;
    text-align: center;
    font-size: 14px;
    display: block;
  }
  .modal-content .userBlock .point{
    color: var(--primaryColor) !important;
    background-color: transparent !important;
    font-size: 18px;
    font-weight: bold;
  }

  .modal-content .inputLink {
    font-size: 15px;
    width: 100%;
    padding: 10px 15px;
    display: flex;
  }
  .modal-content .inputLink input{
    width: 85%;
    border: var(--primaryColor) 2px solid;
    background-color: white;
    font-size: 15px;
    color: var(--primaryColor);
    
    line-height: 35px;
    padding: 5px;
  }
  .modal-content .inputLink .appendButton{
    width: 15%;
    border: none;
    background: var(--primaryColor);
    font-size: 15px;
    color: white;
    line-height: 35px;
    padding: 5px;
  }
  .modal-content .acceptLinkBlock {
    font-size: 15px;
    width: 100%;
    padding: 10px 15px;
  }
  .modal-content .acceptLinkBlock > span{
    font-size: 15px;
    width: 100%;
    padding: 10px 15px;
    display: block;
    background-color: #f4efff;
    color: var(--primaryColor);
    font-weight: bold;
  }
  .modal-content .acceptLinkBlock ul {
    line-height: 35px;
    padding: 5px;
    opacity: 0.8;
  }
  .modal-content .acceptLinkBlock ul li:nth-child(odd) {
    background-color: #f2f2f2; 
    padding:0 5px;
  }
  
  .modal-content .acceptLinkBlock ul li:nth-child(even) {
    background-color: #cccccc; 
    padding:0 5px;
  }
  .modal-content .acceptLinkBlock ul li a{
    color: var(--primaryColor);
    text-decoration: none;
  }

  .modal-header{
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
    display: flex;
    align-items: center;
  }
  .modal-header .siteName{
    width: calc(100% - 60px);
    line-height: 30px;
    color: var(--primaryColor);
    font-size: 24px;
    font-weight: 700;
    overflow: hidden;
    align-self: center;
    word-break: keep-all;
  }
  .modal-header .bell{
    display: block;
    width: 30px;
    height: 30px;
  }
  .modal-header .bell svg{
    color: var(--primaryColor);
    width: 100%;
    height: 100%;
  }

  .modal-header .closeButton {
    background: var(--primaryColor);
    color: white;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    text-align: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
  }

  .closeButton:hover,
  .closeButton:focus {
    background: var(--primaryColor);
    color: white;
    text-decoration: none;
    cursor: pointer;
  }
  .openButton{
    border: 2px solid var(--primaryColor);
    border-radius: 8px;
  }
  .openButton span{
    display: inline-block;
    height: 36px;
    line-height: 34px;
    padding: 0 12px 0 10px;
    cursor: pointer;
    box-shadow: 2px 2px 5px #d9d9d9;
    -webkit-box-shadow: 2px 2px 5px #d9d9d9;
    -moz-box-shadow: 2px 2px 5px #d9d9d9;
  }


  .cutsomizedBlock{
    color: var(--primaryColor);
    cursor: pointer;
    margin:  0 auto;
    display: block;
    width: 100%;
    padding: 10px 5px;
    text-align: center;
  }
  .cutsomizedBlock span{
    padding: 5px 10px;
    border-radius: 10px;
    width: auto;
    font-size: 2rem;
    border: var(--primaryColor) 2px solid;
  }
  .bo_write .btn_submit {
      padding: 0.65rem 1.5rem;
      height: 35px;
  }
  @media screen and (min-width: 1121) and (max-width: 1440) {
      #myModals .modal-content {
          margin: 30% auto;
          width: 50%;
          padding: 10px;
      }
  }
  @media screen and (min-width: 769px) and (max-width: 1120px) {
      #myModals .modal-content {
        margin: 30% auto;
        width: 70%;
        padding: 10px;
      }
  }
  @media screen and (max-width: 768px) {
    /* Add your mobile-specific styles here */
    #comment_pointType_block .col-6.col-md-3.pointTypeContainer:first-child {
      display: none;
    }
    #myModal .modal-content {
      margin: 30% auto;
      width: 90%;
      padding: 10px;
    }
  }

