/* Google Font CDN Link */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.container {
  width: 100%;
  background: #fff;
  border-radius: 6px;
  padding: 15px 20px 40px 5px;
  margin-top:10px;
  
}
.container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.container .content .left-side {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}
.content .left-side::before {
  content: "";
  position: absolute;
  height: 70%;
  width: 1px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #ccc;
}
.content .left-side .details {
  margin: 14px;
  text-align: center;
}
.content .left-side .details i {
  font-size: 30px;
  color: darkgreen;
  margin-bottom: 10px;
}
.content .left-side .details .topic {
  font-size: 18px;
  font-weight: 500;
}
.content .left-side .details .text-one,
.content .left-side .details .text-two {
  font-size: 14px;
  color: #454545;
}

.container .content .right-side {
  width: 75%;
  margin-left: 75px;
}
.content .right-side .topic-text {
  font-size: 23px;
  font-weight: 600;
  color: #208c05;
  margin-bottom:7px;
}
.del{text-transform: capitalize; color:#565656;}
.right-side .input-box {
  height: 55px;
  width: 100%;
  
}
.right-side .input-box input:first-child{margin-top:15px;}
.right-side .input-box input,
.right-side .input-box textarea {
  height: 45px;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #fff;
  border-radius: 6px;
  padding: 0 10px;
  resize: none;
  border:2px dotted #ccc;
}
.right-side .message-box {
  min-height: 195px;
}
.right-side .input-box textarea {
  padding-top: 6px;
  height:180px;
  margin-top:15px;
}
.right-side .button {
  display: inline-block;
  margin-top: 12px;
  float:right;
}
.right-side .button input[type="submit"] {
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 6px 16px;
  border-radius: 6px;
  background: #208c05;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button input[type="submit"]:hover {
  background: #0ea71e;
}
.call-chat{
width:180px;
height:40px !important;
}
.success, .unsuccess{
padding:10px;
height:auto;
width:320px;
text-align:center;
background:darkgreen;
position:absolute;
top:50%;
left:50%;
transform: translate(-50%, -50%);
color:#fff;	
z-index:9999999999999;
border-radius:6px;
-webkit-border-radius:6px;
box-shadow:0px 3px 8px rgba(0,0,0,0.5);
-webkit-box-shadow:0px 3px 8px rgba(0,0,0,0.5);
}

.unsuccess{
background:darkred;
}
.fa-check{
padding:10px;
border-radius:50%;
background:#fff;
color:darkgreen;	
}
.fa-close{
padding:8px 10px;
border-radius:50%;
background:#fff;
color:darkred;
font-size:18px;
cursor:pointer;	
}
.fa-exclamation-triangle{font-size:22px;}
@media (max-width: 950px) {
 
  .container .content .right-side {
    width: 75%;
    margin-left: 55px;
  }
}
@media (max-width: 820px) {
  
  .container .content {
    flex-direction: column-reverse;
  }
  .container .content .left-side {
    width: 320px;
    flex-direction: row;
    margin-top: 30px;
	
    justify-content: center;
    flex-wrap: wrap;
  }
  .container .content .left-side::before {
    display: none;
  }
  .container .content .right-side {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 533px){
.container {
  padding: 10px 5px 5px 5px;
 
}	
}
