.info-icon img {
    max-width: 150px;
    display: block;
    margin: 0 auto;
    position: relative;
    left: 0;
    right: 0;
    top: -100px;
}
.ctm-btn {
    background-color: #50abed;
    padding: 15px 50px !important;
    border-radius: 100px;
}
.ctm-btn:hover {
    color: white;
    background-color: #4689cc;
    text-decoration: none;
}
.btn {
    padding: 20px 50px;
    display: inline-block;

    color: white;
    text-decoration: none;
    transition: 0.35s ease-in-out;
    font-weight: 700;
}
.btn:hover {
}

.overlay {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s ease-in-out;
    max-height: 100vh;
    overflow-y: auto;
}
.overlay.open {
    opacity: 1;
    pointer-events: inherit;
}
.overlay .modal {
    background: white;
    text-align: center;
    padding: 40px 80px;
    box-shadow: 0px 1px 10px rgba(255, 255, 255, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s ease-in-out;
    max-height: 100vh;
    max-width: 500px;
    border-radius: 20px;
}
.overlay .modal.open {
    opacity: 1;
    pointer-events: inherit;
}
.overlay .modal.open .content {
    transform: translate(0, 0px);
    opacity: 1;
}
.overlay .modal .content {
    transform: translate(0, -10px);
    opacity: 0;
    transition: 0.35s ease-in-out;
}
.overlay .modal .title {
    margin-top: 0;
    margin-bottom: 10px;
}
.overlay .modal p {
    margin-bottom: 20px;
}
.overlay .modal .title {
    margin-top: -80px;
    margin-bottom: 24px;
    font-size: 30px;
    font-weight: 600;
    padding-top: 0;
}
/*********** Stylize Button **********************************/
.ctm-btn:visited {
    color: white;
    text-decoration: none;
}
.button {
    display: inline-block;
    font-size: 1.15em;
    position: relative;
    text-align: center;
    padding: 0.5em 1em;
    background: linear-gradient(45deg, #50abed, #5ba4f0);
    color: #fff;
    box-shadow: 0 0.2em 0.2em rgb(96 124 225 / 30%);
    border-radius: 0.2em;
    transition: box-shadow 0.2s ease-in-out;
    cursor: pointer;
    border-radius: 40px;
}
.button:active {
    background-color: #ccc;
    box-shadow: 0 0 6px rgba(0, 121, 238, 0.6);
    transition: box-shadow 0.1s ease-in-out;
}
.button:after {
    content: "\0021e7";
    position: absolute;
    top: -0.4em;
    left: 0;
    right: 0;
    display: block;
    transform: rotate(180deg);
    font-size: 5em;
    opacity: 0;
    text-shadow: 0 0 1em #000;
    transition: opacity 0.3s ease-in-out, font-size 0.3s ease-in-out, top 0.3s ease-in-out;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
}
.button:active:after {
    font-size: 1em;
    opacity: 1;
    transition: none;
    top: 0.3em;
}
.button:hover {
    box-shadow: 0 0.1em 0.25em rgba(0, 0, 0, 0.25);
}
/************************** Download Popup**************************************************/
#pcUrl .icon-download {
    display: none;
}

a.btn.open-modal {
    width: 100% !important;
    height: 100% !important;
    padding-top: 70%;
    background: transparent !important;
    font-weight: 400 !important;
}
/********** Added Code *****************************************/
.download {
    flex-wrap: wrap;
    margin-bottom: 200px;
}
.download .item {
    position: relative;
    background-color: #fff;
    margin: 20px 4px;
    padding: 5px;
    min-height: 380px;
    flex: 1;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    font-size: 13px;
    color: rgba(18, 15, 44, 0.5);
}
.download .item a {
    color: rgba(18, 15, 44, 0.5);
    width: 66px;
    height: 66px;
    background: #ececed;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
}
.download .item a span {
    font-size: 37px;
    line-height: 66px;
}
.download .item .platform {
    margin-top: 40px;
    width: 190px;
    height: 190px;
}

.download .item .title {
    font-size: 17px;
    color: #2c3340;
    margin-top: 20px;
    margin-bottom: 15px;
}

.download .item a p {
    text-align: center;
    line-height: 1.5;
}
.download .mask {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    background: rgba(18, 15, 44, 0.5);
    transition: all 0.3s;
}

.download .qr-code canvas {
    margin-top: 18px;
}
.download .mask img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 66px;
    height: 66px;
    transition: all 0.3s;
}
.download .common .mask p {
    font-size: 20px;
    margin-top: 40px;
    color: #fff;
}

.first-download {
    font-size: 17px !important;
}

@media (min-width: 992px) {
    .download .common:hover .mask {
        display: flex;
        height: 100%;
    }
}
@media (max-width: 1200px) {
    .download .item {
        flex: 0 0 30%;
    }
}
@media (max-width: 992px) {
    .download .item {
        flex: 0 0 40%;
    }
}
@media (max-width: 768px) {
    .download .item {
        flex: 0 0 47%;
    }

    .top .left {
        display: flex;
        flex-direction: column;
    }

    .top .left a {
        padding: 10px 0;
    }
}
