TikTok downloader – without watermark
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap);
body{
background-color: #1f2b39;
color: #e8f2fc;
scroll-behavior: smooth;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: “Inter”, sans-serif;
}
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
}
.nav {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 60px;
}
.nav_logo {
padding: 10px 0;
}
.menu_items {
display: flex;
list-style: none;
gap: 20px;
}
.menu_items a:hover{
color: #008080;
}
a {
color: #fff;
text-decoration: none;
}
#menu_toggle {
display: none;
}
/* Reponsive */
@media (max-width:860px) {
#menu_toggle {
display: block;
}
.nav {
padding: 0 20px;
}
.menu_items {
position: fixed;
top: 0;
width: 100%;
background-color: #183052;
color: #fff;
height: 100%;
left: -100%;
padding: 50px 30px 30px;
flex-direction: column;
transition: all 0.5s ease;
text-align: center;
}
.showMenu .menu_items {
left: 0;
}
a {
color: #fff;
}
#menu_toggle {
width: 20px;
cursor: pointer;
}
.menu_items #menu_toggle {
position: absolute;
top: 20px;
right: 20px;
}
}
.box-title {
text-align: center;
margin-top: 20px;
}
.box {
background-color: #0d1625;
color: #fff;
margin-top: 48px;
padding: 20px 0 20px 0;
}
span {
color: #3cd871;
}
input {
margin: 20px 0 0 20px;
padding: 10px;
border: 2px solid #3cd871;
width: 90%;
border-radius: 3px;
background-color: #e8f2fc;
vertical-align: center;
}
input::placeholder{
color: green;
}
#submit {
background-color: #3cd871;
margin: 10px 0 0 20px;
padding: 10px 10px 9px 130px;
border: none;
width: 90%;
color: #fff;
font-weight: bold;
font-size: 18px;
border-radius: 3px;
cursor: pointer;
display: flex;
align-items: center;
}
button:hover {
opacity: 0.8;
}
.site {
padding: 15px;
}
.site li {
margin-top: 8px;
}
.features h3 {
text-align: left;
padding-top: 20px;
}
.how-use {
text-align: center;
margin-top: 30px;
}
.intro {
text-align: center;
margin-top: 30px;
margin-bottom: 20px;
}
.how ul,
.features ul {
padding-left: 30px;
}
.arrow-box p {
color: #df61e8;
padding-right: 50px;
}
.footer p {
text-align: center;
margin-top: 20px;
padding-bottom: 20px;
font-weight: 900;
}
.how ol {
list-style: none;
counter-reset: my-counter;
padding: 10px 0 0 10px;
}
.how li {
position: relative;
counter-increment: my-counter;
padding-left: 30px;
margin-bottom: 10px;
}
.how li::before {
content: counter(my-counter);
position: absolute;
left: 0;
background-color: transparent;
color: #327eff;
padding: 3px 8px;
border-radius: 50%;
border: 1px solid #327eff;
}
@media (min-width:768px) {}
@media (min-width:799px) {
.site-name {
padding-left: 25px;
}
.menu-content li {
margin: 10px 0;
padding-right: 380px;
padding-top: 20px;
}
input {
width: 72%;
margin-left: 15%;
padding: 15px 0 15px 20px;
}
#submit {
width: 72%;
margin-left: 15%;
padding: 10px 10px 9px 300px;
}
.site p {
font-size: 0.7rem;
padding-left: 25px;
padding-right: 15px;
}
.how ol {
font-size: 0.7rem;
padding-left: 38px;
}
.features ul {
font-size: 0.7rem;
padding-left: 48px;
}
.features h3 {
text-align: left;
padding-left: 30px;
}
h3 {
font-size: .9rem;
}
}
@media (min-width:1200px) {
input {
width: 70%;
}
h3 {
font-size: 1.5rem;
}
}
.container {
max-width: 1300px;
width: 100%;
margin: 0 auto;
background-color: #363f50;
}
* {
box-sizing: border-box;
}
h1 {
margin: 50px 0 30px;
text-align: center;
}
.faqs-container {
margin: 0 auto;
max-width: 1200px;
}
.faq {
background-color: #19262c;
border-radius: 10px;
padding: 30px;
position: relative;
overflow: hidden;
margin: 20px 0;
transition: 0.3s ease;
}
.faq.active {
background-color: #19262c;
box-shadow: 0 3px 6px rgba(0,0,0,0.1), 0 3px 6px rgba(0,0,0,0.1);
}
.faq.active::after, .faq.active::before {
color: #2ecc71;
content: ‘\f075’;
font-family: ‘Font Awesome 5 Free’;
font-size: 7rem;
position: absolute;
opacity: 0.2;
top: 20px;
left: 20px;
z-index: 0;
}
.faq.active::before {
color: #3498db;
top: -10px;
left: -30px;
transform: rotateY(180deg);
}
.faq-title {
margin: 0 35px 0 0;
}
.faq-text {
display: none;
margin: 30px 0 0;
}
.faq.active .faq-text {
display: block;
}
.faq-toggle {
background-color: transparent;
border: none;
border-radius: 50%;
color: #fff;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
padding: 0;
position: absolute;
top: 30px;
right: 30px;
height: 30px;
width: 30px;
}
.faq-toggle:focus {
outline: none;
}
.faq.active .faq-toggle {
background-color: #9FA4A8;
}
.faq-toggle .fa-times {
display: none;
}
.faq.active .faq-toggle .fa-times {
display: block;
}
.faq-toggle .fa-chevron-down {
color: #83888E;
}
.faq.active .faq-toggle .fa-chevron-down {
display: none;
}
.card h3{
}
.card p{
padding: 10px 0 10px 0;
font-weight: 400;
line-height: 1.5;
}
.card{
margin: 10px 5px 10px 5px;
border-radius: 5px;
padding-left: 10px;
border: 1px solid #363f50;
transition: 0.15s;
}
.card:hover{
background-color: #363f50;
}
img{
width: 15%;
display: block;
padding: 10px;
}
@media (min-width:799px) {
.card{
width:48%;
display: inline-block;
vertical-align: middle;
}
}
SaveTik
TikTok downloader
Download and Save TikTok Videos Without Watermark
Download
TikTok Video Downloader
Savetik is one of the most popular TikTok video downloader tools that can help you download TikTok videos
without watermark in HD quality. With Savetik, you can easily download videos from TikTok, and save the video
into your device to watch them later.
Our TikTok Downloader works on any device (including, but not limited to Android, iOS, Windows, Linux, and
MacOS). You do not need to install any software on your mobile phone or PC, all that you need is only a video
link.
Key Features:
- Download videos without watermark.
- Download videos in HD quality.
- Works on any device (Android, iOS, Windows, Linux, and macOS).
- Easy, fast, and free.
How to Use TikTok Video Downloader ?
- Open Tik Tok app on your phone/or Web on your browser.
- Choose whatever video you want to download.
- Click to the
Share button at the right bottom. - Click copy link button.
- Go back to Savetik.com and
paste your video link to the input field. - Click
Download button. - Wait for our server to do its job and then, save the video to your device.