.bestrates{
    float: left;
    position: fixed;
    right: 0;
    bottom: 120px;
    z-index: 100;
}
    .bestrates_opener{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 40px;
        padding: 15px 0;
        border-radius: 5px 0 0 5px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
        background: #916b74;
        position: absolute;
        right: 0;
        bottom: 0;
        cursor: pointer;
        transition: right .3s ease-in-out;
        z-index: 1;
    }
    .bestrates.active .bestrates_opener{
        right: -60px;
    }
        .bestrates_opener-label{
            float: left;
            color: #ffffff;
            font-size: 14px;
            text-transform: uppercase;
            writing-mode: vertical-lr;
            transform: scale(-1);
        }
    .bestrates_panel{
        display: flex;
        flex-direction: column;
        float: left;
        width: 300px;
        border-radius: 5px 0 0 5px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
        background: #ffffff;
        position: absolute;
        right: -360px;
        bottom: 0;
        transition: right .3s ease-in-out;
        z-index: 2;
    }
    .bestrates.active .bestrates_panel{
        right: 0;
    }
        .bestrates_date{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            float: left;
            width: 50px;
            height: 50px;
            border-radius: 5px;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
            background: #916b74;
            color: #ffffff;
            font-weight: bold;
            position: absolute;
            left: -55px;
            top: 0;
            cursor: default;
        }
            .bestrates_date-day{
                float: left;
                margin-bottom: 5px;
                line-height: 16px;
                font-size: 18px;
            }
            .bestrates_date-month{
                float: left;
                line-height: 10px;
                font-size: 12px;
                text-transform: uppercase;
            }
        .bestrates_official{
            display: flex;
            flex-direction: row;
            align-items: center;
            float: left;
            height: 50px;
            padding: 0 15px;
            border-radius: 5px 0 0 0;
            background: #916b74;
        }
            .bestrates_official-title{
                flex-grow: 1;
                display: flex;
                flex-direction: column;
                float: left;
                margin-right: 10px;
            }
                .bestrates_official-title-headline{
                    float: left;
                    color: #ffffff;
                    font-size: 16px;
                    text-transform: uppercase;
                }
                .bestrates_official-title-baseline{
                    float: left;
                    color: rgba(255, 255, 255, 0.7);
                    font-size: 12px;
                    text-transform: uppercase;
                }
            .bestrates_official-rate{
                flex-shrink: 0;
                float: left;
                color: #ffffff;
                font-size: 28px;
            }
        .bestrates_otas{
            display: flex;
            flex-direction: column;
            float: left;
            padding: 10px 15px;
            color: #42403e;
        }
            .bestrates_ota{
                display: flex;
                flex-direction: row;
                float: left;
                margin-bottom: 5px;
            }
            .bestrates_ota:last-child{
                margin-bottom: 0;
            }
                .bestrates_ota-title{
                    flex-grow: 1;
                    float: left;
                    margin-right: 10px;
                    font-size: 14px;
                }
                .bestrates_ota-rate{
                    flex-shrink: 0;
                    float: left;
                    font-weight: bold;
                    font-size: 16px;
                }
        .bestrates_copyright{
            float: left;
            width: 100%;
            padding: 10px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 0 0 0 5px;
            color: rgba(0, 0, 0, 0.5);
            font-size: 12px;
            text-align: center;
        }

@media (max-width: 360px) {

	.bestrates_date{
		display: none;
	}

}