@media (max-width: 1227px) {
    .custom-container {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }
    .header {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }
}

.custom-container {
    height: auto;
    padding-left: 200px;
    padding-right: 200px;
}

  
.custom-row {
    display: flex;
    /* flex-wrap: wrap; */
    gap:5px;
}
.custom-col {
    flex: 1;
    text-align:left;
    padding:5px;
}
.custom-col-1 { flex: 0 0 8.33%; }
.custom-col-2 { flex: 0 0 16.66%; }
.custom-col-3 { flex: 0 0 25%; }
.custom-col-4 { flex: 0 0 33.33%; }
.custom-col-5 { flex: 0 0 41.66%; }
.custom-col-6 { flex: 0 0 50%; }
.custom-col-7 { flex: 0 0 58.33%; }
.custom-col-8 { flex: 0 0 66.66%; }
.custom-col-9 { flex: 0 0 75%; }
.custom-col-10 { flex: 0 0 83.33%; }
.custom-col-11 { flex: 0 0 91.66%; }
.custom-col-12 { flex: 0 0 100%; }

.custom-row-cols-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
}
@media (min-width: 576px) {
  .custom-row-cols-2 > * { flex: 0 0 50%; max-width: 50%; }
}

@media (min-width: 768px) {
  .custom-row-cols-3 > * { flex: 0 0 33.33%; max-width: 33.33%; }
}

@media (min-width: 992px) {
  .custom-row-cols-4 > * { flex: 0 0 25%; max-width: 25%; }
}



.btn-regular{
    display:inline-block;
    background-color:#4F5D75;
    color:white;
    font-size: 16px;
    width: 256px;
    height:32px;
    border-radius:16px;
    position: relative;
    border:none;
    text-decoration: none;
    text-align:center;
    line-height: 32px;
    cursor: pointer;
}
.btn-regular a{
    text-decoration:none;
    color:white;
}
.btn-regular:hover{
    transition: .3s ease;
    background-color:#EF8354;
    color:white;
}

.margin-bottom-1{ margin-bottom:5px; }
.margin-bottom-2{ margin-bottom:10px; }
.margin-bottom-3{ margin-bottom:15px; }
.margin-bottom-4{ margin-bottom:20px; }
.margin-bottom-5{ margin-bottom:25px; }

.margin-top-1{ margin-top:5px; }
.margin-top-2{ margin-top:10px; }
.margin-top-3{ margin-top:15px; }
.margin-top-4{ margin-top:20px; }
.margin-top-5{ margin-top:25px; }

.margin-left-1{ margin-left:5px; }
.margin-left-2{ margin-left:10px; }
.margin-left-3{ margin-left:15px; }
.margin-left-4{ margin-left:20px; }
.margin-left-5{ margin-left:25px; }

.margin-right-1{ margin-right:5px; }
.margin-right-2{ margin-right:10px; }
.margin-right-3{ margin-right:15px; }
.margin-right-4{ margin-right:20px; }
.margin-right-5{ margin-right:25px; }

.custom-control{
    background-color: #4F5D75;
    color:white;
    border:none;
    display:inline-block;
    border-radius:16px;
    height:32px;
    width: 100%;
    padding:10px;
    box-sizing: border-box;
}
.custom-control .dropdown-menu{
    border-radius: 0.5rem; 
}
.custom-checkbox{
    background-color:red !important;
}
.custom-dropdown{
    background-color: #4F5D75;
    color:white;
    border:none;
    display:inline-block;
    border-radius:16px;
    height:32px;
    width: 100%;
    padding:10px;
    box-sizing: border-box;
    padding:0px;
}
.custom-dropdown .dropdown-menu{
    border-radius: 0.5rem; 
}



.modal {
    display: none;
    position: fixed;
    z-index: 50;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    align-items: center;
    justify-content: center;
    border-radius:10px;
}
.modal-content {
    background-color: #2D3142;
    color:white;
    margin: auto;
    padding: 20px;
    border-radius: 16px;
    width: 80%;
    max-width: 512px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.close-btn {
    color: white;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}
.close-btn:hover, .close-btn:focus {
    color: #C77DFF;
}


.top-link{
    text-decoration: none;
    color:black;
}
.top-link:hover{
    transition: .3s ease;
    color:#48dbfb;
}


.popup {
    display:none;
    position: fixed;
    width:auto;
    bottom: 20px;
    right: 20px;
    background-color: #3C096C;
    color: white;
    padding: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-sizing: border-box;
    border-radius:16px;
    border:0px;
}
  
.popup.show {
    display:inline-block;
}
  
.hidden {
    display: none;
}



.custom-input{
    background-color: #3C096C;
    color:white;
    border:none;
    height:32px;
    padding-left:10px;
    width: 100%;
    border-radius: 16px;
    border: none;
    box-sizing: border-box;
    margin-bottom:5px;
}

.form-submit{
    background-color: #3C096C;
    color:white;
    border:none;
    display:block;
    height:32px;
    width:100%;
    border-radius:16px;
    text-align:center;
    margin-top:5px;
    margin-bottom:5px;
    line-height:16px;
}
.form-submit:hover{
    transition: .3s ease;
    background-color:#C77DFF;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .radio-option,
  .checkbox-option {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .buttons {
    display: flex;
    gap: 10px;
  }



.pagination {
    display: inline-flex;
    text-align: center;
}
.pagination a {
    padding: 4px 8px;
    margin: 0 2px;
    background: #ffffff;
    text-decoration: none;
    border-radius: 4px;
}
.pagination strong {
    margin: 0 2px;
    background: #4F5D75;
    color: white;
    border-radius: 16px;
    width: 32px;
    height:32px;
    display: inline-block;
    line-height: 32px;
}