﻿.upcomming-page {
    padding-top: 100px;
    padding-bottom: 70px;
    font-weight: 400;
    line-height: 28px;
    color: #5e6e7d;
}

.top-row {
    display: flex;
    align-items: flex-end;
    margin: 0px;
    /*padding: 10px 0px;*/
    padding: 15px 0px;
    width: 100%;
    color: #FFFFFF;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    background-image: linear-gradient(0deg, #0ca7d5 0%, #223A9E 100%);
}
.drop-button {
    border: none;
    border-radius: 0;
    box-shadow: none;
    width: 25vw;
    float: right;
    color: #223A9E;
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
    padding: 5px 30px;
    background: white;
    /*margin-bottom: 15px;*/
    border-radius: 15px;
    display: inline-block;
    box-shadow: 3px 3px 30px rgba(118, 96, 168, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    /*height: 150px;*/
}

    .drop-button:hover {
        color: #223A9E;
        outline: none;
        transform: translateY(3px);
        box-shadow: 3px 3px 30px rgba(118, 96, 168, 0.17);
    }


    .drop-button option {
        height: 150px; color: #5e6e7d;
    }

tr:nth-child(even) {
    color: black;
    font-weight: 500;
    background: linear-gradient(272deg,#fcc38c 0,#aab5fb 100%);
    /*box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .16);*/
}

tr:nth-child(odd) {
    color: black;
    font-weight: 500;
    background: linear-gradient(272deg,#fcc38c 0,#aab5fb 100%);
    /*background: linear-gradient(90deg,#fcc38c 0,#aab5fb 100%);*/
}
.up-coming-txt {
    display: flex;
}
.dd-mid-row {
    display: flex;
}



/*FOR TABLET DEVICE*/
@media only screen and (max-width:768px) {
    .up-coming-txt {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }

    .top-row {
        text-align: center;
    }
    .drop-button {
        float: none;
        width: -webkit-fill-available;
    }
}

