.plan-features-min {
		font-size: 1.2em !important;
		color: #ed5348;
		font-weight: bold;
		
}

.feature-box-icon-fa {
		display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 0 auto;
    /*background: rgba(0, 0, 0, 0.06);*/
    border-radius: 100%;
    color: #FFF;
    font-size: 28px;
    position: relative;
    /*top: 7px;*/
    text-align: center;
    padding: 0.8em;
    width: 0.7em;
    height: 0.7em;
}

.col-phone-try {
		width: 50%;
}

.col-terminal {
		width: 50%;
}

@media (max-width: 550px) {
	.col-price {
		flex: 0 0 auto;
		width: 100%;
	}
}

@media (min-width: 551px) {
	.col-price {
		flex: 0 0 auto;
		width: 33.3333333%;
	}
}

.blinking-cursor {
  margin-left: 5px;
  /*background-color: #fff;*/
  animation: blink 1s infinite;
	font-family: 'Courier New';
}
@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  50.1%, 100% {
    opacity: 0;
  }
}
.terminal_area {
    width: 100%;
    background-color: black;
    color: white;
    padding: 10px;
    font-family: Courier New;
    overflow-y: scroll;
    height: 180px;
    scrollbar-width: thin;
    scrollbar-color: #a5a5ac #000;
}