/* redactor editor butting styling */

:root {
    /* colors */

    --crimson: #5B1F33;
    --dark-crimson: #300C18;
    --green: #0B3824;
    --new-green: #1F593E;
    --light-gold: #D1A94F;
    --dark-gold: #B3983B;
    --white: #FFFFFF;
}



.redactor-dropdown-item-crimson-bg-button,
.redactor-dropdown-item-gold-bg-button,
.redactor-dropdown-item-green-bg-button,
.redactor-dropdown-item-white-bg-button {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    width: max-content;
    min-height: 67px;
    text-decoration: none;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 2px;
    font-family: 'Domaine Sans Text';
    font-style: normal;
    font-weight: 400;
    font-size: var(--font-body);
    line-height: 19px;
    text-align: center;
    padding: 0;
    margin-left: auto;
        margin-right: auto;
        width: 165px;
}



.redactor-dropdown-item-crimson-bg-button>a,
.redactor-dropdown-item-green-bg-button>a,
.redactor-dropdown-item-gold-bg-button>a,
.redactor-dropdown-item-white-bg-button>a {
    padding: 24px 48px;
}

.redactor-dropdown a:hover.redactor-dropdown-item-crimson-bg-button:hover,
.redactor-dropdown-item-crimson-bg-button {
    background: var(--crimson) !important;
    border: 2px solid var(--crimson) !important;
    color: var(--light-gold) !important;
}

.redactor-dropdown a:hover.redactor-dropdown-item-gold-bg-button:hover,
.redactor-dropdown-item-gold-bg-button {
    background: var(--light-gold) !important;
    border: 2px solid var(--light-gold)  !important;
    color: var(--crimson) !important;

}

.redactor-dropdown a:hover.redactor-dropdown-item-green-bg-button:hover,
.redactor-dropdown-item-green-bg-button {
    background: var(--new-green) !important;
    border: 2px solid var(--new-green) !important;
    color: var(--light-gold) !important;

}

.redactor-dropdown a:hover.redactor-dropdown-item-white-bg-button:hover,
.redactor-dropdown-item-white-bg-button {
    background: var(--white) !important;
    border: 2px solid var(--light-gold)  !important;
    color: var(--light-gold) !important;
}


.redactor-styles .crimson-bg-button,
.redactor-styles .gold-bg-button,
.redactor-styles .green-bg-button,
.redactor-styles .white-bg-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    width: max-content;
    min-height: 67px;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 2px;
    font-family: 'Domaine Sans Text';
    font-style: normal;
    font-weight: 400;
    font-size: var(--font-body);
    line-height: 19px;
    text-align: center;
    padding: 0;
    min-width: 150px;
}

.redactor-styles .crimson-bg-button>a,
.redactor-styles .green-bg-button>a,
.redactor-styles .gold-bg-button>a,
.redactor-styles .white-bg-button>a {
    padding: 24px 48px;
    text-decoration: none;
}

.redactor-styles .crimson-bg-button {
    background: var(--crimson);
    border: 2px solid var(--crimson);
    color: var(--light-gold);
}

.redactor-styles .gold-bg-button {
    background: var(--light-gold);
    border: 2px solid var(--light-gold);
    color: var(--crimson);

}

.redactor-styles .green-bg-button {
    background: var(--new-green);
    border: 2px solid var(--new-green);
    color: var(--light-gold);

}

.redactor-styles .white-bg-button {
    background: var(--white);
    border: 2px solid var(--light-gold);
    color: var(--light-gold);
}



/* 

*/

.redactor-styles .crimson-bg-button a {

    color: var(--light-gold);
}

.redactor-styles .gold-bg-button a {
 
    color: var(--crimson);

}

.redactor-styles .green-bg-button a {

    color: var(--light-gold);

}

.redactor-styles .white-bg-button a {
  
    color: var(--light-gold);
}