
a.floater {
    display: block;
    width: 105px;
    font-size: 15px;
    height: 15px;
    background-color: rgb(229, 57, 53);
    border: none;
    padding-top: 10px;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    color: white;
    position: fixed;
    right: 10px;
    border-radius: 100px;
    z-index: 999;
    transition: all 0.2s ease;
}

a.floater:hover {
    animation: floater 1000ms linear infinite;
}

div.col_content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
}

.office {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.73);
    cursor: pointer;
    z-index: 9999;
}

.office div.o__body {
    background-color: #fff;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: auto;
    padding: 20px;
    border-radius: 7px;
    max-height: 85%;
}

.office div.o__body h2{
    font-weight: bold;
    text-align:center;
}

.office__chd {
    transition: all 0.3s ease;
    width: 100%;
    height: 500px;
    overflow-y: auto;
}

.addbody {
    width: 100%;
    margin: 0;
    padding: 0;
}

.addbody h4{
    font-weight: bold;
}

.addbody:not(:first-child){
    margin-top: 10px;
}

.addbody:not(:last-child) {
    border-bottom: 1px solid rgb(229, 57, 53);
}


.addbody p strong {
    display: block;
}


.tracking-detail {
    padding: 3rem 0
}

#tracking {
    margin-bottom: 1rem;
}

.tracking-list {
    border: 1px solid #e5e5e5
}

.tracking-item {
    border-left: 1px solid #e5e5e5;
    position: relative;
    padding: 2rem 1.5rem .5rem 2.5rem;
    font-size: .9rem;
    margin-left: 3rem;
    min-height: 5rem
}

.tracking-item:last-child {
    padding-bottom: 4rem
}

.tracking-item .tracking-date {
    margin-bottom: .5rem
}

.tracking-item .tracking-date span {
    color: #888;
    font-size: 85%;
    padding-left: .4rem
}

.tracking-item .tracking-content {
    padding: .5rem .8rem;
    background-color: #f4f4f4;
    border-radius: .5rem
}

.tracking-item .tracking-content span {
    display: block;
    color: #888;
    font-size: 85%
}

.tracking-item .tracking-icon {
    line-height: 2.6rem;
    position: absolute;
    left: -1.3rem;
    width: 2.6rem;
    height: 2.6rem;
    text-align: center;
    border-radius: 50%;
    font-size: 1.1rem;
    background-color: #fff;
    color: #fff
}

.tracking-item .tracking-icon.status {
    color: #e5e5e5;
    border: 1px solid #e5e5e5;
    font-size: 1.5rem;
    background: #e53935;
}

@media(min-width:992px) {
    .tracking-item {
        margin-left: 10rem
    }

    .tracking-item .tracking-date {
        position: absolute;
        left: -10rem;
        width: 7.5rem;
        text-align: right
    }

    .tracking-item .tracking-date span {
        display: block
    }

    .tracking-item .tracking-content {
        padding: 0;
        background-color: transparent
    }
}

input.chip {
    display: none;
}

input.chip+label {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-size: 10px;
    cursor: pointer;
    border-radius: 50px;
    background-color: #fff;
    border: solid 2px #7d7d7d;
    padding: 0.5rem 1rem;
    display: inline-block;
    -moz-user-select: -moz-none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 1px 2px 3px 2px;
    background-color: beige;
}


input.chip:checked+label {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: rgb(229, 57, 53);
    color: white;
    border-color: #fc6c27;
}

.chip {
    display: inline-block;
    padding: 0 25px;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
    border-radius: 25px;
    background-color: #f1f1f1;
    margin: 5px 1px 1px 5px;
}