body {
    margin: 0px;
    background-color: black;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
    color: white;
}

.device_container {
    position: relative;
    width: 90%;
    /* height: 25vh; */
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(34, 34, 34);
    color: white;
    border-radius: 5vw;
    margin-bottom: 5vw;
}

.device_name {
    position: relative;
    float: left;
    top: 3vw;
    left: 5vw;
    font-size: 5vw;
}

.device_settings {
    position: relative;
    float: right;
    top: -4vw;
    right: 8vw;
    font-size: 11vw;
    color: #e74309;
}

.device_inner_container {
    position: relative;
    display: flex;
    flex-direction: row;
    column-gap: 5vw;
    width: 100%;
    height: 30vw;
    background-color: grey;
    border-bottom-left-radius: 5vw;
    border-bottom-right-radius: 5vw;
    top: 25%;
    align-items: center;
}

.add_device {
    position: relative;
    float: right;
    /* margin-right: 18%; */
    border-radius: 15vw;
    background-color: #e74309;
    color: white;
    font-size: 11vw;
    width: 21%;
    /* top: 20%; */
    margin: 2vw;
    text-align: center;
}


.back {
    position: relative;
    float: right;
    /* right: 3%; */
    border-radius: 15vw;
    background-color: #e74309;
    color: white;
    font-size: 11vw;
    width: 20%;
    margin: 2vw;
    /* top: 21%; */
    text-align: center;
}

.header_container {
    position: sticky;
    display: flex;
    flex-direction: row;
    top: 0px;
    width: 100%;
    z-index: 9999;
    height: 23vw;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(26, 26, 26);
    margin-bottom: 5vw;
    align-items: center;
    justify-content: space-between;
}

.TRIGGER {
    border-radius: 5vw;
    background-color: #e74309;
    font-size: 4vw;
    text-align: center;
    height: 75%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 0vw 2vw 0vw 0vw;
}


.OFF {
    position: relative;
    float: right;
    margin-right: -6%;
    height: 38%;
    border-radius: 5vw;
    background-color: darkgray;
    color: white;
    font-size: 4vw;
    width: 38%;
    padding-top: 10%;
    top: 15%;
    text-align: center;
}


.ON {
    position: relative;
    float: right;
    margin-right: -6%;
    height: 38%;
    border-radius: 5vw;
    background-color: #e74309;
    color: white;
    font-size: 4vw;
    width: 38%;
    padding-top: 10%;
    top: 15%;
    text-align: center;
}

.number {
    position: relative;
    background-color: grey;
    text-align: center;
    font-size: 5vw;
    color: black;
    margin-bottom: 2vw;
}

.wifi_signal {
    position: relative;
    width: 13vw;
    float: left;
    margin-top: 11%;
    margin-left: 3%;
    text-align: right;
    padding-right: 10%;
    height: 31%;
    /* background-color: grey; */
}

.sim_signal {
    position: relative;
    width: 23vw;
    float: left;
    margin-top: 11%;
    margin-left: 0%;
    height: 31%;
    /* background-color: grey; */
}

.responce {
    position: relative;
    width: 90%;
    height: fit-content;
    margin-left: 5%;
    margin-top: 0px;
    padding-left: 5%;
    margin-bottom: 28px;
    padding-top: 17px;
    border-radius: 15vw;
}

.add_device_input {
    position: relative;
    margin-left: 5%;
    width: 90%;
    /* margin-top: 16px; */
    margin-bottom: 40px;
    padding-left: 30px;
    height: 70px;
    border-radius: 21px;
    border: 0px;
}

.add_device_nutton {
    position: relative;
    margin-left: 25%;
    width: 50%;
    border-radius: 15vw;
    background-color: #e74309;
    height: 55px;
    border: 0px;
}

.left {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 0vw 1vw 0vw 1vw;

}

.right {
    display: flex;
    flex-direction: column;
    width: 38vw;
    height: 100%;
    justify-content: center;
}

.row {
    display: flex;
    justify-content: space-evenly;
    align-content: center;
    align-items: center;
}

.icon {
    height: 10vw;
    width: 10vw;
}

.column {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-content: center;
    align-items: center;
}

.user_card {
    width: 80%;
    height: fit-content;
    background-color: whitesmoke;
    border-radius: 5vw;
    box-shadow: 0px 0px 5px -1px #000000c7;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 5vw;
    margin: 10px;
    padding-bottom: 5vw;
    padding-top: 5vw;
}

.settings_row {
    display: flex;
    flex-direction: column;
    column-gap: 10px;
    width: 85%;
    height: fit-content;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 2vw;
    row-gap: 1.5vw;
    font-size: 7vw;
}

.policy_popup {
    display: none;
    position: absolute;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    z-index: 1000;
    overflow-y: scroll;
    background-color: #0000005e;
    box-shadow: 0px 0px 5px -1px #000000c7;
    column-gap: 1vw;
    animation: slideInOut 0.5s ease-in-out;
}

@keyframes slideInOut {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    50% {
        opacity: 0.5;
        visibility: visible;
        transform: translateY(0);
    }

    100% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@keyframes hide_animation {
    0% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    50% {
        opacity: 0.5;
        visibility: visible;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        visibility: hidden;
        display: none;
    }
}

.policy_iframe {
    border-radius: 5vw;
    border-color: transparent;
    box-shadow: 0px 0px 15px 2px #000000c7;
    height: 70%;
    width: 85%;
}

.close_btn_iframe {
    border-radius: 2vw;
    border-color: transparent;
    background-color: whitesmoke;
    box-shadow: 0px 0px 5px -1px #000000c7;
    cursor: pointer;
    padding: 4px;
    transition: 0.3s ease-in-out;
    height: 10vw;
    width: 10vw;
    margin-left: -12vw;
    margin-top: -130vw;
}

.close_btn {
    border-radius: 4vw;
    border-color: transparent;
    background-color: whitesmoke;
    box-shadow: 0px 0px 5px -1px #000000c7;
    cursor: pointer;
    padding: 4px;
    transition: 0.3s ease-in-out;
    height: 10vw;
    width: 10vw;
    /* margin-left: 0vw; */
    /* margin-top: -33vw; */
    position: absolute;
    right: 0;
    top: 40vw;
}

.user_settings_icon {
    border-radius: 20vw;
    background-color: #e74309;
    border-color: #e74309;
    cursor: pointer;
    border: solid 8px #e74309;
    position: absolute;
    bottom: 5vw;
    height: 20vw;
    width: 20vw;
    left: 5vw;
}

.user_settings_popup {
    height: 100vh;
    width: 100vw;
    background-color: transparent;
    border-radius: 10px;
    box-shadow: 0px 0px 5px -1px #000000c7;
    position: absolute;
    top: 5vw;
    left: 0vw;
    justify-content: center;
    align-items: center;
    padding-top: 23vw;
}

.user_settings_group {
    width: 100%;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.name_input {
    border-radius: 10px;
    background-color: rgb(231, 231, 231);
    border-color: transparent;
    box-shadow: 0px 0px 5px -1px #000000c7;
    width: 90%;
    padding-left: 5px;
    font-size: 5vw;
    text-align: center;
}

.hr_policy {
    width: 60%;
    background-color: #ed3e07;
    height: 4px;
    border-radius: 50px;
    border-color: transparent;
    margin: 2vw 0vw;
}

.btn_1 {
    border-radius: 10px;
    border-color: transparent;
    box-shadow: 0px 0px 5px -1px #000000c7;
    cursor: pointer;
    padding: 4px;
    transition: 0.3s ease-in-out;
    font-size: 5vw;
}

.btn_1:hover {
    color: white;
    background-color: rgb(54, 54, 54);
}

.btn_2 {
    border-radius: 10px;
    border-color: transparent;
    box-shadow: 0px 0px 5px -1px #000000c7;
    cursor: pointer;
    padding: 4px;
    transition: 0.3s ease-in-out;
    color: #f85700;
    font-size: 5vw;
}

.btn_2:hover {
    color: white;
    background-color: #ed3e07;
    box-shadow: 0px 0px 5px -1px #ffc400c7;
}

.input_1 {
    border-radius: 10px;
    border-color: transparent;
    box-shadow: 0px 0px 5px -1px #000000c7;
    padding: 4px;
    font-size: 5vw;
}

.show_hide_btn {
    background-image: url(../assets/show.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    border: none;
    width: 10vw;
    height: 10vw;
    cursor: pointer;
    border-radius: 20px;
    margin-left: 10px;
    -webkit-box-shadow: 0px 0px 17px 5px #9c9c9cb5;
    -moz-box-shadow: 0px 0px 17px 5px #9c9c9cb5;
    box-shadow: 0px 0px 17px 5px #9c9c9cb5;
}

.password_div {
    display: flex;
    align-items: center;
    column-gap: 1vw;
}