@import url(./variables.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    height: 100vh;
    background-color: var(--bg-primary-color);
    overflow: hidden;
}

.container {
    max-width: 1000px;
    margin: 0px auto;
    width: 95%;
    /* padding-bottom: 8vh; */
}
/* home page design  */

.main_container {
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 100%;*/
    width: 100%;
    /* height: 100vh; */
    /* padding: 50px 0; */
    margin: auto 0;
}

.home_sec {
    width: 100%;
    /*max-width: 530px;*/
    min-height: 100vh;
    margin: 0 auto;
    border-radius: var(--md-border-radius);
    /* background-color: var(--bg-secondary-color); */
    background: url("../Assets/Images/Mainbg.jpg");
    display: flex;
    flex-direction: column;
}

.mid_div .container {
    flex: 1;
}

.home_sec .top_div {
    --bg-primary-color: rgba(0, 0, 0, 0.5);
    display: flex;
    color: var(--white-color);
    background-color: var(--bg-primary-color);
}

.top_div {
    height: 97px;
}

    .top_div div {
        flex: 0 0 50%;
    }

.top_left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.top_right {
    padding: 20px;
    border-left: 2px solid #191c21;
}

.top_div p {
    font-size: calc(10px + 4 * ((100vw - 320px) / 680));
    font-weight: var(--regular-weight);
}

    .top_div p span {
        font-size: calc(15px + 6 * ((100vw - 320px) / 680));
        font-weight: var(--bold-weight);
    }

    .top_div p:nth-of-type(2) {
        text-align: right;
    }

        .top_div p:nth-of-type(2) img {
            width: 25%;
            height: auto;
        }

        .top_div p:nth-of-type(2) span {
            font-size: calc(16px + 10 * ((100vw - 320px) / 680));
        }

.mid_div {
    padding-top: 3vh;
    flex: 1;
    display: flex;
    height: calc(100vh - 97px);
}

    .mid_div h3 {
        text-align: center;
        color: var(--white-color);
        font-weight: var(--bold-weight);
        font-size: calc(16px + 2 * ((100vw - 320px) / 680));
        padding-bottom: 10px;
    }

        .mid_div h3 span {
            font-weight: var(--regular-weight);
        }

.action_div {
    text-align: center;
}

    .action_div .btn_div {
        margin-top: 3vh;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

.action_btn {
    flex-direction: column;
    -ms-flex-direction: column;
    justify-content: space-between !important;
    padding: 6vh 1vw 2vh;
    height: 20vh;
}

    .action_btn img {
        display: block;
        max-width: 24%;
    }

    .action_btn span {
        margin-top: 5%;
        display: inherit;
        font-size: calc(13px + 2 * ((100vw - 320px) / 680));
    }

    .action_btn .right_arrow {
        width: 20px;
        height: 20px;
        margin-top: 2vh;
    }

.call_btn {
    height: 50px;
    padding-left: 2%;
    padding-right: 2%;
}

    .call_btn img {
        width: 16px;
        height: 16px;
        margin-right: 10px;
    }

.action_btn,
.call_btn {
    width: 43vw;
    border-radius: var(--md-border-radius);
    background-color: var(--bg-secondary-color);
    color: var(--white-color);
    font-size: calc(13px + 2 * ((100vw - 320px) / 680));
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    -ms-flex-item-align: center;
    text-decoration: none;
    margin: 0px 2vw;
    max-height: 20vh;
    max-width: 260px;
}

    .action_btn:hover,
    .call_btn:hover {
        box-shadow: unset;
        background-color: var(--bg-primary-color);
    }

.bottom_logo {
    width: 15%;
    position: absolute;
    bottom: 3vh;
    left: 50%;
    transform: translateX(-50%);
    max-width: 70px;
}

.mid_div .container h3 .logo {
    max-width: 150px;
    display: block;
    margin: 0 auto 10px;
    height: 14vh;
    max-height: 200px;
}
/* pin screen dessign */
.custom_input {
    background: #111315;
    color: var(--white-color);
    padding: 10px;
    text-align: center;
    border: unset;
    border-radius: var(--sm-border-radius);
    font-size: calc(14px + 3 * ((100vw - 320px) / 680));
    font-weight: var(--medium-weight);
    text-transform: uppercase;
    border: solid 1px #262b31;
    font-weight: 700;
}

    .custom_input:focus {
        outline: unset;
    }

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--white-color);
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--white-color);
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--white-color);
}

.blurBg {
    filter: blur(8px);
    -webkit-filter: blur(8px);
}

.input_div {
    margin: 4vh auto 7vh auto;
    display: flex;
    flex-direction: column;
}

    .input_div a {
        background-color: var(--bg-secondary-color);
        border-radius: var(--sm-border-radius);
        margin-right: 15px;
        padding: 5px 10px;
        display: inline-block;
        vertical-align: middle;
        transition: 0.3s;
        -webkit-box-shadow: var(--box-shadow);
        box-shadow: var(--box-shadow);
    }

.unlockInput:focus {
    border-color: #7bdb67;
}

.input_div a:hover {
    box-shadow: unset;
    background-color: var(--bg-primary-color);
}

.input_div p {
    color: var(--white-color);
    font-size: calc(16px + 2 * ((100vw - 320px) / 680));
    text-align: center;
}

.phoneInput {
    max-width: 300px;
    width: 64vw;
    margin: 7vh auto 2%;
}

.input_div img {
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 15px;
    height: auto;
}

.tab_list {
    display: flex;
    white-space: nowrap;
    list-style: none;
    justify-content: space-between;
    border-bottom: 1px solid #3f4144;
    margin: 0px 5px 2vh;
}

    .tab_list li {
        padding-bottom: 15px;
        position: relative;
    }

        .tab_list li a {
            color: var(--white-color);
            text-decoration: none;
            font-size: calc(13px + 3 * ((100vw - 320px) / 680));
            font-weight: 500;
        }

            .tab_list li a.active {
                color: var(--yellow-color);
            }

    .tab_list a.active::before {
        content: "";
        border-bottom: 5px solid var(--yellow-color);
        position: absolute;
        bottom: -3px;
        left: 0;
        right: 0;
        margin: auto;
        width: 55px;
        border-radius: var(--md-border-radius);
    }

.pin_div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: var(--md-border-radius);
    margin: 0 auto;
    max-width: 300px;
    padding: 0px;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    background: #1d2226;
    border: solid 1px #393939;
    overflow: hidden;
    width: 64vw;
}

    .pin_div .row {
        width: 100%;
        display: flex;
        border-bottom: solid 1px #393939;
    }

        .pin_div .row:last-child, .pin_div .row button:last-child {
            border: none;
        }

        .pin_div .row button {
            --bg-secondary-color: #1d2226;
            border: unset;
            background-color: var(--bg-secondary-color);
            color: var(--white-color);
            height: 9vh;
            flex: 1;
            font-size: calc(17px + 4 * ((100vw - 320px) / 680));
            font-weight: var(--bold-weight);
            border-right: solid 1px #393939;
            cursor: pointer;
            transition: all ease 0.4s;
        }

            .pin_div .row button img {
                width: 32%;
                height: auto;
                margin: 5px 0;
            }

            .pin_div .row button:hover {
                background-color: var(--bg-primary-color);
                transition: all ease 0.4s;
            }

        .pin_div .row .img_btn {
            display: inline-flex;
            align-items: center;
            flex-direction: column;
            justify-content: center;
            font-size: calc(12px + 2 * ((100vw - 320px) / 680));
        }

        .pin_div .row .call_img img {
            width: 22%;
            margin: 10px 0;
        }

/* directory section */
.directory_sec {
    margin: 0 2%;
}

    .directory_sec .search {
        width: 100%;
        position: relative;
        display: flex;
    }

.search .search_icon,
.cross_icon {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 18px;
    height: 18px;
    transition: 0.2s;
}

.search .search_icon {
    left: 15px;
}

.search .cross_icon {
    display: none;
    right: 15px;
}
/*.search input:focus ~ .cross_icon {
  display: block;
}*/
.search input:focus ~ .search_icon {
    display: none;
}

.search input:focus ~ .cross_icon {
    display: block;
}

.search_input {
    width: 100%;
    background-color: var(--primary-color);
    border: unset;
    border-right: none;
    padding: 2vh 45px;
    border-radius: var(--sm-border-radius);
    outline: none;
    color: var(--secondary-color);
    border: solid 1px #262b31;
    color: #fff;
    font-weight: 600;
    font-size: calc(14px + 3 * ((100vw - 320px) / 680));
}

input::placeholder {
    color: var(--white-color);
}

.search_input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--secondary-color);
    opacity: 1; /* Firefox */
}

.search_input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--secondary-color);
}

.search_input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--secondary-color);
}

.phone_book {
    display: flex;
    margin: 2vh 0 0;
}

    .phone_book ul li {
        list-style: none;
    }

        .phone_book ul li a {
            color: var(--white-color);
            font-size: calc(11px + 2 * ((100vw - 320px) / 680));
            font-weight: var(--medium-weight);
            text-decoration: none;
        }

.contacts {
    height: 56vh;
}

    .contacts .pb_right ul li {
        border-bottom: solid 1px #3a3d41;
        transition: all ease 0.4s;
    }

        .contacts .pb_right ul li:hover, .contacts .pb_right ul li.active, .contacts .pb_right ul li:active, .contacts .pb_right ul li:focus {
            border-bottom: none;
            transition: all ease 0.4s;
        }

        .contacts .pb_right ul li:last-child {
            border-bottom: none;
        }

.pb_right ul span {
    display: inherit;
    padding: 1vh 0;
}

.pb_left {
    flex-grow: 1;
}

    .pb_left ul {
        max-width: 50px;
        width: 10vw;
        border-radius: var(--md-border-radius);
        text-align: center;
        -webkit-box-shadow: var(--box-shadow);
        box-shadow: var(--box-shadow);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

        .pb_left ul li a {
            padding: 16% 10px;
            display: inherit;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .pb_left ul li {
            flex: 1;
        }

            .pb_left ul li:hover,
            .pb_left ul li.active {
                background: var(--bg-primary-color);
            }

            .pb_left ul li:first-child {
                border-radius: 15px 15px 0 0;
            }

            .pb_left ul li:last-child {
                border-radius: 0 0 15px 15px;
            }

                .pb_left ul li:last-child img {
                    width: 15px;
                    height: 15px;
                }

.pb_right {
    flex-grow: 10;
    overflow: auto;
}

    .pb_right p {
        color: var(--white-color);
        font-size: calc(14px + 2 * ((100vw - 320px) / 680));
        font-weight: var(--medium-weight);
        margin-bottom: 1vh;
    }

    .pb_right ul {
        color: var(--yellow-color);
        font-size: calc(11px + 2 * ((100vw - 320px) / 680));
        font-weight: var(--medium-weight);
        margin: 0 5% 0 0;
    }

        .pb_right ul li {
            padding: 15px 0px;
            margin-bottom: 1%;
            transition: 0.3s;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 6vh;
        }

            .pb_right ul li span {
                display: none;
                background-color: var(--primary-color);
                color: var(--white-color);
                transition: 0.3s;
                position: absolute;
                right: 4%;
                padding: 8px;
                font-size: calc(11px + 2 * ((100vw - 320px) / 680));
                top: 50%;
                transform: translate(0, -50%);
                width: 25%;
                min-width: 80px;
                border-radius: 100px;
                cursor: pointer;
                max-width: 95px;
                border: solid 1px #262b31;
            }

                .pb_right ul li span img {
                    margin-right: 10%;
                    width: 22%;
                }

            .pb_right ul li:hover span,
            .pb_right ul li.active span {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            .pb_right ul li:hover,
            .pb_right ul li.active {
                content: "";
                padding-left: 15px;
                border-radius: var(--md-border-radius);
                -webkit-box-shadow: var(--box-shadow);
                box-shadow: var(--box-shadow);
                background: var(--bg-secondary-color);
            }

    .pb_right::-webkit-scrollbar {
        width: 20px;
    }

    .pb_right::-webkit-scrollbar-track {
        background-color: transparent;
    }

    .pb_right::-webkit-scrollbar-thumb {
        --white-color: #d6dee1;
        border-radius: 20px;
        border: 20px solid #000;
        background-clip: content-box;
        box-shadow: -7px 0px 5px 0px rgb(42 46 52);
        -webkit-box-shadow: -7px 0px 5px 0px rgb(42 46 52);
        -moz-box-shadow: -7px 0px 5px 0px rgb(42 46 52);
    }

        .pb_right::-webkit-scrollbar-thumb:hover {
            --white-color: #a8bbbf;
            background-color: #000;
        }

/* key board section */

.keyboard_div {
    --md-font-size: 15px;
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-radius: var(--sm-border-radius);
    margin-top: 2vh;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    background: #1d2226;
}

    .keyboard_div .row_2,
    .row_3,
    .row_4 {
        margin-right: 15%;
    }


    .keyboard_div .row_3 img {
        width: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .keyboard_div .row_3 .clear_btn {
        width: 13%;
    }

    .keyboard_div ul {
        display: flex;
        list-style: none;
        text-decoration: none;
        justify-content: space-between;
    }

        .keyboard_div ul li {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 5px;
        }

            .keyboard_div ul li a:hover {
                background-color: var(--dark-color);
            }

            .keyboard_div ul li a {
                text-decoration: none;
                color: var(--white-color);
                text-transform: uppercase;
                font-size: calc(11px + 3 * ((100vw - 320px) / 680));
                font-weight: 600;
                flex: 1;
                text-align: center;
                padding: 4px;
                background-color: var(--primary-color);
                border: 1px solid #2c3135;
                border-radius: 5px;
                display: flex;
                justify-content: center;
                align-items: center;
                height: 5vh;
                max-height: 40px;
            }

    .keyboard_div .row_4 li {
        width: 100%;
    }

        .keyboard_div .row_4 li a {
            font-size: calc(11px + 2 * ((100vw - 320px) / 680));
        }

    .keyboard_div ul .close a {
        --primary-color: transparent;
        background-color: var(--primary-color);
        border: 1px solid transparent;
        margin-left: 2vw;
    }

        .keyboard_div ul .close a:hover {
            --primary-color: transparent;
            background-color: var(--primary-color);
        }

ul.row_1 {
    padding-right: 11px;
}

ul.row_2 {
    padding: 0 10px;
}

.search_list .pb_right {
    padding-top: 0;
}

    .search_list .pb_right ul {
        padding: 0 20% 0 1%;
        color: var(--white-color);
        font-size: var(--sm-font-size);
        height: 28vh;
        overflow: auto;
    }

        .search_list .pb_right ul li:last-child {
            border-bottom: solid 1px #3a3d41;
        }

            .search_list .pb_right ul li:last-child:hover {
                border: none;
            }

        .search_list ul li a,
        .search_list .pb_right ul li span {
            font-size: calc(11px + 2 * ((100vw - 320px) / 680));
        }

/* caller screen design */
.call_screen {
    text-align: center;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90vh;
    font-weight: var(--medium-weight);
}

    .call_screen h2 {
        padding-bottom: 7vh;
    }

.call-animation {
    --secondary-color: #22272b;
    --white-color: rgba(255, 255, 255, 0.3);
    background: var(--secondary-color);
    width: 135px;
    height: 135px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border-radius: 100%;
    border: solid 1px var(--white-color);
    animation: play 2s ease infinite;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}

.call_screen .call-animation img {
    width: 50px;
    height: 50px;
}


/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(31,37,41,0.4); /* Black w/ opacity */
    /* filter: blur(8px);
  -webkit-filter: blur(8px); */
}

    /* Modal Content */
    .modal .modal-content {
        background-color: #fefefe;
        margin: auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
    }

    /* The Close Button */
    .modal .close {
        color: #aaaaaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
    }

        .modal .close:hover,
        .modal .close:focus {
            color: #000;
            text-decoration: none;
            cursor: pointer;
        }

@keyframes play {
    0% {
        transform: scale(1);
    }

    15% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.4);
    }

    25% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0.4), 0 0 0 25px rgba(0, 0, 0, 0.2);
    }

    25% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.4), 0 0 0 35px rgba(0, 0, 0, 0.2);
    }
}

.call_screen a {
    background-color: var(--danger-color);
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 7vh auto 0;
    cursor: pointer;
}

    .call_screen a:hover {
        --danger-color: rgba(233, 59, 24, 0.5);
        background-color: var(--danger-color);
    }

    .call_screen a img {
        width: 20px;
        height: 20px;
        transform: rotate(135deg);
    }

@media(max-width:1024px) {
    .pin_div, .phoneInput {
        max-width: 250px;
    }

    .pb_left ul li:last-child img {
        width: 11px;
        height: 11px;
    }

    .keyboard_div .row_3 img {
        width: 13px;
    }

    .action_btn, .call_btn {
        max-width: 225px;
    }

    .keyboard_div ul li {
        padding: 3px;
    }

    .keyboard_div {
        padding: 1%;
    }

    .pin_div .row .call_img img {
        margin: 1vh 0;
    }
}

@media(max-width:767px) {
    .input_div {
        margin: 4vh auto 5vh auto;
    }

    body {
        overflow: auto;
    }

    .input_div.phoneInput {
        margin: 5vh auto 2%;
    }
}

@media(max-width:480px) {
    .keyboard_div ul li a {
        min-width: 5vw;
        max-height: 4vh;
    }
}

@media(min-height:1600px) and (max-height:1920px) {
    .action_btn, .call_btn {
        max-height: 350px;
        max-width: 380px;
        width: 35vw;
        font-size: calc(18px + 2 * ((100vw - 320px) / 680));
    }

    .mid_div .container h3 .logo {
        margin: 0 auto 2vh;
    }

    .search .cross_icon {
        right: 4%;
        width: 3%;
        height: inherit;
    }

    .keyboard_div ul li a {
        font-size: calc(18px + 3 * ((100vw - 320px) / 680));
        max-height: 50px;
    }

    .pb_right p {
        font-size: calc(19px + 2 * ((100vw - 320px) / 680));
    }

    .keyboard_div .row_4 li a {
        font-size: calc(16px + 2 * ((100vw - 320px) / 680));
    }

    .pb_right ul li:hover, .pb_right ul li.active {
        border-radius: 20px;
    }

    .search .search_icon {
        left: 4%;
        width: 3%;
        height: inherit;
    }

    .pb_right ul {
        font-size: calc(18px + 2 * ((100vw - 320px) / 680));
    }

        .pb_right ul li {
            height: 5vh;
        }

            .pb_right ul li span, .search_list ul li a, .search_list .pb_right ul li span {
                padding: 9px 5px;
                max-width: inherit;
                font-size: calc(18px + 2 * ((100vw - 320px) / 680));
                width: 20%;
            }

    .pb_left ul li:last-child img {
        width: 20px;
        height: 20px;
    }

    .search_input {
        border-radius: 20px;
        font-size: calc(21px + 2 * ((100vw - 320px) / 680));
        padding: 2vh 7vw;
        height: 5vh;
        font-weight: 400;
    }

    .phone_book ul li a {
        font-size: calc(18px + 2 * ((100vw - 320px) / 680));
    }

    .pb_left ul {
        max-width: 60px;
    }

    .input_div {
        margin: 4vh auto 7vh auto;
    }

        .input_div a {
            padding: 10px 15px;
        }

        .input_div img {
            width: 18px;
        }

        .input_div p {
            font-size: calc(23px + 2 * ((100vw - 320px) / 680));
        }

    .top_div p span {
        font-size: calc(30px + 3 * ((100vw - 320px) / 680));
    }

    .call_btn {
        height: 4vh;
    }

        .call_btn img {
            width: 8%;
            height: auto;
            margin-right: 15px;
        }

    .mid_div {
        padding-top: 4vh;
    }

    .bottom_logo {
        max-width: 100px;
    }

    .top_right {
        padding: 30px 30px;
    }

    .top_div {
        height: 139px;
    }

    .mid_div {
        height: calc(100vh - 139px);
    }

        .mid_div h3 {
            font-size: calc(24px + 2 * ((100vw - 320px) / 680));
        }

    .top_div p {
        font-size: calc(14px + 4 * ((100vw - 320px) / 680));
    }

    .action_btn img {
        max-width: 30%;
    }

    .action_btn span {
        font-size: calc(18px + 2 * ((100vw - 320px) / 680));
    }

    .top_left {
        padding: 35px;
    }

    .top_div p:nth-of-type(2) span {
        font-size: calc(36px + 12 * ((100vw - 320px) / 680));
        font-weight: 500;
    }

    .top_div p:nth-of-type(2) img {
        width: 30%;
        height: 30%;
        margin-right: 5px;
    }

    .container {
        width: 80%;
    }

    .tab_list li a {
        font-size: calc(20px + 3 * ((100vw - 320px) / 680));
    }

    .pin_div, .phoneInput {
        max-width: 448px;
    }

        .pin_div .row button {
            font-size: calc(40px + 3 * ((100vw - 320px) / 680));
        }

        .pin_div .row .img_btn {
            font-size: calc(18px + 3 * ((100vw - 320px) / 680));
        }

    .custom_input {
        font-size: calc(22px + 3 * ((100vw - 320px) / 680));
        padding: 4%;
        border-radius: 20px;
    }

    .input_div.phoneInput {
        margin: 5vh auto 2vh;
    }

    .call_screen p {
        font-size: calc(20px + 3 * ((100vw - 320px) / 680));
    }

    .call_screen h2 {
        font-size: 40px;
    }

    .call-animation {
        width: 300px;
        height: 300px;
    }

    .call_screen .call-animation img {
        width: 25%;
        height: 25%;
    }

    .call_screen a {
        width: 70px;
        height: 70px;
    }

        .call_screen a img {
            width: 30%;
            height: 30%;
        }
}

@media(max-height: 768px) {
    .pb_left ul li a {
        padding: 6% 10px;
    }

    .keyboard_div ul li a {
        max-height: 33px;
    }

    .contacts {
        height: 60vh;
    }

    .action_btn {
        height: 18vh;
        padding: 3vh 1vw 2vh;
    }

    .action_div .btn_div {
        margin-top: 2vh;
    }

    .top_right, .top_left {
        padding: 15px;
    }

    .top_div {
        height: 75px;
    }

    .mid_div {
        height: calc(100vh - 75px);
    }

    .search_input {
        font-size: calc(12px + 3 * ((100vw - 320px) / 680));
        max-height: 6vh;
    }

    .input_div {
        margin: 2vh auto 3vh auto;
    }

        .input_div.phoneInput {
            margin: 7vh auto 2%;
        }

    .bottom_logo {
        max-width: 52px;
    }

    .pin_div .row button img {
        width: 25%;
    }

    .top_div p {
        font-size: calc(9px + 4 * ((100vw - 320px) / 680));
    }

        .top_div p span {
            font-size: calc(15px + 3 * ((100vw - 320px) / 680));
        }

        .top_div p:nth-of-type(2) span {
            font-size: calc(16px + 6 * ((100vw - 320px) / 680));
        }

    .input_div p {
        font-size: calc(16px + 1 * ((100vw - 320px) / 680));
    }

    .tab_list li a {
        font-size: calc(13px + 2 * ((100vw - 320px) / 680));
    }

    .pb_left ul li:last-child img {
        width: 12px;
        height: 13px;
    }
}
