.material-topbar {
    display: flex;
    height: 60px;
    width: 100%;
    padding: 0 15px 0 0;
    background: #DA291C;
}

.material-topbar .material-topbar-back {
    flex: 0 0 60px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2px 0 0;
    background: #95190F;
    color: #fff;
    font-size: 22px;
}

.material-topbar .material-topbar-title {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0 0 2px 30px;
    font-family: Oswald, Lato;
    font-size: 18px;
    line-height: 1em;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
}

.material-topbar .material-topbar-logo {
    display: flex;
    align-items: center;
    position: absolute;
    height: 100%;
    width: 126px;
    top: 0;
    left: 50%;
    margin-left: -63px;
    font-size: 36px;
    color: #fff;
}

.material-topbar .material-topbar-actions {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: auto;
}

.material-topbar .material-topbar-action {
    display: flex;
    position: relative;
    align-items: center;
    height: 100%;
    margin: 0 0 0 0;
    padding: 0 15px;
    background-color: rgba(0, 0, 0, 0);
    font-size: 16px; 
    color: #fff;
    cursor: pointer;
    transition: background-color 150ms linear, opacity 200ms linear;
}

.material-topbar .material-topbar-action::after {
    content: "";
    display: block; 
    position: absolute;
    top: 50%;
    left: 31px;
    width: 16px;
    height: 16px;
    margin-top: -17px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg id='Group_113' data-name='Group 113' transform='translate(-1031 -11)'%3E%3Ccircle id='Ellipse_47' data-name='Ellipse 47' cx='8' cy='8' r='8' transform='translate(1031 11)' fill='%23fff'/%3E%3Cpath id='Path_160' data-name='Path 160' d='M1.8-7.346H2.9l1.151-7.2H.887ZM.828-4.882H3.833V-6.7H.828Z' transform='translate(1036.711 28.713)' fill='%231f1f1f'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transform: scale(0);
    opacity: 0;
    transition: transform 200ms ease, opacity 200ms ease;
    z-index: 1;
}

.material-topbar .material-topbar-action--notice::after {
    transform: scale(1);
    opacity: 1;
}

.material-topbar .material-topbar-action--disabled {
    opacity: 0.3;
    pointer-events: none;
}

.material-topbar .material-topbar-action:hover {
    background-color: #B51C10;
}

.material-topbar .material-topbar-action i {
    display: block;
    margin: 4px 12px 0 0;
    font-size: 25px;
}

.material-topbar .material-topbar-action-dropdown {
    display: block;
    position: absolute;
    width: 362px;
    top: 100%;
    left: 0;
    padding: 30px 0 0 0;
    transform: translateY(-20px);
    opacity: 0; 
    pointer-events: none;
    transition: transform 300ms ease, opacity 300ms ease;
}

.material-topbar .material-topbar-action-dropdown a {
    color: #1F1F1F;
    transition: color 150ms linear;
}

.material-topbar .material-topbar-action-dropdown a:hover {
    color: #DA291C;
}

.material-topbar .material-topbar-action-dropdown--right {
    left: auto;
    right: 0; 
}

.material-topbar .material-topbar-action:hover .material-topbar-action-dropdown {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.material-topbar .material-topbar-action-dropdown__content {
    padding: 30px 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
    color: #1F1F1F;
    font-family: Lato, sans-serif;
    font-size: 16px;
    line-height: 1.4;
}

.material-topbar .material-topbar-action--share .material-topbar-action-dropdown__content {
    font-size: 14px;
}

.material-topbar .material-topbar-action-dropdown__title {
    display: block;
    margin: 0 0 25px;
    padding: 0 30px;
    font-family: Oswald, Lato, sans-serif;
    font-size: 30px;
    font-weight: 500;
}

.material-topbar .material-topbar-action-dropdown__group {
    padding: 10px 30px;
}

.material-topbar .material-topbar-action-dropdown__group--bg {
    padding-top: 20px;
    padding-bottom: 20px;
    background: #F5F5F5;
}

.material-topbar .material-topbar-action-dropdown__group:not(:last-child) {
    margin-bottom: 20px;
}

.material-topbar .material-topbar-action-dropdown__group-title {
    display: block;
    margin: 0 0 15px 0;
    font-family: Oswald, Lato, sans-serif;
    font-weight: 500;
    font-size: 18px;
}

.material-topbar .material-topbar-action--share .material-topbar-action-dropdown__group-title {
    margin-bottom: 12px;
}

.material-topbar .material-topbar-action-dropdown__group-title--small {
    font-size: 16px;
} 

.material-topbar .material-topbar-action--share .material-topbar-action-dropdown__group-title {
    font-size: 16px;
}

.material-topbar .material-topbar-action-dropdown__list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
}

.material-topbar .material-topbar-action-dropdown__list-item {
    display: flex;
    padding: 8px 30px 12px;
    transition: color 150ms linear;
}

.material-topbar .material-topbar-action-dropdown__list-item-icon {
    display: block;
    width: 22.5px;
    height: 22.5px;
    margin: 0 15px 0 0;
}

.material-topbar .material-topbar-action-dropdown__button {
    display: inline-block;
    position: relative;
    margin: 14px 0;
    padding: 8px 15px 10px;
    background: #DA291C;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    line-height: 15px;
    font-family: Lato, sans-serif;
    transition: background-color 150ms linear;
    cursor: pointer;
}

.material-topbar .material-topbar-action-dropdown__button:first-child {
    margin-top: 0;
}

.material-topbar .material-topbar-action-dropdown__button:last-child {
    margin-bottom: 0;
}

.material-topbar .material-topbar-action-dropdown__button--icon {
    padding-left: 35px;
}

.material-topbar .material-topbar-action-dropdown__button:hover {
    background-color: #B51C10;
}

.material-topbar  .material-topbar-action-dropdown__button--copied {
    pointer-events: none;
}

.material-topbar .material-topbar-action-dropdown__button-icon {
    position: absolute;
    display: block;
    left: 12px;
    top: 50%;
    width: 12px;
    height: 15px;
    margin: -7px 12px 0 0;
}

.material-topbar  .material-topbar-action-dropdown__button--copy .material-topbar-action-dropdown__button-icon {
    transform: scale(1);
    transition: transform 200ms ease, opacity 200ms ease;
}

.material-topbar .material-topbar-action-dropdown__button-icon--copied {
    width: 13px;
    height: 16px;
    opacity: 0;
    transform: scale(0);
    transition: transform 200ms ease 100ms, opacity 200ms ease 100ms;
}

.material-topbar .material-topbar-action-dropdown__button--copied .material-topbar-action-dropdown__button-icon--copied {
    opacity: 1;
    transform: scale(1); 
}

.material-topbar .material-topbar-action-dropdown__button--copied .material-topbar-action-dropdown__button-icon:not(.material-topbar-action-dropdown__button-icon--copied) {
    opacity: 0;
    transform: scale(0);
}

.material-topbar .material-topbar-action--share #material-link,
.material-topbar .material-topbar-action--share #material-slide-link {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #1F1F1F;
    transition: color 150ms linear;
}

.material-topbar .material-topbar-action--share #material-link:hover,
.material-topbar .material-topbar-action--share #material-slide-link:hover {
    color: #DA291C;
}

@media only screen and (max-width: 1050px) {
    .material-topbar {
        padding-right: 10px;
    }

    .material-topbar .material-topbar-action {
        padding: 0 10px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 980px) {
    .material-topbar .material-topbar-action {
        width: 35px;
        margin-left: 5px;
        padding: 0;
        overflow: hidden;
    }

    .material-topbar .material-topbar-action::after {
        left: 17px;
    }
}

@media (max-width: 767px) {
    .material-topbar .material-topbar-title {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 45px;
        padding-left: 20px;
        background: #ffffff;
        border-bottom: 2px solid rgba(0, 0, 0, 0.1);
        color: #000;
        line-height: 42px;
    }
}

