.error {
    display: flex;
    color: #8E1F0B;
    margin-top: 5px;
    align-items: center;
}

.error span {
    margin-left: 5px;
    color: "#97311F";
}

.error .Polaris-Icon {
    margin: 0;
}

.setup-div {
    background: rgba(247, 247, 247, 1); 
    padding: 15px 25px; 
    border-radius: 10px; 
    margin-top: 5px;
}

.setup-head-p {
    font-weight: bold;
    margin-bottom: 4px;
}

.setup-text-p {
    font-size: 13px;
    margin-bottom: 14px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 2.25rem;
    height: 1.35rem;
}
  
.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}
  
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s cubic-bezier(0,1,0.5,1);
    border-radius: 25px;
}
  
.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s cubic-bezier(0,1,0.5,1);
    border-radius: 10px;
}
  
input:checked + .slider {
    background-color: #000;
}
  
input:checked + .slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}

.alert-warning {
    display: flex;
    align-items: center;
    background-color: #FFF3CD;
    color: #846E2A;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e2d6b2;
    margin-bottom: 10px;
    font-size: 14px;
}

.alert-warning svg {
    margin-right: 8px;
}

.pagination-div {
    padding: 8px; 
    display: flex; 
    justify-content: center;
    background: #F7F7F7;
    border-top: 1px solid #E3E3E3;
}

.search-input-div {
    border-bottom: 1px solid #E3E3E3;
}

.search-input-div .Polaris-TextField__Backdrop {
    border: none;
    outline: none !important;
    background-color: transparent !important;
}

.search-input-div input {
    height: 50px;
}

@media (min-width: 768px) {
    .Polaris-IndexTable__Table td div.longDiv {
        word-wrap: break-word !important;
        word-break: break-word !important;
        white-space: normal !important;
    }
}