/*fix layout page*/
html {
    position: relative !important;
}

/*define layout position embed button*/
.view-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    grid-gap: 10px;
}
.view-wrapper.hidden {
    display: none;
}

/*default stylesheet of button*/
.view-button {
    background-color: #444444;
    color: #ffffff !important;
    font-family: inherit;
    font-weight: 400 !important;
    font-size: 16px !important;
    text-decoration: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #444444;
    border-radius: 5px;
    padding: 8px 35px 8px 35px;
    margin: 0px 0px 0px 0px;
}
/*stylesheet view icon of button*/
.view-button > svg {
    margin-left: 10px;
}

/*change stylesheet when hover to button*/
.view-button:hover {
    background-color: #666666;
    color: #ffffff;
    border-color: #666666;
}
.view-button-hide {
    display: none !important;
}

/*stylesheet of widget*/
.widget-message {
    font-style: italic;
    margin-top: 10px;
}
.widget-message.error {
    color: red;
    background: pink;
}
.widget-message.warning {
    color: red;
    background: yellow;
}
