@font-face {
    font-family:Manrope;
    font-weight:normal;
    src: url("https://d.smartico.one/fonts/manrope/Manrope-Regular.ttf");
}
@font-face {
    font-family:Manrope;
    font-weight:bold;
    src: url("https://d.smartico.one/fonts/manrope/Manrope-Bold.ttf");
}
@font-face {
    font-family:Manrope;
    font-weight:200;
    src: url("https://d.smartico.one/fonts/manrope/Manrope-Light.ttf");
}

.argument-container {
    background: #FFFFFF;
    box-shadow: 0px 4.86687px 17.0341px rgba(0, 0, 0, 0.14);
    border-radius: 14.6006px;
    padding:14px;
    position:absolute;
    width:316px;
    box-sizing:border-box;
    height:fit-content;
    opacity:0;
    transition: opacity 0.3s; 
}
.argument-headline {
    width: 100%;
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-size: 19.4675px;
    line-height: 120%;
    color: #595959;
    text-align:left;
    position:relative;
    margin-bottom:10px;
}
.argument-description {
    width: 100%;
    height:auto;
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    position:relative;
    color: #595959;
}
.button-container.qrcode-button-absence .button-label-container {
    background-color:transparent !important;
    padding: 8px 20px;
}
.button-container.qrcode-button-absence .button-label-container .button-label {
    color: #595959;
    font-size:12px;
}

.trm-device-container[data-no-arguments='1'] .argument-container,
.trm-device-container[data-no-arguments='1'] .button-container,
.trm-device-container[data-no-arguments='1'] #qrcode{
    display:none !important;
}
.circle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: translate(-50%,-50%);
    background: black;
    box-shadow: 0px 4.86687px 17.0341px rgba(0, 0, 0, 0.14);
    -webkit-animation-duration: 2.0s;
    animation-duration: 2.0s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: pin-pulse;
    animation-name:pin-pulse;
}
.line {
    box-sizing: border-box;
    position: absolute;
    border: 0.5px solid #000;
    height: 20px;
    width: 20px;
    box-shadow: 0px 4.86687px 17.0341px rgba(0, 0, 0, 0.14);
}

@keyframes pin-pulse{
    0% {
        width:6px;
        height:6px;
    }
    50% {
        width:10px;
        height:10px;
    }
    100% {
        width:6px;
        height:6px;
    }}

