#edit-template-top
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 25px;
}

#edit-template-area
{
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgb( 240, 240, 240);
    margin-bottom: 40px;    
}

#edit-template-area-title
{
    position:relative;
    margin: 0;
    margin-bottom: 0px;
    font-weight: bold;
    color: #000;
    line-height: 1.2;
}

#edit-template-area-title:before
{
    width: 4px;
    position: absolute;
    top: 0;
    left: -15px;
    height: 100%;
    content: "";
    background: rgb(255, 191, 75);
}

#edit-template-top-row
{
    margin-bottom: 10px;
}

#edit-template-area-title img
{
    margin-left: 10px;
}

#edit-template-top-row
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#edit-template-characters
{
    font-size: 12px;
    color: rgb(138, 139, 147);
}

#edit-template-buttons
{
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgb(243, 243, 243);
}

#edit-template-buttons a
{
    height: 37px;
    line-height: 35px;
    border: 1px solid #000;
    padding: 0 15px;
    font-size: 13px;
    border-radius: 8px;
    background: rgb(232, 233, 235);
    margin-right: 15px;
    display: inline-block;
    transition: 0.55s;
}

#edit-template-buttons a.create-button
{
    color: rgb(28, 37, 56);
}

#edit-template-buttons a.create-button:hover
{
    background: #000;
    color: #fff;
}

#edit-template-buttons a.save-button
{
    color: #fff;
    background: #000;
}

#edit-template-buttons a.save-button:hover
{
    background: rgba( 232, 233, 235);
    color: #000;
}

#edit-template-area-title.bg-sms:before {
    background: #ffbf4b !important;
}

#edit-template-area-title.bg-email:before {
    background: #f3535e !important;
}

#edit-template-area-title.bg-phone:before {
    background: #7fff00 !important;
}

#edit-template-textarea {
    min-height: 70px;
}