
:root{
    --color-1:#00ccff;
    --color-2:#fff;
    --color-main:#141313;
    --color-secondary:#343c3c;
    --color-supplementary-1:#f4aeba;
    --color-supplementary-2:#ffffff;  
}
.spaceBetween{
    justify-content: space-between;
}

.box{
    position: absolute;
    display:inline-block;
    height: 100%;
    width: 50%;    
}
.container.watchContainer{
    margin: 0;
    
    padding: 0;
}
.box.box-1{
    background-color:var(--color-1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.box.box-2 {
    background-color:var(--color-2);
    display: flex;
    margin-left: 50%;
}
.headingName{
    font-size: 4em;
    font-family:'Times New Roman', Times, serif;
}
.vw{
    color:var(--color-supplementary-2);

}
.timeLockScreen {
    display: block;
    font-size: 46px;
    color: var(--color-supplementary-2);
    text-align: center;
    margin: 20px 0;
    line-height: 46px;
}
.timeLockScreen.meridiem{
    font-size: 10px;
    color: var(--color-supplementary-2);
    padding-left:0px;
}
.textNotification{
    color: var(--color-supplementary-1);
    font-size: 16px;
    text-align: center;
    display: block;
    cursor: pointer
}
.header{
    align-content: space-between;
    position: relative;
    
}
.backButton{
    color:blueviolet;
    align-content:flex-start;
    padding-top:-25px;
    font: 15px;
}
.timer{
    color: var(--color-supplementary-2);
    font-size: 15px;
    align-content:flex-end;

}
.smartWatchContainer{
    display: flex;
    align-items: center;
}
.mainScreen{
    position: relative;
    margin-top: -12px;
    border:13px solid var(--color-secondary);
    width: 250px;
    height: 230px;
    background:var(--color-main);
    border-radius: 31px;
}

.mainScreen::after {
    position: absolute;
    content: " ";
    height: 61%;
    width: 75%;
    margin-left: 26px;
    background-color: var(--color-secondary);
    border-radius: 12px;
    bottom: -134px;
}


.mainScreen::before {
    position: absolute;
    content: " ";
    height: 59%;
    width: 75%;
    margin-left: 26px;
    background-color: var(--color-secondary);
    border-radius: 12px;
    top:-129px;
} 

.backButton{ 
    color: aqua;
    font-size: 15px;
    padding-left: 15px;
    margin-left: 4%;
    cursor: pointer;
}
.time{
    color: var(--color-supplementary-2);
    font-size: 15px;
    padding-right:20px;
    margin-right: 10px;
}
.textTitle{
    font-size: 15px;
    color: var(--color-supplementary-1);
    cursor: pointer;
    padding-left: 4px;
}
.textDescription{
    font-size: 12px;
    color: var(--color-supplementary-1);
    margin-left: 7px;
    max-width: 100%;
    min-height: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 6px;
    cursor: pointer;
}
.removeEllipsis{
    white-space: unset;
    overflow: unset;
    text-overflow: unset;
}
.textBorder {
    padding-top: 5px;
    padding-bottom: 5px;
    margin: 5px;
    padding: 2px;
}
.msgBox{
    height: 70%;
    overflow-x: hidden;
    overflow-y: scroll;
}
::-webkit-scrollbar {
    width: 7px;
    color: WHITE;
  }
  

.msgScreen{
    
    position: relative;
    margin-top: -12px;
    border:13px solid var(--color-secondary);
    width: 145px;
    height: 166px;
    background:var(--color-main);
    border-radius: 31px;
}

.screen1 {
    display: block;
    height: 100%;
}
.screen2, .screen3, .screen4{
    display: none;
    position: relative;
    height: 100%;
}
.msgCont{
    margin-bottom: 10px;
    margin-left: 3px;
    border-radius: 8px;
    background-color:#38403b94;
}

.music, .envelope, .clock{
    color: #FFF;
    font-size: 16px;
    margin: 0 15px;
    cursor: pointer;
}

.icon{
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 25px;
}
.spotify{
    position: absolute;
    width: 220px;
    margin-top: 15px;
    overflow-x: hidden;
    overflow-y: hidden;
    border-radius: 15px;
}
.spotify iframe{
    width: 100%;
}