@import "variables.scss"; .wtotem { &_layout { background: #e5e5e5; } &_alert { } } .wtotem_alert { padding: 17px 22px; display: flex; justify-content: space-between; align-items: center; background: #fff; border-radius: 4px; margin-bottom: 30px; &__desc { display: flex; align-items: center; } &__img { margin-right: 5px; display: flex; align-items: center; justify-content: center; &_cross { width: 16px; height: 16px; border-radius: 100px; display: flex; align-items: center; justify-content: center; background: #ee3f3f; &:before { content: ""; position: absolute; display: block; width: 8px; height: 1.3px; border-radius: 1px; transform: rotate(45deg); background: #fff; } &:after { content: ""; position: absolute; display: block; width: 8px; height: 1.3px; border-radius: 1px; transform: rotate(-45deg); background: #fff; } } } &__title { font-size: 12px; text-transform: uppercase; &_yellow { color: #f5c451; } &_green { color: #4bc374; } &_red { color: #ee3f3f; } } &__text { color: #1d293f; font-size: 12px; } &__close { position: relative; width: 10px; height: 10px; display: flex; justify-self: center; align-items: center; cursor: pointer; &:before { content: ""; position: absolute; display: block; width: 10px; height: 2px; border-radius: 1px; transform: rotate(45deg); background: #000; } &:after { content: ""; position: absolute; display: block; width: 10px; height: 2px; border-radius: 1px; transform: rotate(-45deg); background: #000; } } } /* 576-768px sm Small */ @media screen and (max-width: 768px) { .wtotem_alert { margin-bottom: 20px; } } /* 320-576px Extra small */ @media screen and (max-width: 576px) { }