/*--------------------------- 
Add Plugin Front-End CSS here 
---------------------------*/

/* Flex container used for full width messages eg "Success" */
.flex-container {
    width: 50%;
    border: 1px solid #c3c3c3;
    padding: 5px;
    display: flex;
    text-align: center;
}

.flex-item {
    width: 50%;
}

@media (max-width: 1024px) {
    .flex-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .flex-container {
        width: 100%;
    }
}

.no-wrap-item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ricp-listing {
    background: #F1F1F1;
    padding: 20px 15px 15px
}

.ricp-listing .heading {
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px
}


.ricp-listing .wrap-item {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    line-height: 1.5rem;
    padding: 5px 0;
/*   font-size: .875rem */
}


.ricp-listing .wrap-item_name {
    font-size: .875rem;
    font-weight: 400
}

.ricp-listing .wrap-item_value {
    font-size: 1.2rem;
    padding: 5px 0px 15px 12px;
    font-weight: 600
}

.ricp-listing .wrap-item_value_light {
    font-size: 1.2rem;
    padding: 5px 0px 15px 12px;
    filter: brightness(185%);
    font-weight: 400
}

.ricp-listing .wrap-item_warning {
    display:table;
    border: 1px solid #d3c1c1;
    background-color:#FFFCC8;
    font-size: 1rem;
    padding: 5px 12px 15px 12px;
    font-weight: 500
}


/*
.ricp-listing .total {
    border-top: 1px solid #ccc;
    padding: 17px 0 27px;
    margin-top: 15px;
    font-weight: 500
}

.ricp-listing .total__name {
    font-weight: 500
}


.ricp-listing .total__value {
    font-size: 1.5rem;
    font-weight: 700
}

*/

.button {
    font: bold 11px Arial;
    text-decoration: none;
    background-color: #EEEEEE;
    color: #333333;
    padding: 2px 6px 2px 6px;
    border-top: 1px solid #CCCCCC;
    border-right: 1px solid #333333;
    border-bottom: 1px solid #333333;
    border-left: 1px solid #CCCCCC;
  }
  


#ricp_main {
    width: 50%;
    border: 1px solid #c3c3c3;
    padding: 5px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#ricp_main div {
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    #ricp_main {
        width: 100%;
    }
}

@media (max-width: 768px) {
    #ricp_main {
        width: 100%;
    }
}

.edit-icon {
    display: inline-block;
    transform: rotateZ(90deg);
    font-size: 1.5rem;
}

.helptext {
    font-size: small;
    line-height: 0.5;
}

#helptext {
    font-size: small;
    line-height: 0.5;
}

/* sets button width to almost full width */
input {
    width: 96%;
    margin: 5px;
}

.link-button {
    background: none;
    border: none;
    color: #0066ff;
    text-decoration: underline;
    cursor: pointer;
}

.required
{
    color: red;
}

.btn-spaced {
    margin:0px 5px;
}

.important 
{
    color: red;
}